Skip to content

Commit 391bfd1

Browse files
committed
Update novel crawler to version 25.07.08
- Updated README.md to reflect the new version and added novel cover image support in the configuration. - Added novel_crawler_v.25.07.08.py with enhancements including improved logging, multi-threading support, and chapter downloading functionality. - Updated requirements.txt to include the 'rich' library for enhanced console output. - Updated config.yml to specify the new version and corresponding Python file for the novel crawler.
1 parent 983839f commit 391bfd1

4 files changed

Lines changed: 1022 additions & 6 deletions

File tree

novel_crawler/README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
爬取小说章节内容页面, 保存到本地
88
最后去阅读小说了
99

10-
最新版:[novel_crawler_v.25.07.07][7]
10+
最新版:[novel_crawler_v.25.07.08][8]
1111

1212
## 说明
1313

@@ -61,6 +61,9 @@ rules:
6161
# 小说简介 CSS 选择器
6262
novel_intro: 'div.intro'
6363

64+
# 小说封面图片路径(img标签)
65+
novel_cover_img: 'body > div.book > div.info > div.cover > img'
66+
6467
# 小说章节区域 CSS 选择器
6568
novel_chapter_div: 'div.chapter-list'
6669

@@ -110,7 +113,7 @@ network:
110113
# 失败重试次数
111114
max_retries: 5
112115

113-
# 多线程模式,r
116+
# 多线程模式,忽略每分钟请求限制
114117
multi_threading: True # 多线程模式
115118
thread_count: 32 # 线程数量
116119

@@ -125,6 +128,13 @@ python ***.py config.yml
125128

126129
## 日志
127130

131+
- [novel_crawler_v.25.07.08][8]
132+
- 日志输出优化
133+
- 信息显示优化
134+
- 界面显示优化
135+
- 封面图片支持
136+
- 增加下载统计
137+
128138
- [novel_crawler_v.25.07.07][7]
129139
- 新增多线程下载模式
130140

@@ -164,4 +174,5 @@ python ***.py config.yml
164174
[4]: novel_crawler_v.25.06.02.py
165175
[5]: novel_crawler_v.25.06.05.py
166176
[6]: novel_crawler_v.25.07.06.py
167-
[7]: novel_crawler_v.25.07.07.py
177+
[7]: novel_crawler_v.25.07.07.py
178+
[8]: novel_crawler_v.25.07.08.py

0 commit comments

Comments
 (0)