在 Python 中通过 HTTP 下载文件
在 Python 中工作时,通过 HTTP 下载文件可能具有挑战性。许多用户求助于 wget 等外部解决方案来完成此任务。但是,Python 提供了几种用于文件检索的本机选项。
使用 urlopen()
一种方法是使用 urllib 库中的 urlopen() 方法。它打开一个网络对象并允许您检索文件的内容。用法示例:
import urllib.request try: response = urllib.request.urlopen("http://example.com/mp3.mp3") with open('mp3.mp3', 'wb') as file: file.write(response.read()) except urllib.error.HTTPError as err: print("Error:", err.code)
使用 urlretrieve()
或者,您可以使用 urlretrieve() 将文件直接下载到本地路径。该方法带有一些内置的错误处理。用法示例:
import urllib.request urllib.request.urlretrieve("http://example.com/mp3.mp3", "mp3.mp3")
以上是如何使用Python内置的HTTP功能下载文件?的详细内容。更多信息请关注PHP中文网其他相关文章!