본문 바로가기

Study/스파르타 코딩 클럽

3주차 수강 완료

728x90
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://www.genie.co.kr/chart/top200?ditc=D&ymd=20200403&hh=23&rtm=N&pg=1',headers=headers)

soup = BeautifulSoup(data.text, 'html.parser')
trs = soup.select('#body-content > div.newest-list > div > table > tbody > tr')

for tr in trs:
    title = tr.select_one('td.info > a.title.ellipsis')
    rank = tr.select_one('td.number')
    artist = tr.select_one('td.info > a.artist.ellipsis')
    print(rank.text[0:2].strip(), title.text.strip(), artist.text.strip())

숙제 : 지니 크롤링

728x90
LIST

'Study > 스파르타 코딩 클럽' 카테고리의 다른 글

2주차 수강완료  (0) 2021.06.20
1주차 수강완료  (0) 2021.06.13
왕초보 시작반 내일 찐 개강‼  (0) 2021.06.06