Jaeilit

항해99_사전스터디_3주차_숙제 본문

항해99 3기

항해99_사전스터디_3주차_숙제

Jaeilit 2021. 7. 22. 19:31
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').text.strip()  //title을 받아 오면서 공백을 제거
    rank = tr.select_one('td.number').text[0:2].strip() // 텍스트 0:2 까지만 출력 / 공백제거
    artist = tr.select_one('td.info > a.artist.ellipsis').text // 텍스트 출력
    print(rank, title, artist)

select 와 select_one 을 이용하여 크롤링하여 데이터를 받아 왔습니다.

728x90