首页 区号查询 区号查询示例代码 城市查区号urllib版[Python]

城市查区号urllib版示例代码Python

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

城市查区号urllib版

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
# encoding:utf-8
 
import urllib2, json, urllib
 
# 2、城市查区号
data = {}
data["appkey"] = "your_appkey_here"
data["city"] = "金华"
 
url_values = urllib.urlencode(data)
url = "https://api.jisuapi.com/areacode/city2code" + "?" + 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"]
for val in result:
    print(val["province"],val["city"],val["town"],val["areacode"])