본문 바로가기
웹 프로그래밍(풀스택-->python)

30. 패키지 사용해보기

by 백엔드개발자0107 2021. 4. 19.

 

 

python requests 패키지는 구글링을 해보면 금방 나온다.

위 같은 경우는 미리 만들어 놓은 거니 참고만 하자.!

import requests # requests 라이브러리 설치 필요

r = requests.get('http://openapi.seoul.go.kr:8088/6d4d776b466c656533356a4b4b5872/json/RealtimeCityAir/1/99')
rjson = r.json()

gus = rjson['RealtimeCityAir']['row']

for gu in gus:
	print(gu['MSRSTE_NM'], gu['IDEX_MVL'])

rjson = r.json() 은 api를 json화 시키는 메소드이다.