我想在Python 3中使用Python的Requests库在POST
请求中发送一个文件。我试图像这样发送它:
import requests
file_content = 'This is the text of the file to upload'
r = requests.post('http://endpoint',
params = {
'token': 'api_token',
'message': 'message text',
},
files = {'filename': file_content},
)
然而,服务器响应没有发送文件。这有用吗?大多数示例涉及传递文件对象,但我不想将字符串写入磁盘只是为了上传它。
答案 0 :(得分:6)
requests
docs向我们提供了这个:
如果需要,您可以发送要作为文件接收的字符串:
>>> url = 'http://httpbin.org/post'
>>> files = {'file': ('report.csv', 'some,data,to,send\nanother,row,to,send\n')}
>>> r = requests.post(url, files=files)
>>> r.text
{
...
"files": {
"file": "some,data,to,send\\nanother,row,to,send\\n"
},
...
}
我将其作为另一个答案发布,因为它涉及不同的方法。
答案 1 :(得分:4)
为什么不使用cStringIO
?
import requests, cStringIO
file_content = 'This is the text of the file to upload'
r = requests.post('http://endpoint',
params = {
'token': 'api_token',
'message': 'tag_message',
},
files = {'filename': cStringIO.StringIO(file_content)},
)
我认为requests
使用的方法类似于我们用于文件的方法。 cStringIO
提供了这些内容。
使用示例
>>> from cStringIO import *
>>> a=StringIO("hello")
>>> a.read()
'hello'
答案 2 :(得分:1)
事实证明,它不工作的原因与文件内容无关,而是我通过HTTP而不是HTTPS发送请求,而HTTPS正在丢失整个请求。