如何使用 Python 3 從網路下載檔案?

Mary-Kate Olsen
發布: 2024-11-04 03:04:01
原創
962 人瀏覽過

How to Download Files from the Web Using Python 3?

在Python 3 中從Web 下載檔案

從JAD 檔案中擷取URL 來下載JAR 檔案時,由於URL 儲存為字串,我們遇到錯誤類型。為了解決這個問題,我們探索了在 Python 3 中下載帶有字串 URL 的檔案的方法。

檢索網頁內容:

將網頁內容提取到一個變量,我們可以使用urllib.request.urlopen 並讀取回應:

<code class="python">import urllib.request

url = 'http://example.com/'
response = urllib.request.urlopen(url)
data = response.read()      # bytes object
text = data.decode('utf-8') # str object</code>
登入後複製

下載和儲存檔案:

對於簡單的檔案下載和儲存,urllib .request.urlretrieve 是最佳方案:

<code class="python">import urllib.request

# Download and save file from url to file_name
urllib.request.urlretrieve(url, file_name)</code>
登入後複製

或者,您可以取得本機路徑和回應標頭:

<code class="python">file_name, headers = urllib.request.urlretrieve(url)</code>
登入後複製

使用urlopen 和Shutil.copyfileobj 的最佳解決方案:

建議的方法是利用urllib.request. urlopen 檢索類似檔案的HTTP 回應對象,並使用Shutil.copyfileobj 將其複製到檔案:

<code class="python">import urllib.request
import shutil

# Download and save file from url to file_name
with urllib.request.urlopen(url) as response, open(file_name, 'wb') as out_file:
    shutil.copyfileobj(response, out_file)</code>
登入後複製

小檔案的替代方法:

對於較小檔案的替代方法:

<code class="python">import urllib.request

# Download and save file from url to file_name
with urllib.request.urlopen(url) as response, open(file_name, 'wb') as out_file:
    data = response.read() # bytes object
    out_file.write(data)</code>
登入後複製

對於較小檔案的替代方法:

對於較小檔案的替代方法:

<code class="python">import urllib.request
import gzip

# Read first 64 bytes of .gz file at url
url = 'http://example.com/something.gz'
with urllib.request.urlopen(url) as response:
    with gzip.GzipFile(fileobj=response) as uncompressed:
        file_header = uncompressed.read(64) # bytes object</code>
登入後複製
對於較小的文件,可以將整個下載儲存在位元組物件中並將其寫入檔案:即時提取壓縮資料:如果HTTP 伺服器支援隨機文件訪問,您還可以即時提取壓縮數據:

以上是如何使用 Python 3 從網路下載檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!