Python 使用requests库上传文件
时间: 2023-06-05 10:04:11 浏览: 283
Python requests上传文件实现步骤
可以使用Python的requests库来上传文件。具体实现可以使用requests.post()方法,传入文件路径和上传地址作为参数。例如:
```python
import requests
url = 'http://example.com/upload'
files = {'file': open('example.txt', 'rb')}
response = requests.post(url, files=files)
```
其中,'example.txt'是需要上传的文件名,'http://example.com/upload'是上传地址。请求发送后,服务器会将文件保存在对应位置。
阅读全文