首页 近义词反义词 近义词反义词示例代码 近义词反义词查询[Python]

近义词反义词查询示例代码[Python]

作者:liuxiaojie 阅读数:1894 上传时间:2016-03-10

近义词反义词查询

#!/usr/bin/python
# encoding:utf-8

import urllib2, json, urllib


data = {}
data["appkey"] = "your_appkey_here"
data["word"] = "好像"

url_values = urllib.urlencode(data)
url = "https://api.jisuapi.com/jinyifanyi/word" + "?" + url_values
request = urllib2.Request(url)
result = urllib2.urlopen(request)
jsonarr = json.loads(result.read())

if jsonarr["status"] != u"0":
    print jsonarr["msg"]
    exit()
result = jsonarr["result"]

print result["word"],result["pinyin"],result["content"],",".join(result["jin"]),",".join(result["fan"])