アットウィキロゴ

じほj

import json
import requests
 
url = 'https://opendata.resas-portal.go.jp/api/v1/municipality/foundation/perYear?cityCode=11362&prefCode=11'
KEY = 'QTPchshTtS5JGmrEw0ELladqSbGwnKxh5KVqmZvU'
query = {'X-API-KEY': KEY}
 
r = requests.get(url, headers=query)
d = json.loads(r._content.decode('utf-8'))
x=d['result']['data']
for x1 in x:
    y1=x1['year']
    v1=x1['value']
    print(v1)
最終更新:2018年01月17日 10:57