从 Web 服务器下载文件是许多编程中的常见任务项目。 Python 提供了多个库来简化此过程,使您可以轻松地从指定的 URL 下载文件。
<code class="python">import urllib.request url = "http://example.com/file.jar" urllib.request.urlretrieve(url, "file.jar")</code>
此代码使用 urlretrieve 函数从以下位置下载文件url 并将其保存在本地为 file.jar。
<code class="python">import urllib.request import shutil url = "http://example.com/file.jar" with urllib.request.urlopen(url) as response, open("file.jar", "wb") as out_file: shutil.copyfileobj(response, out_file)</code>
此代码使用 urlopen 函数打开一个类似文件的对象,并将内容复制到本地文件使用shutil.copyfileobj。此方法允许流式传输大文件,而无需将整个文件存储在内存中。
<code class="python">import urllib.request import gzip url = "http://example.com/file.gz" with urllib.request.urlopen(url) as response: with gzip.GzipFile(fileobj=response) as uncompressed: data = uncompressed.read()</code>
此代码使用 gzip 将压缩文件打开为类似文件的对象。 GzipFile 类并将解压后的数据读取到变量中。
以上是如何在 Python 3 中从 Web 服务器下载文件?的详细内容。更多信息请关注PHP中文网其他相关文章!