首页  >  文章  >  后端开发  >  如何在 Python 3 中从 Web 服务器下载文件?

如何在 Python 3 中从 Web 服务器下载文件?

Linda Hamilton
Linda Hamilton原创
2024-11-04 01:23:02686浏览

How to Download Files from a Web Server in Python 3?

如何在 Python 3 中从 Web 服务器下载文件

简介

从 Web 服务器下载文件是许多编程中的常见任务项目。 Python 提供了多个库来简化此过程,使您可以轻松地从指定的 URL 下载文件。

使用 urlretrieve 下载文件

<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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn