在python中使用pip._vendor.urllib3.response.HTTPResponse进行文件下载和上传
发布时间:2024-01-18 21:56:51
在Python中对文件进行下载和上传需要使用pip._vendor.urllib3.response.HTTPResponse模块。下面我将分别给出文件下载和文件上传的例子,并进行详细说明。
文件下载:
import requests
import os
def download_file(url, save_path):
response = requests.get(url, stream=True)
if response.status_code == 200:
with open(save_path, 'wb') as f:
for chunk in response.iter_content(1024):
f.write(chunk)
print(f"File downloaded successfully to {save_path}")
else:
print("Failed to download file")
url = "http://example.com/sample_file.pdf"
save_path = "downloaded_file.pdf"
download_file(url, save_path)
在上面的例子中,我们定义了一个download_file函数,接受文件的URL和保存路径作为参数。我们使用requests库发送GET请求来获取文件。我们以二进制模式打开文件,并使用response.iter_content方法逐块写入文件。最后,我们打印出文件的保存路径以确认文件是否成功下载。
文件上传:
import requests
def upload_file(url, file_path):
with open(file_path, 'rb') as f:
files = {'file': f}
response = requests.post(url, files=files)
if response.status_code == 200:
print("File uploaded successfully")
else:
print("Failed to upload file")
url = "http://example.com/upload"
file_path = "file_to_upload.txt"
upload_file(url, file_path)
在上面的例子中,我们定义了一个upload_file函数,接受文件上传的URL和文件的路径作为参数。我们使用requests库发送POST请求来上传文件。我们使用open函数以二进制模式打开文件,并将文件作为files参数传递给requests.post方法。如果响应的状态码为200,说明文件上传成功。
需要注意的是,pip._vendor.urllib3.response.HTTPResponse这个模块实际上是requests库中的一部分,用于处理HTTP响应。我们可以使用requests库来简化文件下载和上传的过程。
以上就是在Python中使用pip._vendor.urllib3.response.HTTPResponse进行文件下载和上传的示例。这些例子可以帮助你了解如何使用这个模块来处理文件的下载和上传操作。
