From 4ed5d4d73ec19e67c1fa0359e137738a68365267 Mon Sep 17 00:00:00 2001 From: Klu5ure Date: Tue, 9 Apr 2024 23:00:13 +0800 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20=E6=81=A2=E5=A4=8D=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E4=B8=AD=E8=AF=AF=E5=88=A0=E7=9A=84=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/常见问题.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/常见问题.md b/docs/常见问题.md index 5182041..5882e14 100644 --- a/docs/常见问题.md +++ b/docs/常见问题.md @@ -1,10 +1,10 @@ ## 常见程序运行出错问题 Q: 爬取抖音报错: `execjs._exceptions.ProgramError: SyntaxError: 缺少 ';'`
-A: 该错误为缺少 nodejs 环境这个错误安装 nodejs 环境即可,版本为:`v16.8.0`
+A: 该错误为缺少 nodejs 环境,这个错误可以通过安装 nodejs 环境来解决,版本为:`v16.8.0`
Q: 可以指定关键词爬取吗?
-A: 在config/base_config.py 中 KEYWORDS 参数用于控制需爬取的关键词
+A: 在config/base_config.py 中 KEYWORDS 参数用于控制需要爬取的关键词
Q: 可以指定帖子爬取吗?
A:在config/base_config.py 中 XHS_SPECIFIED_ID_LIST 参数用于控制需要指定爬取的帖子ID列表
From 488acd04df64aaddce45fea7e6dfa0e62930291a Mon Sep 17 00:00:00 2001 From: Relakkes Date: Tue, 9 Apr 2024 23:10:51 +0800 Subject: [PATCH 2/2] fix: #222 --- store/douyin/douyin_store_impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/douyin/douyin_store_impl.py b/store/douyin/douyin_store_impl.py index 1977b44..da26c0a 100644 --- a/store/douyin/douyin_store_impl.py +++ b/store/douyin/douyin_store_impl.py @@ -89,7 +89,7 @@ class DouyinDbStoreImplement(AbstractStore): aweme_detail: Dict = await query_content_by_content_id(content_id=aweme_id) if not aweme_detail: content_item["add_ts"] = utils.get_current_timestamp() - if aweme_detail.get("title"): + if content_item.get("title"): await add_new_content(content_item) else: await update_content_by_content_id(aweme_id, content_item=content_item)