from builtins import print
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.nhn?sel=pnt&date=20200303',headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
trs = soup.select('#old_content > table > tbody > tr')
for tr in trs:
a_tag = tr.select_one('td.title > div > a')
if a_tag is not None:
title = a_tag.text
rank = tr.select_one('td:nth-child(1) > img')['alt']
point = tr.select_one('td.point').text
print(rank, title, point)
728x90
'WEB > python' 카테고리의 다른 글
[python] pymongo, 크롤링한 데이터를 db에 저장하고 찾고 수정하기 (0) | 2021.06.10 |
---|---|
[python] pymongo, robo3t 사용 기본 문법 insert/ find/ update/ delete (0) | 2021.06.10 |
[python] 크롤링 기본 뼈대 (0) | 2021.06.10 |
[python] 미세먼지 api에서 값을 받아와서 동적으로 화면에 보여주기 (0) | 2021.06.09 |
[jinja2] 값 끼워넣기 / ㅇㅇ아 안녕 이라고 적었을때 ㅇㅇ에 값 끼워넣기 (0) | 2021.06.09 |