12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import tornado
- import json
- class AiTargetCombine(tornado.web.RequestHandler):
- def post(self):
- res = {'code': 0,
- 'message': "SUCCESS"}
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- # logger.info("call back of add group, the raw data from request is %s" % data)
- try:
- pass
- except Exception:
- pass
- # 返回接口结果
- self.write(json.dumps(res))
- self.flush()
- class GetTargetAndAssemblyParameters(object):
- def __init__(self):
- pass
- def add_campaign(self):
- """
- 新增广告计划,如果存在则跳过
- """
- pass
- def get_signature_and_target(self):
- """
- 从 ctop_ai_kuaishou_signature_recommended_target_combine 表中读取素材和对应的定向
- """
- pass
- def get_advertiser_strategy_info(self):
- """
- 从 ctop_ai_kuaishou_advertiser_strategy 读取账户的基本配置信息
- """
- pass
- def write_intelligence_strategy_table(self):
- """
- 拼接好的组创意的参数写入到 ctop_ai_kuaishou_intelligence_strategy 中的 ai_strategy_request_content
- """
- pass
- def get_target_intersection(self):
- """
- 两个表中读取的定向取交集,还是子集?
- """
- pass
- def assembly_group_and_creative_params(self):
- """
- 拼接参数,请求创建接口
- """
- pass
|