|
@@ -128,14 +128,14 @@ class RecommendPlaySendtime:
|
|
|
Feishu.dimension_range("recommend", "kanyikan", "SdCHOM", "ROWS", i + 1, i + 1)
|
|
|
return
|
|
|
# 不满足规则:发布时间 > 7 天 and 播放量 < 150000
|
|
|
- elif int(time.time()) - int(v_send_date) > 604800 and int(v_play_cnt_sendtime) < 150000:
|
|
|
+ elif int(time.time()) - int(v_send_date) > 604800 and int(v_play_cnt_sendtime) < 80000:
|
|
|
# 从云文档删除该视频信息:https://w42nne6hzg.feishu.cn/sheets/shtcngRPoDYAi24x52j2nDuHMih?sheet=SdCHOM
|
|
|
Common.logger("recommend").info("播放量:{} < 150000", int(v_play_cnt_sendtime))
|
|
|
# 删除行或列,可选 ROWS、COLUMNS
|
|
|
Feishu.dimension_range("recommend", "kanyikan", "SdCHOM", "ROWS", i + 1, i + 1)
|
|
|
return
|
|
|
# 不满足规则:发布时间 <= 7 天 and 播放量 < 20000
|
|
|
- elif int(time.time()) - int(v_send_date) <= 604800 and int(v_play_cnt_sendtime) < 20000:
|
|
|
+ elif int(time.time()) - int(v_send_date) <= 604800 and int(v_play_cnt_sendtime) < 10000:
|
|
|
# 从云文档删除该视频信息:https://w42nne6hzg.feishu.cn/sheets/shtcngRPoDYAi24x52j2nDuHMih?sheet=SdCHOM
|
|
|
Common.logger("recommend").info("视频7天播放量:{} < 20000", int(v_play_cnt_sendtime))
|
|
|
# 删除行或列,可选 ROWS、COLUMNS
|