Skip to content
Snippets Groups Projects
Unverified Commit 1b1045c0 authored by Max Gautier's avatar Max Gautier
Browse files

download_hash: use persistent session

This allows to reuse http connection and be more efficient.
From rough measuring it saves around 25-30% of execution time.
parent 86855be6
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,7 @@ def download_hash(only_downloads: [str]) -> None:
}
data, yaml = open_checksums_yaml()
s = requests.Session()
for download, url in (downloads if only_downloads == []
else {k:downloads[k] for k in downloads.keys() & only_downloads}).items():
......@@ -124,7 +125,7 @@ def download_hash(only_downloads: [str]) -> None:
# to find new versions
if version in versions and versions[version] != 0:
continue
hash_file = requests.get(downloads[download].format(
hash_file = s.get(downloads[download].format(
version = version,
os = "linux",
arch = arch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment