경돌이 코드 - weatherUpdate.py
weatherUpdate.py 1234567891011121314151617181920212223242526272829303132333435# -*- coding: utf-8 -*-import requestsimport osfrom bs4 import BeautifulSoup #현재날씨 요청url = "https://search.daum.net/search"params={ 'w' : 'tot', 'q' : '광교동 날씨'}res = requests.get(url, params = params)html = res.text #날씨 파트만 추출soup = BeautifulSoup(html, "lxml")weath = soup.find("div",{"class" : "cont_today"}) #현재기온 추출no..