摘要: 1.文件上传 代码: import requests files={'file':open('favicon.ioc','rb')}#将之前保存的图标上传 r=requests.post("http://httpbin.org/post",files=files) print(r.text) 运行结 阅读全文
posted @ 2020-12-16 18:18 Hao_ran 阅读(271) 评论(0) 推荐(0) 编辑