from builtins import print
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
artist = tr.select_one('td.info > a.artist.ellipsis').text
rank = tr.select_one('td.number').text
print(rank[0:2].strip(),title.strip(),'-', artist)
728x90
'WEB > python' 카테고리의 다른 글
[python] flask서버에 POST API, GET API만들기/ 리뷰를 작성하면 바로 밑에 뜨게 만들기 (0) | 2021.06.10 |
---|---|
[python] GET요청과 POST요청 코드 기본/ ajax코드 (0) | 2021.06.10 |
[python] 파이썬으로 크롤링하는 법 / 영화페이지 제목 크롤링하는 법 친절 설명 (0) | 2021.06.10 |
[python] pymongo, 크롤링한 데이터를 db에 저장하고 찾고 수정하기 (0) | 2021.06.10 |
[python] pymongo, robo3t 사용 기본 문법 insert/ find/ update/ delete (0) | 2021.06.10 |