可以使用urllib库或requests库来实现。以下是使用urllib库的示例代码:
import urllib.request
url = "http://example.com/file.txt"
filename = "file.txt"
urllib.request.urlretrieve(url, filename)
以上代码中,我们指定了要下载的文件的URL和保存的文件名,然后使用urlretrieve()
函数将文件下载到本地。
如果使用requests库,示例代码如下:
import requests
url = "http://example.com/file.txt"
filename = "file.txt"
response = requests.get(url)
with open(filename, "wb") as file:
file.write(response.content)
以上代码中,我们发送了一个GET请求获取文件的内容,然后将内容写入到本地文件中。
这些方法适用于下载任何类型的文件,包括文本文件、图像、音频、视频等。
领取专属 10元无门槛券
手把手带您无忧上云