Skip to content

Commit 999e62f

Browse files
committed
chore: 更新版本号并调整导出批处理大小
- 将项目版本从1.1.30更新至1.1.31 - 将export_sources方法的size参数从100增加到500 版本更新为后续发布做准备。增加导出批处理大小可以提升数据导出效率,减少文件分片数量,优化存储结构。此变更不会影响API接口或外部行为,仅优化内部处理流程。
1 parent fe1400f commit 999e62f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "funread"
3-
version = "1.1.30"
3+
version = "1.1.31"
44
description = "一个用于管理和处理阅读源(Legado 阅读 APP 的书源和 RSS 源)的 Python 工具库"
55
readme = "README.md"
66
requires-python = ">=3.8"

src/funread/legado/manage/download/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def split_and_upload(self):
172172
funos.delete(runner.path_bok)
173173
runner.loads_zip()
174174
i = 1000
175-
for data in runner.export_sources(size=100):
175+
for data in runner.export_sources(size=500):
176176
if len(data) > 0:
177177
git_path = f"{self.dir_path}/progress-{i}.json"
178178
self.drive.upload_file(content=data, git_path=git_path)

0 commit comments

Comments
 (0)