mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
fix folder naming when downloading submisions
This commit is contained in:
parent
04a09f07ad
commit
872951fa44
1 changed files with 5 additions and 5 deletions
|
@ -206,10 +206,6 @@ def download(path):
|
||||||
image = s.find(class_="download").find("a").attrs.get("href")
|
image = s.find(class_="download").find("a").attrs.get("href")
|
||||||
title = s.find(class_="submission-title").find("p").contents[0] + " "
|
title = s.find(class_="submission-title").find("p").contents[0] + " "
|
||||||
description = s.find(class_="submission-description").text.strip().replace("\r\n", "\n")
|
description = s.find(class_="submission-description").text.strip().replace("\r\n", "\n")
|
||||||
author = s.find(class_="submission-id-sub-container")
|
|
||||||
if args.submissions is True:
|
|
||||||
global output
|
|
||||||
output = f"furaffinity-dl/gallery/{author}"
|
|
||||||
|
|
||||||
if args.json_description is True:
|
if args.json_description is True:
|
||||||
description = []
|
description = []
|
||||||
|
@ -217,7 +213,7 @@ def download(path):
|
||||||
data = {
|
data = {
|
||||||
"id": int(path.split("/")[-2:-1][0]),
|
"id": int(path.split("/")[-2:-1][0]),
|
||||||
"filename": filename,
|
"filename": filename,
|
||||||
"author": author
|
"author": s.find(class_="submission-id-sub-container")
|
||||||
.find("a")
|
.find("a")
|
||||||
.find("strong")
|
.find("strong")
|
||||||
.text,
|
.text,
|
||||||
|
@ -235,6 +231,10 @@ def download(path):
|
||||||
"rating": s.find(class_="rating-box").text.strip(),
|
"rating": s.find(class_="rating-box").text.strip(),
|
||||||
"comments": [],
|
"comments": [],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if args.submissions is True:
|
||||||
|
global output
|
||||||
|
output = f"furaffinity-dl/gallery/{data.get('author')}"
|
||||||
|
|
||||||
if args.filter is True:
|
if args.filter is True:
|
||||||
match = re.search(
|
match = re.search(
|
||||||
|
|
Loading…
Add table
Reference in a new issue