從 Web 伺服器下載檔案是許多程式設計中的常見任務項目。 Python 提供了多個程式庫來簡化此過程,讓您可以輕鬆地從指定的 URL 下載檔案。
<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中文網其他相關文章!