Last active
June 20, 2023 15:11
-
-
Save xflr6/f29ed682f23fd27b6a0b1241f244e6c9 to your computer and use it in GitHub Desktop.
Replacement for urllib.urlretrieve(url, filename) using the requests library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Implement `urllib.urlretrieve(url, filename)` with requests library.""" | |
import contextlib | |
import os | |
import urllib | |
import requests | |
def urlretrieve(url: str, | |
filename: os.PathLike | str) -> tuple[str, dict[str, str]]: | |
with contextlib.closing(requests.get(url, stream=True)) as r: | |
r.raise_for_status() | |
with open(filename, 'wb') as f: | |
for chunk in r.iter_content(chunk_size=8_192): | |
f.write(chunk) | |
return filename, r.headers | |
def urlretrieve(url: str, | |
filename: os.PathLike | str) -> tuple[str, dict[str, str]]: | |
with contextlib.closing(requests.get(url, stream=True)) as r: | |
r.raise_for_status() | |
size = int(r.headers.get('Content-Length', '-1')) | |
read = 0 | |
with open(filename, 'wb') as f: | |
for chunk in r.iter_content(chunk_size=8_192): | |
read += len(chunk) | |
f.write(chunk) | |
if size >= 0 and read < size: | |
msg = f'retrieval incomplete: got only {read:d} out of {size:d} bytes' | |
raise urllib.ContentTooShortError(msg, (filename, r.headers)) | |
return filename, r.headers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment