requests文件上传实例
时间: 2023-09-06 12:11:55 浏览: 92
以下是一个使用requests库进行文件上传的示例:
```python
import requests
url = 'https://example.com/upload'
file_path = '/path/to/file.txt'
with open(file_path, 'rb') as file:
response = requests.post(url, files={'file': file})
print(response.text)
```
在这个示例中,我们首先定义了要上传文件的URL和文件路径。然后我们打开文件并使用requests.post方法发送文件。我们将文件作为文件对象传递给“files”参数。在这个示例中,我们将文件命名为“file”,但实际上可以使用任何名称。
最后,我们打印服务器的响应文本。
阅读全文