[챗봇 토이프로젝트] 파이썬으로 웹크롤링하기
해당 챗봇은 지역명을 사용자로부터 입력받으면, 해당 지역의 '미세먼지 농도'를 알려준다! 이를 위해서 먼저 파이썬으로 네이버 미세먼지 정보를 크롤링해야한다! 카카오 오픈빌더 승인이 아직 나지 않았기 때문에 나머지 과정은 추후에 올리도록 하겠다! from urllib.request import urlopen, Request from bs4 import BeautifulSoup import urllib import bs4 먼저 이렇게 모듈들을 import해준다 location=input() enc_location=urllib.parse.quote(location+'미세먼지') url='https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&q..
baby steps/토이프로젝트
2020. 3. 7. 16:33