哔哩轻小说catalog页面格式调整
Closed this issue · 2 comments
Papersman commented
不知道该站点什么时候修改了catalog页面导致 _crawl_book_basic_info() 抛出异常,测试了一下需要修改src/linovelib2epub/spider/linovelib_mobile_spider.py 这两个部分:
# 82行
book_title = soup.find('h2', {'class': 'book-title'}).text
--->
book_title = soup.find('h1', {'class': 'book-title'}).text
# 334行
if item.name == 'h3' and 'chapter-bar' in item['class']:
--->
if item.name == 'li' and 'chapter-bar' in item['class']:
wdpm commented
下次遇到这种小fix,如果可以的话,可以直接PR。这样我就可以偷懒了。
已经修复。@Papersman
Papersman commented
OK