python如何用requests传送json格式数据

import requests
import json
url = 'http://192.168.122.45:5001/analyze'
data = {
    'key': 'emotion',
    'data': 'img'
}
## headers中添加content-type参数,指定为json格式
headers = {'Content-Type': 'application/json'}
## post时,用json包将data字典形式的参数转换成json格式。
response = requests.post(url='url', headers=headers, data=json.dumps(data))

你可能感兴趣的:(web前端,flask)