你可以使用urllib
或requests
模塊來下載文件。以下是使用urllib
模塊的示例代碼:
import urllib.request
url = "https://example.com/sample.jpg"
filename = "sample.jpg"
urllib.request.urlretrieve(url, filename)
print("文件已下載")
如果你希望使用requests
模塊來下載文件,可以參考以下示例代碼:
import requests
url = "https://example.com/sample.jpg"
filename = "sample.jpg"
response = requests.get(url)
with open(filename, "wb") as file:
file.write(response.content)
print("文件已下載")
這兩種方法都可以用來從URL下載文件,你可以根據自己的偏好選擇其中一種。