From 2cf143cc7cefc6ce2b6431c9e1ef02d2e6f733f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E9=98=BF=E6=B1=9F=28Relakkes?= =?UTF-8?q?=29?= Date: Fri, 26 Sep 2025 18:10:30 +0800 Subject: [PATCH] fix: #730 --- README.md | 4 ++-- media_platform/kuaishou/core.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 04dc6d8..8670a54 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# 🔥 MediaCrawler - 自媒体平台爬虫 🕷️ +
Special thanks to:
@@ -12,8 +14,6 @@

-# 🔥 MediaCrawler - 自媒体平台爬虫 🕷️ -
diff --git a/media_platform/kuaishou/core.py b/media_platform/kuaishou/core.py index 4e543cd..cdbe373 100644 --- a/media_platform/kuaishou/core.py +++ b/media_platform/kuaishou/core.py @@ -376,7 +376,7 @@ class KuaishouCrawler(AbstractCrawler): # Get all video information of the creator all_video_list = await self.ks_client.get_all_videos_by_creator( user_id=user_id, - crawl_interval=random.random(), + crawl_interval=config.CRAWLER_MAX_SLEEP_SEC, callback=self.fetch_creator_video_detail, )