url ='http://localhost:5000/xxx'
data ={"text":text}
headers ={"Content-Type":"application/json,charset=utf8"}
res = requests.post(url=url,json=data,headers=headers)if res.status_code ==200:#处理中文乱码
res =str(res.content, encoding='utf-8').replace('\n','')
res = json.loads(res)