mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
(hopefully) fix next button finding, ref #53
This commit is contained in:
parent
f8d1771e82
commit
c7fef621f0
1 changed files with 4 additions and 5 deletions
|
@ -197,15 +197,14 @@ while True:
|
||||||
download(img.find('a').attrs.get('href'))
|
download(img.find('a').attrs.get('href'))
|
||||||
sleep(args.interval)
|
sleep(args.interval)
|
||||||
|
|
||||||
next_button = s.find('a', class_='button standard right')
|
next_button = s.find('button', class_='button standard', text="Next").parent
|
||||||
if next_button is None:
|
if next_button is None:
|
||||||
|
print('Unable to find next button')
|
||||||
break
|
break
|
||||||
|
|
||||||
# URL looks something like /favorites/:username/:timestamp/next
|
page_num = next_button.attrs['action'].split('/')[-2]
|
||||||
# Splitting on the username is more robust to future URL changes
|
|
||||||
page_num = next_button.attrs['href'].split(args.username + '/')[-1]
|
|
||||||
|
|
||||||
print('Downloading page', page_num)
|
print('Downloading page', page_num, page_url)
|
||||||
|
|
||||||
|
|
||||||
print('Finished downloading')
|
print('Finished downloading')
|
||||||
|
|
Loading…
Add table
Reference in a new issue