#!/usr/bin/python
# encoding:utf-8
import urllib2, json, urllib
# 2.电码转中文
data = {}
data["appkey"] = "your_appkey_here"
data["code"] = "2817,6643,2422,2207"  # 用,分割
url_values = urllib.urlencode(data)
url = "http://api.binstd.com/chinesecode/chinese" + "?" + 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"]
for val in result:
    print val["code"], val["character"]