feat: add disable of threading and configure the number of running threads

fix: NoneType error if no arguments are provided
This commit is contained in:
Kentai Radiquum 2024-10-29 22:45:38 +05:00
parent d8a6fffa0b
commit c0962094ca
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 60 additions and 35 deletions

View file

@ -163,6 +163,20 @@ parser.add_argument(
action="store_true", action="store_true",
help="check all files size when download, this will skip build-in archive", help="check all files size when download, this will skip build-in archive",
) )
parser.add_argument(
"--disable-threading",
dest="disable_threading",
action="store_true",
help="disable multithreading download",
)
parser.add_argument(
"--num-threads",
"-t",
dest="num_threads",
default=3,
help="how many threads will be used for parallel download [default: 3]",
type=int,
)
args = parser.parse_args() args = parser.parse_args()
@ -181,30 +195,32 @@ if username is not None:
username = username[0] username = username[0]
# Custom input # Custom input
cookies = args.cookies cookies: str = args.cookies
output_folder = args.output_folder output_folder: str = args.output_folder
download = args.download download: int = args.download
interval = args.interval interval: int = args.interval
user_agent = args.user_agent user_agent: str = args.user_agent
start = args.start start: int = args.start
stop = args.stop stop: int = args.stop
folder = args.folder folder: str = args.folder
num_threads: int = args.num_threads
# True\False # True\False
login = args.login login: bool = args.login
check = args.check check: bool = args.check
index = args.index index: bool = args.index
submissions = args.submissions submissions: bool = args.submissions
html_description = args.html_description html_description: bool = args.html_description
json_description = args.json_description json_description: bool = args.json_description
metadata = args.metadata metadata: bool = args.metadata
dont_redownload = args.redownload dont_redownload: bool = args.redownload
rating = args.rating rating: bool = args.rating
submission_filter = args.submission_filter submission_filter: bool = args.submission_filter
real_category = args.real_category real_category: bool = args.real_category
request_compress = args.request_compress request_compress: bool = args.request_compress
check_file_size = args.check_file_size check_file_size: bool = args.check_file_size
disable_threading: bool = args.disable_threading
if check_file_size: if check_file_size:
request_compress = False request_compress = False

View file

@ -82,16 +82,19 @@ it\'s already downloaded{config.END}'
) )
continue continue
#download(img_url) if config.disable_threading:
q.put(img_url) download(img_url)
else:
q.put(img_url)
sleep(config.interval) sleep(config.interval)
q.join() q.join()
page_num = next_button(page_url) page_num = next_button(page_url)
stop_threads = True if not config.disable_threading:
for _ in range(3): stop_threads = True
q.put("shutdown") for _ in range(config.num_threads):
for t in workers: q.put("shutdown")
t.join() for t in workers:
t.join()
if __name__ == "__main__": if __name__ == "__main__":
@ -126,12 +129,13 @@ is inaccessible{config.END}"
download(f"/view/{config.download}/") download(f"/view/{config.download}/")
exit() exit()
stop_threads = False if not config.disable_threading:
for id in range(3): stop_threads = False
print(id, 'started thread') for id in range(config.num_threads):
tmp = threading.Thread(target=worker, daemon=False) print(id, 'started thread')
workers.append(tmp) tmp = threading.Thread(target=worker, daemon=False)
tmp.start() 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"
@ -160,6 +164,11 @@ downloading "{config.folder[1]}"{config.END}'
) )
exit() exit()
if not config.username:
print("Not enough arguments")
config.parser.print_help()
os._exit(1)
for username in config.username: for username in config.username:
username = username.split("#")[0].translate( username = username.split("#")[0].translate(
str.maketrans(config.username_replace_chars) str.maketrans(config.username_replace_chars)