|
@@ -8,13 +8,13 @@ from common.common import Common
|
|
|
from douyin.douyin_author.douyin_author_scheduling import DouyinauthorScheduling
|
|
|
|
|
|
|
|
|
-def xigua_search_main(log_type, crawler, env):
|
|
|
- Common.logger(log_type, crawler).info("开始抓取抖音账号\n")
|
|
|
- Common.logging(log_type, crawler, env, "开始抓取抖音账号\n")
|
|
|
+def douyin_author_main(log_type, crawler, env):
|
|
|
+ Common.logger(log_type, crawler).info("开始抓取:抖音账号\n")
|
|
|
+ Common.logging(log_type, crawler, env, "开始抓取:抖音账号\n")
|
|
|
DouyinauthorScheduling.get_author_videos(log_type=log_type,
|
|
|
crawler=crawler,
|
|
|
rule_dict={"like_cnt":{"min":30000,"max":0},"duration":{"min":50,"max":1800},"period":{"min":15,"max":15}},
|
|
|
- user_list=[{"uid": 6267140, "source": "douyin", "link": "MS4wLjABAAAAqCDcUgcHVoOMoi_0u-1b9M303FJR9qXKdtitf80nt4g", "nick_name": "一乐店长", "avatar_url": "http://rescdn.yishihui.com/user/default/avatar/live/1616555584754_u=3828798179,534417403&fm=26&gp=0.jpg", "mode": "author"}],
|
|
|
+ user_list=[{"uid": 6267140, "source": "douyin", "link": "MS4wLjABAAAApCwcn6-2-_to5Qld7jAT78-Ano5_9JzXbT5ylfNJntY", "nick_name": "大白爆笑社", "avatar_url": "http://rescdn.yishihui.com/user/default/avatar/live/1616555584754_u=3828798179,534417403&fm=26&gp=0.jpg", "mode": "author"}],
|
|
|
env=env)
|
|
|
Common.del_logs(log_type, crawler)
|
|
|
Common.logger(log_type, crawler).info("抓取一轮结束\n")
|
|
@@ -22,4 +22,4 @@ def xigua_search_main(log_type, crawler, env):
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
- xigua_search_main("author", "douyin", "dev")
|
|
|
+ douyin_author_main("author", "douyin", "dev")
|