[웹 개발] 3주차: Quiz 웹스크랩핑 연습

최미혜·2022년 4월 1일
0

간단한 크롤링 하는 것도 생각보다 낑낑거렸다..
퀴즈 풀 때 내가 짠 코드_!

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')

rank = 1
for tr in trs:
    a_tag = tr.select_one('td.title > div > a')
    star = tr.select_one('td.point')
    if a_tag is not None:
        title = a_tag.text
        star = star.text
        print(rank, title, star)
        rank += 1

그리고 이건 정답 코드

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:
        rank = tr.select_one('td:nth-child(1) > img')['alt']
        title = a_tag.text
        star = tr.select_one('td.point').text
        print(rank, title, star)

너무 쉬운 방법으로 해버리네,,,ㅜㅡㅜ
더 깔끔하게 코드 짜고 싶다..!
열심히 연습하길 :)

0개의 댓글