gpt4 book ai didi

Python通过http发送数据和jpg

转载 作者:太空宇宙 更新时间:2023-11-03 18:43:42 25 4
gpt4 key购买 nike

我想通过 http 向服务器发送数据并包含一些参数和图片。

有人成功地用 Python 做到了这一点吗?

我使用的是 Raspberry Pi,所以我有 python 2.7.3。

非常感谢您的帮助,

约翰。

最佳答案

这是一种使用 Requests 的方法lib(来自 doc ):

>>> url = 'http://httpbin.org/post'
>>> files = {'file': open('report.xls', 'rb')}

>>> r = requests.post(url, files=files)
>>> r.text
{
...
"files": {
"file": "<censored...binary...data>"
},
...
}

关于Python通过http发送数据和jpg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20012332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com