diff --git a/README.md b/README.md
index f632935..fb44e23 100644
--- a/README.md
+++ b/README.md
@@ -264,6 +264,7 @@ async def example():
# 返回作品详细信息,包括下载地址
# 获取数据失败时返回空字典
print(await xhs.extract(demo_link, download, index=[1, 2]))
+
📋 读取剪贴板
项目使用 pyperclip 实现读取剪贴板功能,该模块在不同的系统上会有差异。
@@ -383,7 +384,7 @@ async def example():
| account_archive |
bool |
-是否将每个作者的作品储存至单独的文件夹;文件夹名称为作者昵称或者作者 ID |
+是否将每个作者的作品储存至单独的文件夹;文件夹名称为 作者ID_作者昵称 |
false |
diff --git a/README_EN.md b/README_EN.md
index 4241c32..26c195f 100644
--- a/README_EN.md
+++ b/README_EN.md
@@ -268,6 +268,7 @@ async def example():
# 返回作品详细信息,包括下载地址
# 获取数据失败时返回空字典
print(await xhs.extract(demo_link, download, index=[1, 2]))
+
📋 Read Clipboard
The project uses pyperclip to implement clipboard reading functionality, which varies across different systems.
@@ -387,7 +388,7 @@ async def example():
| account_archive |
bool |
-Whether to save each author's works into a separate folder; the folder name will be the author's nickname or author ID |
+Whether to save each author's works into a separate folder; The folder name is authorID_nickname |
false |
diff --git a/source/application/app.py b/source/application/app.py
index 7179cdf..cc6c64e 100644
--- a/source/application/app.py
+++ b/source/application/app.py
@@ -12,6 +12,7 @@ from urllib.parse import urlparse
from fastapi import FastAPI
from fastapi.responses import RedirectResponse
from pyperclip import copy
+
# from aiohttp import web
from pyperclip import paste
from uvicorn import Config
@@ -174,8 +175,9 @@ class XHS:
u,
container["动图地址"],
index,
- self.CLEANER.filter_name(container["作者昵称"])
- or container["作者ID"],
+ container["作者ID"]
+ + "_"
+ + self.CLEANER.filter_name(container["作者昵称"]),
name,
container["作品类型"],
log,