mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Patch from anonusr, orignal message is as follows:
> ...it looks like FA doesn't use the same pagination scheme for > favorites that they do for galleries. > I wrote a small patch that appears to fix the problem on my end to help > download favorites pages...
This commit is contained in:
parent
29636db1e7
commit
131211605d
1 changed files with 29 additions and 6 deletions
|
@ -197,6 +197,7 @@ while True:
|
|||
download(img.find('a').attrs.get('href'))
|
||||
sleep(args.interval)
|
||||
|
||||
if args.category != "favorites":
|
||||
next_button = s.find('button', class_='button standard', text="Next").parent
|
||||
if next_button is None:
|
||||
print('Unable to find next button')
|
||||
|
@ -204,6 +205,28 @@ while True:
|
|||
|
||||
page_num = next_button.attrs['action'].split('/')[-2]
|
||||
|
||||
print('Downloading page', page_num, page_url)
|
||||
else:
|
||||
next_button = s.find('a', class_='button mobile-button right', text="Next")
|
||||
if next_button is None:
|
||||
print('Unable to find next button')
|
||||
break
|
||||
|
||||
# unlike galleries that are sequentially numbered, favorites use a different scheme.
|
||||
# the "page_num" is instead: [set of numbers]/next (the trailing /next is required)
|
||||
|
||||
next_page_link = next_button.attrs['href']
|
||||
next_fav_num = re.search(r'\d+', next_page_link)
|
||||
|
||||
if next_fav_num == None:
|
||||
print('Failed to parse next favorite link.')
|
||||
break
|
||||
|
||||
page_num = next_fav_num.group(0) + "/next"
|
||||
|
||||
# parse it into numbers/next
|
||||
|
||||
|
||||
print('Downloading page', page_num, page_url)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue