💡 응답을 원하는 API주소로 요청을 보내는 것을 “API를 call한다” 라고 말하는데, 이때 우리는 requests 모듈을 사용한다.
import request
city = "Seoul"
apikey = "apikey"
#문자열 안 변수 집어넣기위해 파이썬의 f-string을 이용한다. 변수 넣고 싶으면 문자열 안에 중괄호 {}를 넣는다.
api = f"[http://api.openweathermap.org/data/2.5/weather?q=](http://api.openweathermap.org/data/2.5/weather?q=){city}&appid={apikey}"
result = requests.get(api)
✅ 우리가 원하는 정보만 뽑아오려면?
스플릿으로 뽑아 온다.
파이썬의 제이슨 모듈을 사용한다. ( 파이썬이 기본으로 제공하는 모듈)
print(data["name"],"의 날씨입니다.")
print("날씨는 ",data["weather"][0]["main"],"입니다.")
print("현재 온도는 ",data["main"]["temp"],"입니다.")
print("하지만 체감 온도는 ",data["main"]["feels_like"],"입니다.")