1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/usr/bin/python # encoding:utf-8 import urllib2, json, urllib # 1、单位换算 data = {} data[ "appkey" ] = "your_appkey_here" data[ "from" ] = "千米" data[ "to" ] = "米" data[ "amount" ] = 5 url_values = urllib.urlencode(data) url = "https://api.jisuapi.com/unitconvert/convert" + "?" + url_values request = urllib2.Request(url) result = urllib2.urlopen(request) jsonarr = json.loads(result.read()) if jsonarr[ "status" ] ! = 0 : print (jsonarr[ "msg" ]) exit() result = jsonarr[ "result" ] print (result[ "from" ],result[ "to" ],result[ "fromename" ],result[ "toename" ],result[ "fromsymbol" ],result[ "tosymbol" ],result[ "rate" ],result[ "camount" ]) |
© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875