您好,登錄后才能下訂單哦!
本篇內容主要講解“Python HTTP如何實現下載并顯示進度功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python HTTP如何實現下載并顯示進度功能”吧!
下面的Python腳本中利用request下載文件并寫入到文件系統,利用progressbar
模塊顯示下載進度條。
其中利用request模塊下載文件可以直接下載,不需要使用open方法,例如:
import urllib import requests.packages.urllib3 requests.packages.urllib3.disable_warnings() url = "https://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 = "https://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如何實現下載并顯示進度功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。