在Python中,可以使用requests
庫來下載文件到本地。以下是一個示例代碼,演示如何下載文件到本地:
import requests
url = 'https://example.com/file.txt'
local_filename = 'file.txt'
response = requests.get(url)
with open(local_filename, 'wb') as file:
file.write(response.content)
print(f'File downloaded to {local_filename}')
在上面的代碼中,首先我們使用requests.get()
方法來獲取文件內容,然后將內容寫入到本地文件中。最后打印出文件下載的本地路徑。你可以根據需要修改URL和本地文件名來下載不同的文件。