下载文件时使用Tqdm添加进度条

时间:2017-05-02 16:58:24

标签: python downloading tqdm

我一直在尝试使用python 3.6中的Tqdm模块设置进度条,但似乎我已经到了一半。

我的代码如下:

from tqdm import tqdm
import requests
import time

url = 'http://alpha.chem.umb.edu/chemistry/ch115/Mridula/CHEM%20116/documents/chapter_20au.pdf'

# Streaming, so we can iterate over the response.
r = requests.get(url, stream=True)
#Using The Url as a filename
local_filename = url.split('/')[-1]
# Total size in bytes.
total_size = int(r.headers.get('content-length', 0))
#Printing Total size in Bytes
print(total_size)

#TQDM
with open(local_filename, 'wb') as f:
    for data in tqdm(r.iter_content(chunk_size = 512), total=total_size, unit='B', unit_scale=True):
        f.write(data)

问题在于,当我在chunk_size = 512中插入r.iter_content时,在显示下载数据时根本没有加载进度条,但是当我完全删除chunk_size = 512并离开时圆括号空白栏完全按照它应该加载,但下载速度太可怕了。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

你不远处,但只是遗漏了几乎所有的代码,以使进度条相应地工作。假设您已经创建了界面,这是我用于进度条的方法。它会下载文件并将其保存在桌面上(但您可以指定要保存的位置)。它只需要下载文件的大小并将其除以总文件大小,然后使用该值来更新进度条。如果此代码有帮助,请告诉我:

url = 'http://alpha.chem.umb.edu/chemistry/ch115/Mridula/CHEM%20116/documents/chapter_20au.pdf'
save = 'C:/Users/' + username + "/Desktop/"    
r = requests.get(url, stream=True)
total_size = int(r.headers["Content-Length"])
downloaded = 0  # keep track of size downloaded so far
chunkSize = 1024
bars = int(fileSize / chunkSize)
print(dict(num_bars=bars))
with open(filename, "wb") as f:
    for chunk in tqdm(r.iter_content(chunk_size=chunkSize), total=bars, unit="KB",
                                  desc=filename, leave=True):
        f.write(chunk)
        downloaded += chunkSize  # increment the downloaded
        prog = ((downloaded * 100 / fileSize))
        progress["value"] = (prog)  # *100 #Default max value of tkinter progress is 100

return

progress =进度条

相关问题