首页 成语大全 成语大全示例代码 成语查询[Python]

成语查询示例代码[Python]

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

成语查询

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

import urllib2, json, urllib


# 1、成语查询


data = {}
data["appkey"] = "your_appkey_here"
data["chengyu"] = "叶公好龙"

url_values = urllib.urlencode(data)
url = "https://api.jisuapi.com/chengyu/detail" + "?" + 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["name"],result["pronounce"],result["content"],result["comefrom"]," ".join(result["antonym"])," ".join(result["thesaurus"]),result["example"]