docs: update README.md
This commit is contained in:
Relakkes 2024-04-08 00:18:25 +08:00
parent b54f168c6b
commit 8f02da73ad
2 changed files with 12 additions and 9 deletions

View File

@ -33,15 +33,6 @@ MediaCrawler视频教程课程已录制完结包含入门教程使用、源
| B 站 | ✅ | ✅ | ✕ | ✅ | ✅ | ✅ | ✅ | ✅ | ✕ |
| 微博 | ✅ | ✅ | ✕ | ✅ | ✅ | ✅ | ✅ | ✅ | ✕ |
## MediaCrawler爬虫项目交流群
> 7天有效期自动更新
<div style="max-width: 200px">
![img.png](static/images/3群二维码.jpg)
</div>
## 使用方法
@ -95,6 +86,14 @@ MediaCrawler视频教程课程已录制完结包含入门教程使用、源
- 支持保存到csv中data/目录下)
- 支持保存到json中data/目录下)
## MediaCrawler爬虫项目交流群
> 7天有效期自动更新, 如果人满了可以加作者wx拉进群: yzglan备注来自github.
<div style="max-width: 200px">
<p><img alt="打赏-微信" src="static/images/3群二维码.jpg" style="width: 200px;height: 100%" ></p>
</div>
## 打赏
免费开源不易,如果项目帮到你了,可以给我打赏哦,您的支持就是我最大的动力!
<div style="display: flex;justify-content: space-between;width: 100%">

View File

@ -335,6 +335,10 @@ class XiaoHongShuClient(AbstactApiClient):
notes_cursor = ""
while notes_has_more:
notes_res = await self.get_notes_by_creator(user_id, notes_cursor)
if not notes_res:
utils.logger.error(f"[XiaoHongShuClient.get_notes_by_creator] The current creator may have been banned by xhs, so they cannot access the data.")
break
notes_has_more = notes_res.get("has_more", False)
notes_cursor = notes_res.get("cursor", "")
if "notes" not in notes_res: