import requests

def test_upload_file():
url = "https://api。。。"
value = {
"media":open(r"E:\1.png","rb")
}
res = requests.post(url=url,files=value)
print(res.text)


其中:madia的值必须是一个打开的文件,需要用open(),打开文件来传入参数,其中rb,表示只读
posted on 2022-04-15 16:55  大话人生  阅读(37)  评论(0编辑  收藏  举报