如何用Python实现HTTP下载文件并实时显示下载进度条功能?

2026-05-26 23:501阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计325个文字,预计阅读时间需要2分钟。

如何用Python实现HTTP下载文件并实时显示下载进度条功能?

以下是对原文的简化

python使用request模块下载文件并写入文件系统,同时使用progressbar模块显示下载进度。可以直接使用request模块下载文件,无需使用open方法。例如:import urllib.request

下面的Python脚本中利用request下载文件并写入到文件系统,利用progressbar模块显示下载进度条。

其中利用request模块下载文件可以直接下载,不需要使用open方法,例如:

import urllib import requests.packages.urllib3 requests.packages.urllib3.disable_warnings() url = "raw.githubusercontent.com/racaljk/hosts/master/hosts" urllib.urlretrieve(url, filename="hosts")

下面的例子是题目中完整的例子,其中注释的部分是进度条的另一种写法,显示当前处理过的行数。

#!/usr/bin/python # encoding: utf-8 # -*- coding: utf8 -*- """ Created by PyCharm. File: LinuxBashShellScriptForOps:download_file2.py User: Guodong Create Date: 2016/9/14 Create Time: 9:40 """ import requests import progressbar import requests.packages.urllib3 requests.packages.urllib3.disable_warnings() url = "raw.githubusercontent.com/racaljk/hosts/master/hosts" response = requests.request("GET", url, stream=True, data=None, headers=None) save_path = "/tmp/hosts" total_length = int(response.headers.get("Content-Length")) with open(save_path, 'wb') as f: # widgets = ['Processed: ', progressbar.Counter(), ' lines (', progressbar.Timer(), ')'] # pbar = progressbar.ProgressBar(widgets=widgets) # for chunk in pbar((i for i in response.iter_content(chunk_size=1))): # if chunk: # f.write(chunk) # f.flush() widgets = ['Progress: ', progressbar.Percentage(), ' ', progressbar.Bar(marker='#', left='[', right=']'), ' ', progressbar.ETA(), ' ', progressbar.FileTransferSpeed()] pbar = progressbar.ProgressBar(widgets=widgets, maxval=total_length).start() for chunk in response.iter_content(chunk_size=1): if chunk: f.write(chunk) f.flush() pbar.update(len(chunk) + 1) pbar.finish()

运行结果:

如何用Python实现HTTP下载文件并实时显示下载进度条功能?

到此这篇关于Python HTTP下载文件并显示下载进度条功能的实现的文章就介绍到这了,更多相关python下载文件显示进度条内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!

本文共计325个文字,预计阅读时间需要2分钟。

如何用Python实现HTTP下载文件并实时显示下载进度条功能?

以下是对原文的简化

python使用request模块下载文件并写入文件系统,同时使用progressbar模块显示下载进度。可以直接使用request模块下载文件,无需使用open方法。例如:import urllib.request

下面的Python脚本中利用request下载文件并写入到文件系统,利用progressbar模块显示下载进度条。

其中利用request模块下载文件可以直接下载,不需要使用open方法,例如:

import urllib import requests.packages.urllib3 requests.packages.urllib3.disable_warnings() url = "raw.githubusercontent.com/racaljk/hosts/master/hosts" urllib.urlretrieve(url, filename="hosts")

下面的例子是题目中完整的例子,其中注释的部分是进度条的另一种写法,显示当前处理过的行数。

#!/usr/bin/python # encoding: utf-8 # -*- coding: utf8 -*- """ Created by PyCharm. File: LinuxBashShellScriptForOps:download_file2.py User: Guodong Create Date: 2016/9/14 Create Time: 9:40 """ import requests import progressbar import requests.packages.urllib3 requests.packages.urllib3.disable_warnings() url = "raw.githubusercontent.com/racaljk/hosts/master/hosts" response = requests.request("GET", url, stream=True, data=None, headers=None) save_path = "/tmp/hosts" total_length = int(response.headers.get("Content-Length")) with open(save_path, 'wb') as f: # widgets = ['Processed: ', progressbar.Counter(), ' lines (', progressbar.Timer(), ')'] # pbar = progressbar.ProgressBar(widgets=widgets) # for chunk in pbar((i for i in response.iter_content(chunk_size=1))): # if chunk: # f.write(chunk) # f.flush() widgets = ['Progress: ', progressbar.Percentage(), ' ', progressbar.Bar(marker='#', left='[', right=']'), ' ', progressbar.ETA(), ' ', progressbar.FileTransferSpeed()] pbar = progressbar.ProgressBar(widgets=widgets, maxval=total_length).start() for chunk in response.iter_content(chunk_size=1): if chunk: f.write(chunk) f.flush() pbar.update(len(chunk) + 1) pbar.finish()

运行结果:

如何用Python实现HTTP下载文件并实时显示下载进度条功能?

到此这篇关于Python HTTP下载文件并显示下载进度条功能的实现的文章就介绍到这了,更多相关python下载文件显示进度条内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!