我要用requests上传文件呢
时间: 2023-05-19 14:04:22 浏览: 70
Python requests上传文件实现步骤
C知道:你可以使用requests库中的post方法来上传文件,示例代码如下:
import requests
url = 'http://example.com/upload'
files = {'file': open('example.txt', 'rb')}
response = requests.post(url, files=files)
print(response.text)
请注意,示例代码中的url和文件名需要根据你的实际情况进行修改。
阅读全文