From cda7f5bfb49be0f750278a9871df77901ff53f99 Mon Sep 17 00:00:00 2001 From: Ovear Date: Thu, 29 Sep 2022 15:54:31 +0800 Subject: [PATCH 1/3] fix favorites download --- Modules/functions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/functions.py b/Modules/functions.py index 3789bbd..0f1d82d 100644 --- a/Modules/functions.py +++ b/Modules/functions.py @@ -145,8 +145,10 @@ def next_button(page_url): else: parse_next_button = s.find("a", class_="button standard right", text="Next") page_num = fav_next_button(parse_next_button) + next_page_url = (parse_next_button.parent.attrs['action'] if 'action' + in parse_next_button.parent.attrs else parse_next_button.attrs['href']) print( - f"Downloading page {page_num} - {config.BASE_URL}{parse_next_button.parent.attrs['action']}" + f"Downloading page {page_num} - {config.BASE_URL}{next_page_url}" ) return page_num From 263a429bcb56b4a2754b5f7c2414b15f20635e3b Mon Sep 17 00:00:00 2001 From: Ovear Date: Thu, 29 Sep 2022 16:10:59 +0800 Subject: [PATCH 2/3] Feat: save html description in case we need it --- Modules/config.py | 8 ++++++++ Modules/download.py | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Modules/config.py b/Modules/config.py index ef8959d..4f32cb0 100644 --- a/Modules/config.py +++ b/Modules/config.py @@ -127,6 +127,13 @@ parser.add_argument( action="store_true", help="download description as a JSON list", ) +parser.add_argument( + "--html-description", + "-hd", + dest="html_description", + action="store_true", + help="save description in original html format", +) parser.add_argument( "--login", action="store_true", @@ -167,6 +174,7 @@ login = args.login check = args.check index = args.index submissions = args.submissions +html_description = args.html_description json_description = args.json_description metadata = args.metadata dont_redownload = args.redownload diff --git a/Modules/download.py b/Modules/download.py index 4b8e1e5..b2b26ec 100644 --- a/Modules/download.py +++ b/Modules/download.py @@ -76,7 +76,10 @@ def download(path): idx.write(f"({view_id})\n") if config.metadata is True: - dsc = s.find(class_="submission-description").text.strip().replace("\r\n", "\n") + if config.html_description is True: + dsc = s.find(class_="submission-description").prettify() + else: + dsc = s.find(class_="submission-description").text.strip().replace("\r\n", "\n") if config.json_description is True: dsc = [] data = { From 19e6b46b164ad8e24c2b5032d0aef576f81f5111 Mon Sep 17 00:00:00 2001 From: Ovear Date: Thu, 29 Sep 2022 16:42:29 +0800 Subject: [PATCH 3/3] Update README for html description option --- Modules/config.py | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/config.py b/Modules/config.py index 4f32cb0..c727748 100644 --- a/Modules/config.py +++ b/Modules/config.py @@ -132,7 +132,7 @@ parser.add_argument( "-hd", dest="html_description", action="store_true", - help="save description in original html format", + help="download description as original html format, this won't work if json-description is enabled", ) parser.add_argument( "--login", diff --git a/README.md b/README.md index aa8ea89..9185520 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,8 @@ options: --filter enable submission filter --metadata, -m enable metadata saving --download DOWNLOAD download a specific submission by providing its id + --html-description, -hd + download description as original html format, this won't work if json-description is enabled --json-description, -jd download description as a JSON list --login extract furaffinity cookies directly from your browser