mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-04 23:34:37 +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'))
|
||||
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:
|
||||
print('Unable to find next button')
|
||||
break
|
||||
|
||||
# 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]
|
||||
page_num = next_button.attrs['action'].split('/')[-2]
|
||||
|
||||
print('Downloading page', page_num)
|
||||
print('Downloading page', page_num, page_url)
|
||||
|
||||
|
||||
print('Finished downloading')
|
||||
|
|
Loading…
Add table
Reference in a new issue