1 Star 0 Fork 0

saber110/wx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
turing.py 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
saber110 提交于 2018-09-11 15:29 . 初始化仓库
#!/usr/bin python
# -*- coding:utf-8 -*- #中文编码
import sys
reload(sys) # 不加这部分处理中文还是会出问题
sys.setdefaultencoding('utf-8')
import requests
import json
from collections import defaultdict
def tree():
return defaultdict(tree)
url = "http://openapi.tuling123.com/openapi/api/v2"
secretcode = "517dabbc2dde2466086ab2bf97cb5d07"
param = defaultdict(tree)
param['reqType'] = 0
param['userInfo']['apiKey'] = secretcode
param['userInfo']['userId'] = 98645788
param['perception']['inputText']['text'] = "你好"
headers = {'Content-Type': 'application/json'}
response = requests.post(url=url, headers=headers, data = json.dumps(param))
print json.loads(response.text) if response.status_code == 200 else ""
resultList = json.loads(response.text)['results']
str1=''
for i,val in enumerate(resultList):
str1 = str1 + str(resultList[i]['values']['text'])
print str1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/saber456789/wx.git
git@gitee.com:saber456789/wx.git
saber456789
wx
wx
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385