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:
Xerbo 2021-12-28 13:14:43 +00:00
parent 29636db1e7
commit 131211605d
No known key found for this signature in database
GPG key ID: 34103F6D8F11CEB0

View file

@ -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)