๐
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
import sys | |
import requests | |
def download(url, filename): | |
with open(filename, 'wb') as f: | |
response = requests.get(url, stream=True) | |
total = response.headers.get('content-length') | |
if total is None: |