mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 08:14: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,
|
||||||
|
@ -236,6 +232,10 @@ def download(path):
|
||||||
"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(
|
||||||
"YCH[a-z $-/:-?{-~!\"^_`\[\]]*OPEN|OPEN[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*CLOSE|CLOSE[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*ABLE|AVAIL[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*CLONE|CLONE[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*LIM|LIM[a-z $-/:-?{-~!\"^_`\[\]]*YCH|COM[a-z $-/:-?{-~!\"^_`\[\]]*OPEN|OPEN[a-z $-/:-?{-~!\"^_`\[\]]*COM|COM[a-z $-/:-?{-~!\"^_`\[\]]*CLOSE|CLOSE[a-z $-/:-?{-~!\"^_`\[\]]*COM|FIX[a-z $-/:-?{-~!\"^_`\[\]]*ICE|REM[insder]*\W|\\bREF|Sale$|auction|multislot|stream|adopt",
|
"YCH[a-z $-/:-?{-~!\"^_`\[\]]*OPEN|OPEN[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*CLOSE|CLOSE[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*ABLE|AVAIL[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*CLONE|CLONE[a-z $-/:-?{-~!\"^_`\[\]]*YCH|YCH[a-z $-/:-?{-~!\"^_`\[\]]*LIM|LIM[a-z $-/:-?{-~!\"^_`\[\]]*YCH|COM[a-z $-/:-?{-~!\"^_`\[\]]*OPEN|OPEN[a-z $-/:-?{-~!\"^_`\[\]]*COM|COM[a-z $-/:-?{-~!\"^_`\[\]]*CLOSE|CLOSE[a-z $-/:-?{-~!\"^_`\[\]]*COM|FIX[a-z $-/:-?{-~!\"^_`\[\]]*ICE|REM[insder]*\W|\\bREF|Sale$|auction|multislot|stream|adopt",
|
||||||
|
|
Loading…
Add table
Reference in a new issue