XML

BackEnd/Automation Program with Python

[파이썬 다양한 데이터 형식 가공] XML 기상청 날씨 데이터 지역별 파싱 및 출력

기상청 xml 데이터 지역별 시간대별 최고 최저 온도 수집 import sys import io import urllib.request as req from bs4 import BeautifulSoup import os.path # 다운로드 url url = 'https://www.kma.go.kr/weather/forecast/mid-term-rss3.jsp?stnId=108' savename = 'C:/forecast.xml' if not os.path.exists(savename): req.urlretrieve(url, savename) # Beautifulsoup 파싱 xml = open(savename, 'r', encoding="utf-8").read() soup = BeautifulSoup(..

달려라 국나뇽
'XML' 태그의 글 목록