파이썬 텔레그램 봇 만들기 -3 : 날씨 검색봇
사용할 코드 파이썬 구글 날씨 검색기(크롤러)를 만들기 : 모듈화와 핵심 팁 모듈 설치 요청 및 응답 등의 통신을 위한 requests 모듈을 설치합니다. pip install requests (crawling_blog) PS C:\Users\Desktop\pyqt\Example\begin_for_blog\2> pip install requests Collecting requests.. jvvp.tistory.com 지난 포스팅에 사용한 코드를 가지고 왔습니다. 더보기 import datetime import requests from bs4 import BeautifulSoup as bs class GoogleWeather(): url = 'https://www.google.com/search?q={}&..