如何在 Python 3 中從 Web 伺服器下載檔案?

Linda Hamilton
發布: 2024-11-04 01:23:02
原創
680 人瀏覽過

How to Download Files from a Web Server in Python 3?

如何在 Python 3 中從 Web 伺服器下載檔案

簡介

從 Web 伺服器下載檔案是許多程式設計中的常見任務項目。 Python 提供了多個程式庫來簡化此過程,讓您可以輕鬆地從指定的 URL 下載檔案。

使用 urlretrieve 下載檔案

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

url = "http://example.com/file.jar"
urllib.request.urlretrieve(url, "file.jar")</code>
登入後複製

此程式碼使用 urlretrieve 函數從下列位置下載檔案url 並將其儲存在本機為 file.jar。

下載用於串流傳輸的檔案

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

url = "http://example.com/file.jar"

with urllib.request.urlopen(url) as response, open("file.jar", "wb") as out_file:
    shutil.copyfileobj(response, out_file)</code>
登入後複製

此程式碼使用 urlopen 函數開啟一個類似檔案的對象,並將內容複製到本機檔案使用shutil.copyfileobj。此方法允許串流傳輸大文件,而無需將整個文件儲存在記憶體中。

處理壓縮檔案

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

url = "http://example.com/file.gz"

with urllib.request.urlopen(url) as response:
    with gzip.GzipFile(fileobj=response) as uncompressed:
        data = uncompressed.read()</code>
登入後複製

此程式碼使用 gzip 將壓縮檔案開啟為類似檔案的物件。 GzipFile 類別並將解壓縮後的資料讀取到變數中。

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

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