728x90 국비교육과정/크롤링2 [크롤링] 미니 프로젝트 #크롤링 개인 PJT 내용 # 네이버에서 오늘 서울의 날씨정보를 가져온다. ==>crawl_weather() def crawl_weather(): print("[날씨정보]") url="https://search.naver.com/search.naver?where=nexearch&sm=top_hty&fbm=1&ie=utf8&query=%EC%84%9C%EC%9A%B8+%EB%82%A0%EC%94%A8" res=requests.get(url) res.raise_for_status() soup=BeautifulSoup(res.text,"html") cur_temp=soup.find("div",{"class","temperature_text"}).get_text() print(cur_temp) min_temp=.. 2022. 5. 14. 웹 크롤링 #0513(금)_ToDo 1. Python_Crawling -크롤링기본 : 기본 태그 및 pkg/라이브러리 -네이버 홈페이지의 제목 및 실시간뉴스 크롤링 -크롤링의 데이터를 csv/txt로 저장하는 방법 2. 네이버 웹툰 크롤링 3.Agent를 이용한 쿠팡의 상품정보 데이터 크롤링 4. 이미지파일 크롤링 5.코스피시가총액의 데이터를 크롤링에 의한 DB화 6.크롤링을 통한 자신만의 PJT화 만들기 #urllib는 파이썬이 인터넷에서 데이터를 받아오는 기능들이 들어있는 패키지임 from urllib.request import urlopen url="https://www.naver.com/" html=urlopen(url) #html은 변수명 print(html.read()) #연결된 url의 정보를 읽어라 .. 2022. 5. 13. 이전 1 다음 728x90