python 네이버 영화 랭킹, 타이틀, 별점 크롤링
크롬 브라우저 크롤링
검사 > copy > copy selector
크롤링 예시 : 네이버 영화 랭킹, 타이틀, 별점 가져오기
import requests
from bs4 import BeautifulSoup
from pymongo import MongoClient
client = MongoClient('localhost', 27017)
db = client.dbsparta
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')
title= soup.select_one('#old_content > table > tbody > tr:nth-child(2) > td.title > div > a')
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']
star = tr.select_one('td.point').text
doc = {
'rank': rank,
'title': title,
'star': star
}
db.movies.insert_one(doc)
Author And Source
이 문제에 관하여(python 네이버 영화 랭킹, 타이틀, 별점 크롤링), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hayeonwee/python-크롤링저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)