mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
- better downloading descriptions as a json list
- extracted cookie.txt formatting fix
This commit is contained in:
parent
3b9c667d52
commit
7b17023597
1 changed files with 10 additions and 7 deletions
|
@ -281,9 +281,12 @@ def download(path):
|
||||||
|
|
||||||
# Extract description as list
|
# Extract description as list
|
||||||
if args.json_description is True:
|
if args.json_description is True:
|
||||||
for desc in s.find("div", class_="submission-description").strings:
|
for desc in s.find("div", class_="submission-description").stripped_strings:
|
||||||
description = desc.strip()
|
|
||||||
data["description"].append(description)
|
if re.search("[<>/]", desc) is True:
|
||||||
|
desc = desc.replace("<", "").replace(">", "").replace("/", "")
|
||||||
|
|
||||||
|
data["description"].append(desc)
|
||||||
|
|
||||||
# Extact tags
|
# Extact tags
|
||||||
|
|
||||||
|
@ -447,7 +450,8 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
def login():
|
def login():
|
||||||
import browser_cookie3
|
import browser_cookie3
|
||||||
|
|
||||||
CJ = browser_cookie3.load()
|
CJ = browser_cookie3.load()
|
||||||
response = session.get(BASE_URL, cookies=CJ)
|
response = session.get(BASE_URL, cookies=CJ)
|
||||||
FA_COOKIES = CJ._cookies[".furaffinity.net"]["/"]
|
FA_COOKIES = CJ._cookies[".furaffinity.net"]["/"]
|
||||||
|
@ -465,9 +469,8 @@ def login():
|
||||||
f"""# Netscape HTTP Cookie File
|
f"""# Netscape HTTP Cookie File
|
||||||
# http://curl.haxx.se/rfc/cookie_spec.html
|
# http://curl.haxx.se/rfc/cookie_spec.html
|
||||||
# This is a generated file! Do not edit.
|
# This is a generated file! Do not edit.
|
||||||
.furaffinity.net TRUE / TRUE {cookie_a.expires} b {cookie_a.value}
|
.furaffinity.net TRUE / TRUE {cookie_a.expires} a {cookie_a.value}
|
||||||
.furaffinity.net TRUE / TRUE {cookie_b.expires} a {cookie_b.value}
|
.furaffinity.net TRUE / TRUE {cookie_b.expires} b {cookie_b.value}"""
|
||||||
"""
|
|
||||||
)
|
)
|
||||||
print(
|
print(
|
||||||
f'{GREEN}<i> cookies saved successfully, now you can provide them by using "-c cookies.txt"{END}'
|
f'{GREEN}<i> cookies saved successfully, now you can provide them by using "-c cookies.txt"{END}'
|
||||||
|
|
Loading…
Add table
Reference in a new issue