Use link from next button to get next URL

This commit is contained in:
Xerbo 2021-03-02 20:55:51 +00:00 committed by Liam
parent 46f4c0fb96
commit f8d1771e82

View file

@ -197,8 +197,6 @@ while True:
download(img.find('a').attrs.get('href'))
sleep(args.interval)
# Favorites galleries use a weird timestamp system, so grab the next "page" from the Next button
if args.category == 'favorites':
next_button = s.find('a', class_='button standard right')
if next_button is None:
break
@ -206,8 +204,6 @@ while True:
# URL looks something like /favorites/:username/:timestamp/next
# Splitting on the username is more robust to future URL changes
page_num = next_button.attrs['href'].split(args.username + '/')[-1]
else:
page_num += 1
print('Downloading page', page_num)