반응형

기상청 전국 날씨 정보(RSS) 페이지를 못 찾으시는 분들을 위해 이 글을 작성합니다.

아래 페이지로 들어가 주세요.

[(구) 날씨누리 서비스 종료]

 

들어가기  <== 옆 택스트를 눌러주세요.

동네예보 > 시간별 예보를 사용하신다면 아래 글을 봐주세요!!!


 먼저 시도를 선택한 후 꼭 선택을 눌러주세요.

이와 같이 한 후 3시간/1시간 RSS를 클릭하면 창이 뜹니다. Ctrl+C를 눌러 복사한 후 확인을 눌러주세요.


파이썬 코드가 필요하다면 아래 글을 봐주세요!!


먼저 아래 모듈을 설치해 주세요.

bs4 / BeautifulSoup

다음 이 글을 써주세요.

from urllib import request
from bs4 import BeautifulSoup

urlf = request.urlopen("링크")
# 위에 있는 링크는 RSS링크를 붙어넣기해주세요.

soup = BeautifulSoup(urlf, "html.parser")


for location in soup.select("location"):
    print("도시:", location.select_one("city").string)
    print("날씨:", location.select_one("wf").string)
    print("최저기온:", location.select_one("tmn").string)
    print("최고기온:", location.select_one("tmx").string)
    print()

 

반응형

+ Recent posts