mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Merge pull request #43 from jkmartindale/python
Python version: Fix downloading multiple Favorites gallery pages
This commit is contained in:
commit
601dad9808
1 changed files with 12 additions and 1 deletions
|
@ -183,7 +183,18 @@ while True:
|
||||||
for img in s.findAll('figure'):
|
for img in s.findAll('figure'):
|
||||||
download(img.find('a').attrs.get('href'))
|
download(img.find('a').attrs.get('href'))
|
||||||
|
|
||||||
page_num += 1
|
# 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
|
||||||
|
|
||||||
|
# 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)
|
print('Downloading page', page_num)
|
||||||
|
|
||||||
print('Finished downloading')
|
print('Finished downloading')
|
||||||
|
|
Loading…
Add table
Reference in a new issue