minor change in header syntaxq

get_header
This commit is contained in:
Jonathan Lin 2022-03-28 13:00:07 -04:00
Родитель 7e1e65b69c
Коммит 34cc663d64
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ def downloader(url, file_path):
if hasattr(meta.headers, 'getheaders'):
file_size = int(meta.getheaders("Content-Length")[0])
else:
file_size = int(meta.headers.get("Content-Length")[0])
file_size = int(meta.get_header("Content-Length")[0])
print("%s is %s bytes." % (file_path, file_size))
with open(file_path, 'wb') as code:
chunk_size = 8192