mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Add multithreading downloads
Shoud fix some bugs???
This commit is contained in:
parent
b9d958c6c1
commit
848c2697f4
5 changed files with 48 additions and 20 deletions
1
.python-version
Normal file
1
.python-version
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.11.4
|
|
@ -177,6 +177,9 @@ if username is not None:
|
||||||
data = open(username[0]).read()
|
data = open(username[0]).read()
|
||||||
username = filter(None, data.split("\n"))
|
username = filter(None, data.split("\n"))
|
||||||
|
|
||||||
|
if len(username) == 1 and args.folder is not None:
|
||||||
|
username = username[0]
|
||||||
|
|
||||||
# Custom input
|
# Custom input
|
||||||
cookies = args.cookies
|
cookies = args.cookies
|
||||||
output_folder = args.output_folder
|
output_folder = args.output_folder
|
||||||
|
|
|
@ -56,7 +56,7 @@ def download(path, max_retries=5):
|
||||||
if config.category != "gallery":
|
if config.category != "gallery":
|
||||||
output = f"{config.output_folder}/{author}/{config.category}"
|
output = f"{config.output_folder}/{author}/{config.category}"
|
||||||
if config.folder is not None:
|
if config.folder is not None:
|
||||||
output = f"{config.output_folder}/{author}/{config.folder}"
|
output = f"{config.output_folder}/{author}/folders/{config.folder.split('/')[1]}"
|
||||||
os.makedirs(output, exist_ok=True)
|
os.makedirs(output, exist_ok=True)
|
||||||
|
|
||||||
output_path = f"{output}/{title} ({view_id}) - {filename}"
|
output_path = f"{output}/{title} ({view_id}) - {filename}"
|
||||||
|
|
|
@ -125,19 +125,14 @@ def next_button(page_url):
|
||||||
if config.submissions is True:
|
if config.submissions is True:
|
||||||
# unlike galleries that are sequentially numbered, submissions use a different scheme.
|
# unlike galleries that are sequentially numbered, submissions use a different scheme.
|
||||||
# the "page_num" is instead: new~[set of numbers]@(12 or 48 or 72) if sorting by new
|
# the "page_num" is instead: new~[set of numbers]@(12 or 48 or 72) if sorting by new
|
||||||
try:
|
parse_next_button = s.find("a", class_="button standard more")
|
||||||
parse_next_button = s.find("a", class_="button standard more").attrs.get(
|
if parse_next_button is None:
|
||||||
"href"
|
parse_next_button = s.find("a", class_="button standard more-half")
|
||||||
)
|
if parse_next_button is not None:
|
||||||
except AttributeError:
|
page_num = parse_next_button.attrs['href'].split("/")[-2]
|
||||||
try:
|
else:
|
||||||
parse_next_button = s.find(
|
print(f"{config.WARN_COLOR}Unable to find next button{config.END}")
|
||||||
"a", class_="button standard more-half"
|
raise DownloadComplete
|
||||||
).attrs.get("href")
|
|
||||||
except AttributeError as e:
|
|
||||||
print(f"{config.WARN_COLOR}Unable to find next button{config.END}")
|
|
||||||
raise DownloadComplete from e
|
|
||||||
page_num = parse_next_button.split("/")[-2]
|
|
||||||
elif config.category != "favorites":
|
elif config.category != "favorites":
|
||||||
parse_next_button = s.find("button", class_="button standard", text="Next")
|
parse_next_button = s.find("button", class_="button standard", text="Next")
|
||||||
if parse_next_button is None or parse_next_button.parent is None:
|
if parse_next_button is None or parse_next_button.parent is None:
|
||||||
|
@ -147,10 +142,9 @@ def next_button(page_url):
|
||||||
else:
|
else:
|
||||||
parse_next_button = s.find("a", class_="button standard right", text="Next")
|
parse_next_button = s.find("a", class_="button standard right", text="Next")
|
||||||
page_num = fav_next_button(parse_next_button)
|
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(
|
print(
|
||||||
f"Downloading page {page_num} - {config.BASE_URL}{next_page_url}"
|
f"Downloading page {page_num}"
|
||||||
)
|
)
|
||||||
return page_num
|
return page_num
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,23 @@ from Modules.functions import system_message_handler
|
||||||
from Modules.index import check_file
|
from Modules.index import check_file
|
||||||
from Modules.index import start_indexing
|
from Modules.index import start_indexing
|
||||||
|
|
||||||
|
# Terminate the process
|
||||||
|
import threading
|
||||||
|
import queue
|
||||||
|
q = queue.Queue()
|
||||||
|
|
||||||
|
workers = []
|
||||||
|
def worker():
|
||||||
|
while True:
|
||||||
|
item = q.get()
|
||||||
|
if item == 'shutdown':
|
||||||
|
break
|
||||||
|
download(item)
|
||||||
|
q.task_done()
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
urls = []
|
||||||
"""loop over and download all images on the page(s)"""
|
"""loop over and download all images on the page(s)"""
|
||||||
page_num = config.start
|
page_num = config.start
|
||||||
with contextlib.suppress(DownloadComplete):
|
with contextlib.suppress(DownloadComplete):
|
||||||
|
@ -67,10 +82,16 @@ it\'s already downloaded{config.END}'
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
download(img_url)
|
#download(img_url)
|
||||||
|
q.put(img_url)
|
||||||
sleep(config.interval)
|
sleep(config.interval)
|
||||||
|
q.join()
|
||||||
page_num = next_button(page_url)
|
page_num = next_button(page_url)
|
||||||
|
stop_threads = True
|
||||||
|
for _ in range(3):
|
||||||
|
q.put("shutdown")
|
||||||
|
for t in workers:
|
||||||
|
t.join()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@ -104,6 +125,13 @@ is inaccessible{config.END}"
|
||||||
if config.download is not None:
|
if config.download is not None:
|
||||||
download(f"/view/{config.download}/")
|
download(f"/view/{config.download}/")
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
|
stop_threads = False
|
||||||
|
for id in range(3):
|
||||||
|
print(id, 'started thread')
|
||||||
|
tmp = threading.Thread(target=worker, daemon=False)
|
||||||
|
workers.append(tmp)
|
||||||
|
tmp.start()
|
||||||
|
|
||||||
if config.submissions is True:
|
if config.submissions is True:
|
||||||
download_url = f"{config.BASE_URL}/msg/submissions"
|
download_url = f"{config.BASE_URL}/msg/submissions"
|
||||||
|
@ -117,7 +145,7 @@ downloading submissions{config.END}"
|
||||||
if config.folder is not None:
|
if config.folder is not None:
|
||||||
folder = config.folder.split("/")
|
folder = config.folder.split("/")
|
||||||
download_url = (
|
download_url = (
|
||||||
f"{config.BASE_URL}/gallery/{config.username}/folder/{config.folder[1]}"
|
f"{config.BASE_URL}/gallery/{config.username}/folder/{config.folder}"
|
||||||
)
|
)
|
||||||
main()
|
main()
|
||||||
print(
|
print(
|
||||||
|
@ -137,6 +165,7 @@ downloading "{config.folder[1]}"{config.END}'
|
||||||
str.maketrans(config.username_replace_chars)
|
str.maketrans(config.username_replace_chars)
|
||||||
)
|
)
|
||||||
if username != "":
|
if username != "":
|
||||||
|
|
||||||
print(f'{config.SUCCESS_COLOR}Now downloading "{username}"{config.END}')
|
print(f'{config.SUCCESS_COLOR}Now downloading "{username}"{config.END}')
|
||||||
download_url = f"{config.BASE_URL}/{config.category}/{username}"
|
download_url = f"{config.BASE_URL}/{config.category}/{username}"
|
||||||
print(f"Downloading page {config.start} - {download_url}/{config.start}")
|
print(f"Downloading page {config.start} - {download_url}/{config.start}")
|
||||||
|
@ -145,3 +174,4 @@ downloading "{config.folder[1]}"{config.END}'
|
||||||
f'{config.SUCCESS_COLOR}Finished \
|
f'{config.SUCCESS_COLOR}Finished \
|
||||||
downloading "{username}"{config.END}'
|
downloading "{username}"{config.END}'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue