diff --git a/README.md b/README.md index a4a03d0..230fdd1 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,25 @@
-TikTokDownloader
+TikTokDownloader

小红书作品采集工具

-GitHub -GitHub forks -GitHub Repo stars -GitHub all releases -GitHub release (with filter) +GitHub +GitHub forks +GitHub Repo stars +GitHub all releases +GitHub release (with filter)

📝 功能清单

📸 程序截图


- +

🪟 关于终端

⭐ 推荐使用 Windows 终端 (Windows 11 自带默认终端)运行程序以便获得最佳显示效果!

🥣 使用方法

@@ -28,8 +28,8 @@

前往 Releases 下载程序压缩包,解压后打开程序文件夹,双击运行 main.exe 即可使用。

⌨️ 源码运行

    -
  1. 安装版本号不低于 3.10 的 Python 解释器
  2. -
  3. 安装 requirements.txt 包含的第三方模块
  4. +
  5. 安装版本号不低于 3.12 的 Python 解释器
  6. +
  7. 运行 pip install -r requirements.txt 命令安装程序所需模块
  8. 下载本项目最新的源码或 Releases 发布的源码至本地
  9. 运行 main.py 即可使用
@@ -37,7 +37,7 @@

如果想要获取小红书图文/视频作品信息,可以根据 main.py 的注释提示进行代码调用。

 # 测试链接
-error_demo = "https://github.com/JoeanAmier/XHS_Downloader"
+error_demo = "https://github.com/JoeanAmier/XHS-Downloader"
 image_demo = "https://www.xiaohongshu.com/explore/63b275a30000000019020185"
 video_demo = "https://www.xiaohongshu.com/explore/64edb460000000001f03cadc"
 # 实例对象
@@ -122,20 +122,33 @@ print(xhs.extract(video_demo, download=download))
 
  • 输出内容即为所需 Cookie

  • - +

    ♥️ 支持项目

    -

    如果 XHS_Downloader 对您有帮助,请考虑为它点个 Star ⭐,感谢您的支持!

    +

    如果 XHS-Downloader 对您有帮助,请考虑为它点个 Star ⭐,感谢您的支持!

    +

    ✉️ 联系作者

    + +

    +XHS-Downloader 是我个人独立维护的一个开源项目,鉴于个人精力有限,请理解项目进展可能较为缓慢,我会尽力保持更新和维护,以确保项目的稳定性和功能的不断改进。 +

    +

    +如果您通过 Email 联系我,我可能无法及时查看并回复信息,我会尽力在七天内回复您的邮件;如果有紧急事项或需要更快的回复,请通过其他方式与我联系,谢谢理解! +

    ⚠️ 免责声明

    在使用本项目的代码和功能之前,请您认真考虑并接受以上免责声明。如果您对上述声明有任何疑问或不同意,请不要使用本项目的代码和功能。如果您使用了本项目的代码和功能,则视为您已完全理解并接受上述免责声明,并自愿承担使用本项目的一切风险和后果。 diff --git a/main.py b/main.py index 5fa571f..94b1c97 100644 --- a/main.py +++ b/main.py @@ -45,7 +45,8 @@ def example(): class XHSDownloader(App): VERSION = 1.5 - CSS_PATH = "static/XHS_Downloader.tcss" + Beta = True + CSS_PATH = "static/XHS-Downloader.tcss" BINDINGS = [ Binding(key="q", action="quit", description="退出程序"), ("d", "toggle_dark", "切换主题"), @@ -64,7 +65,7 @@ class XHSDownloader(App): yield Footer() def on_mount(self) -> None: - self.title = f"小红书作品采集工具 V{self.VERSION}" + self.title = f"小红书作品采集工具 V{self.VERSION}{" Beta" if self.Beta else ""}" def on_button_pressed(self, event: Button.Pressed) -> None: if event.button.id == "solo": diff --git a/static/QQ群聊二维码.png b/static/QQ群聊二维码.png new file mode 100644 index 0000000..ff032dd Binary files /dev/null and b/static/QQ群聊二维码.png differ diff --git a/static/XHS_Downloader.ico b/static/XHS-Downloader.ico similarity index 100% rename from static/XHS_Downloader.ico rename to static/XHS-Downloader.ico diff --git a/static/XHS-Downloader.jpg b/static/XHS-Downloader.jpg new file mode 100644 index 0000000..edfabad Binary files /dev/null and b/static/XHS-Downloader.jpg differ diff --git a/static/XHS_Downloader.png b/static/XHS-Downloader.png similarity index 100% rename from static/XHS_Downloader.png rename to static/XHS-Downloader.png diff --git a/static/XHS_Downloader.tcss b/static/XHS-Downloader.tcss similarity index 100% rename from static/XHS_Downloader.tcss rename to static/XHS-Downloader.tcss diff --git a/static/程序截图.png b/static/程序运行截图.png similarity index 100% rename from static/程序截图.png rename to static/程序运行截图.png diff --git a/static/获取Cookie.png b/static/获取Cookie示意图.png similarity index 100% rename from static/获取Cookie.png rename to static/获取Cookie示意图.png