From f8d1771e8253e05f2aad327a7cad559b9e766c80 Mon Sep 17 00:00:00 2001 From: Xerbo Date: Tue, 2 Mar 2021 20:55:51 +0000 Subject: [PATCH] Use link from next button to get next URL --- furaffinity-dl.py | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/furaffinity-dl.py b/furaffinity-dl.py index ac5804c..bc7e83c 100755 --- a/furaffinity-dl.py +++ b/furaffinity-dl.py @@ -197,17 +197,13 @@ while True: download(img.find('a').attrs.get('href')) sleep(args.interval) - # 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 + 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 + # 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] print('Downloading page', page_num)