mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-18 18:01:24 +02:00
fix #359
This commit is contained in:
parent
0a9f7c3d3e
commit
41342a6da0
@ -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