mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Use link from next button to get next URL
This commit is contained in:
parent
46f4c0fb96
commit
f8d1771e82
1 changed files with 6 additions and 10 deletions
|
@ -197,17 +197,13 @@ while True:
|
||||||
download(img.find('a').attrs.get('href'))
|
download(img.find('a').attrs.get('href'))
|
||||||
sleep(args.interval)
|
sleep(args.interval)
|
||||||
|
|
||||||
# Favorites galleries use a weird timestamp system, so grab the next "page" from the Next button
|
next_button = s.find('a', class_='button standard right')
|
||||||
if args.category == 'favorites':
|
if next_button is None:
|
||||||
next_button = s.find('a', class_='button standard right')
|
break
|
||||||
if next_button is None:
|
|
||||||
break
|
|
||||||
|
|
||||||
# URL looks something like /favorites/:username/:timestamp/next
|
# URL looks something like /favorites/:username/:timestamp/next
|
||||||
# Splitting on the username is more robust to future URL changes
|
# Splitting on the username is more robust to future URL changes
|
||||||
page_num = next_button.attrs['href'].split(args.username + '/')[-1]
|
page_num = next_button.attrs['href'].split(args.username + '/')[-1]
|
||||||
else:
|
|
||||||
page_num += 1
|
|
||||||
|
|
||||||
print('Downloading page', page_num)
|
print('Downloading page', page_num)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue