본문 바로가기
개발일지

지니뮤직 크롤링

by crescent88 2022. 5. 11.

음악순위 페이지의 

순위 , 곡명, 가수명 을 크롤링 해보았다. 

이번에도 제시한 답안과 달랐지만 크게 문제되지 않는 선에서 해결했다. 

(이번에는 어쩌면 내가 더 나았을지도 모른다)

해결할 수 있다는 자신감이 붙는다. 

재밌다. 

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

soup = BeautifulSoup(data.text, 'html.parser')

#body-content > div.newest-list > div > table > tbody > tr:nth-child(1) > td.info > a.title.ellipsis
#body-content > div.newest-list > div > table > tbody > tr:nth-child(1) > td.info > a.artist.ellipsis

musics = soup.select('#body-content > div.newest-list > div > table > tbody > tr')

for music in musics:
    rank = music.select_one('td.number').text.split(' ')[0].strip()
    title = music.select_one('td.info > a.title.ellipsis').text.strip()
    name = music.select_one('td.info > a.artist.ellipsis').text
    print(rank, title, name)

'개발일지' 카테고리의 다른 글

첫 웹서비스 개시!!!(스파르타)  (0) 2022.05.17
나홀로 쇼핑몰(스파르타)  (0) 2022.05.14
실시간 환율(스파르타)  (0) 2022.05.09
단일품 판매 웹페이지(스파르타)  (0) 2022.05.05
GUI 텍스트 위젯  (0) 2022.04.28