Skip to content

Commit

Permalink
get favorite count #386 even if not login
Browse files Browse the repository at this point in the history
  • Loading branch information
ricterzheng committed Feb 3, 2025
1 parent 4bfe0de commit 248d31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nhentai/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ 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')
favorite_counts = doujinshi_info.find('span', class_='nobold').text.strip('(').strip(')')

doujinshi['name'] = title
doujinshi['pretty_name'] = pretty_name
doujinshi['subtitle'] = subtitle.text if subtitle else ''
doujinshi['favorite_counts'] = int(favorite_counts.text.strip()) if favorite_counts else 0
doujinshi['favorite_counts'] = int(favorite_counts) if favorite_counts and favorite_counts.isdigit() else 0

doujinshi_cover = html.find('div', attrs={'id': 'cover'})
# img_id = re.search('/galleries/([0-9]+)/cover.(jpg|png|gif|webp)$',
Expand Down

0 comments on commit 248d31e

Please sign in to comment.