PythonでのJSON取り扱いメモ。あまり扱ったことがなかったのでメモをする。
詳細を拾うには、json入り変数[項目名][項目名][項目名]で絞っていけばOK
response = requests.get(endpoint, headers=headers, params=params)
data = response.json()
print(data[‘items’][0][‘summary’][‘move’][‘to_time’])
PythonでのJSON取り扱いメモ。あまり扱ったことがなかったのでメモをする。
詳細を拾うには、json入り変数[項目名][項目名][項目名]で絞っていけばOK
response = requests.get(endpoint, headers=headers, params=params)
data = response.json()
print(data[‘items’][0][‘summary’][‘move’][‘to_time’])
コメント