mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-30 00:00:48 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
405d879db6 | ||
|
41342a6da0 |
@ -1,3 +1,3 @@
|
||||
__version__ = '0.5.15'
|
||||
__version__ = '0.5.16'
|
||||
__author__ = 'RicterZ'
|
||||
__email__ = 'ricterzheng@gmail.com'
|
||||
|
@ -142,7 +142,13 @@ def doujinshi_parser(id_, counter=0):
|
||||
title = doujinshi_info.find('h1').text
|
||||
pretty_name = doujinshi_info.find('h1').find('span', attrs={'class': 'pretty'}).text
|
||||
subtitle = doujinshi_info.find('h2')
|
||||
favorite_counts = doujinshi_info.find('span', class_='nobold').find('span', class_='count').text.strip()
|
||||
favorite_counts = doujinshi_info.find('span', class_='nobold').find('span', class_='count')\
|
||||
|
||||
if favorite_counts:
|
||||
favorite_counts = favorite_counts.text.strip()
|
||||
else:
|
||||
favorite_counts = 0
|
||||
|
||||
doujinshi['name'] = title
|
||||
doujinshi['pretty_name'] = pretty_name
|
||||
doujinshi['subtitle'] = subtitle.text if subtitle else ''
|
||||
|
Loading…
x
Reference in New Issue
Block a user