從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中文網其他相關文章!