自学内容网 自学内容网

python基础知识(五)——文件上传

一、文件上传

content-type:multipart/form-data, 文件发送

urlFile = "http://47.115.15.198:7001/smarthome/file/upload"
dataFile = {"file":open("aaa.png","rb")}# 通过open函数打开文件并将文件对象存储在字典中,rb=r读 b 二进制模式
headerFile = {"X-Lemonban-Media-Type": "lemonban.v2"}

requestsFile = requests.post(url=urlFile,files=dataFile,headers=headerFile).json()
print(requestsFile)

在这里插入图片描述


原文地址:https://blog.csdn.net/xu_jing_ya/article/details/143793382

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!