|
@@ -124,7 +124,7 @@ class WeixinVideoCrawler(object):
|
|
|
publish_type = info.get("AppMsg", {}).get("BaseInfo", {}).get("Type", None)
|
|
|
detail_article_list = info.get("AppMsg", {}).get("DetailInfo", [])
|
|
|
if detail_article_list:
|
|
|
- for article in tqdm(detail_article_list, desc="crawler_in_msg_list"):
|
|
|
+ for article in tqdm(detail_article_list, desc="{}: crawler_in_msg_list".format(account_name)):
|
|
|
article_url = article.get("ContentUrl", None)
|
|
|
url_unique = functions.generateGzhId(article_url)
|
|
|
# 判断该视频链接是否下载,若已经下载则直接跳过
|