requests上传post文件,python
Posted zhangphil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests上传post文件,python相关的知识,希望对你有一定的参考价值。
requests上传post文件,python
import requests
def do_post():
url = 'http://127.0.0.1:8000/file/upload'
f = open(r'文件具体路径', 'rb')
files = "file": f
r = requests.post(url, files=files)
s = requests.session()
print(s.headers)
print(r.json())
以上是关于requests上传post文件,python的主要内容,如果未能解决你的问题,请参考以下文章