웹스크래핑으로 (순위 제목 별점) 출력
웹사이트 :
결과 :
완성코드:
import requests
from bs4 import BeautifulSoup
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'}
data = requests.get('https://movie.naver.com/movie/sdb/rank/rmovie.naver?sel=pnt&date=20210829',headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
#old_content > table > tbody > tr:nth-child(3) > td.title > div > a
#old_content > table > tbody > tr:nth-child(4) > td.title > div > a
movies = soup.select('#old_content > table > tbody > tr')
for movie in movies:
a = movie.select_one('td.title > div > a')
if a is not None:
title = a.text
rank = movie.select_one('td:nth-child(1) > img')['alt']
star = movie.select_one('td.point').text
print(rank, title, star)
'스파르타 코딩 웹개발 종합반 > 3주차' 카테고리의 다른 글
3-10 Mongo DB 시작_ mongo DB-Atlas (0) | 2022.05.16 |
---|---|
3-9 DB 에 대하여.. (0) | 2022.05.16 |
3-7 웹스크래핑 (크롤링)기초_ beautifulsoup / select & select_one (0) | 2022.05.16 |
3-6 패키지 사용해보기_ Requests 라이브러리 + list/dict/함수/if/for문 (0) | 2022.05.16 |
3-5 파이썬 패키지 / 라이브러리 (0) | 2022.05.16 |