要在Python中实现文件的上传和下载,可以使用requests
库。首先确保已经安装了requests
库,如果没有安装,可以使用以下命令进行安装:
pip install requests
文件上传
以下是一个简单的文件上传示例:
import requests url = 'https://example.com/upload' # 替换为目标URL file_path = 'path/to/your/file.txt' # 替换为要上传的文件路径 with open(file_path, 'rb') as file: files = {'file': (file.name, file)} response = requests.post(url, files=files) print(response.text)
文件下载
以下是一个简单的文件下载示例:
import requests url = 'https://example.com/download' # 替换为目标URL file_path = 'path/to/save/downloaded_file.txt' # 替换为要保存的文件路径 response = requests.get(url) with open(file_path, 'wb') as file: file.write(response.content) print('文件下载完成')
请注意,这些示例仅用于演示目的。在实际应用中,您需要根据目标服务的要求进行相应的调整,例如设置请求头、处理异常等。