パッケージの使用方法を説明しているドキュメントを見つけることができますtqdm
が、データをオンラインでダウンロードするときに進行状況メーターを生成する方法がわかりません。
以下は、データをダウンロードするために ResidentMario からコピーしたサンプル コードです。
def download_file(url, filename):
"""
Helper method handling downloading large files from `url` to `filename`. Returns a pointer to `filename`.
"""
r = requests.get(url, stream=True)
with open(filename, 'wb') as f:
for chunk in r.iter_content(chunk_size=1024):
if chunk: # filter out keep-alive new chunks
f.write(chunk)
return filename
dat = download_file("https://data.cityofnewyork.us/api/views/h9gi-nx95/rows.csv?accessType=DOWNLOAD",
"NYPD Motor Vehicle Collisions.csv")
ここで tqdm パッケージを使用してダウンロードの進行状況を表示する方法を教えてもらえますか?
ありがとう