Python的requests上传post数据块json
Posted zhangphil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的requests上传post数据块json相关的知识,希望对你有一定的参考价值。
Python的requests上传post数据块json
import requests
import json
json_obj =
'type': 'sometype',
'data': 999
headers = 'Content-Type': 'application/json'
response = requests.post(url='上传的url地址', headers=headers, data=json.dumps(json_obj))
print(response.json())
以上是关于Python的requests上传post数据块json的主要内容,如果未能解决你的问题,请参考以下文章