mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
filter fix
This commit is contained in:
parent
c4a9e4e486
commit
c51c87d39b
1 changed files with 6 additions and 7 deletions
|
@ -225,7 +225,7 @@ def system_message_handler(s):
|
||||||
raise System_Message
|
raise System_Message
|
||||||
|
|
||||||
|
|
||||||
def check_filter(title, url):
|
def check_filter(title):
|
||||||
search = 'YCH[a-z $-/:-?{-~!"^_`\\[\\]]*OPEN\
|
search = 'YCH[a-z $-/:-?{-~!"^_`\\[\\]]*OPEN\
|
||||||
|OPEN[a-z $-/:-?{-~!"^_`\\[\\]]*YCH\
|
|OPEN[a-z $-/:-?{-~!"^_`\\[\\]]*YCH\
|
||||||
|YCH[a-z $-/:-?{-~!"^_`\\[\\]]*CLOSE\
|
|YCH[a-z $-/:-?{-~!"^_`\\[\\]]*CLOSE\
|
||||||
|
@ -252,11 +252,8 @@ def check_filter(title, url):
|
||||||
re.IGNORECASE,
|
re.IGNORECASE,
|
||||||
)
|
)
|
||||||
if match is not None and title == match.string:
|
if match is not None and title == match.string:
|
||||||
print(
|
|
||||||
f'{YELLOW}"{title}" was filtered and will not be \
|
|
||||||
downloaded - {url}{END}'
|
|
||||||
)
|
|
||||||
return True
|
return True
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def create_metadata(output, data, s, title, filename):
|
def create_metadata(output, data, s, title, filename):
|
||||||
|
@ -385,8 +382,10 @@ def download(path):
|
||||||
"rating": s.find(class_="rating-box").text.strip(),
|
"rating": s.find(class_="rating-box").text.strip(),
|
||||||
"comments": [],
|
"comments": [],
|
||||||
}
|
}
|
||||||
if args.filter is True:
|
if args.filter is True and check_filter(title) is True:
|
||||||
check_filter(title, data.get("url"))
|
print(f'{YELLOW}"{title}" was filtered and will not be \
|
||||||
|
downloaded - {data.get("url")}{END}')
|
||||||
|
return True
|
||||||
|
|
||||||
image_url = f"https:{image}"
|
image_url = f"https:{image}"
|
||||||
output = f"{args.output_folder}/{data.get('author')}"
|
output = f"{args.output_folder}/{data.get('author')}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue