3주차 코딩 일지(숙제)
☑️ 3주차 마지막 숙제
- 지니뮤직 사이트에서 순위 / 곡 제목 / 가수를 스크래핑 하기
- 완성 모습 예시
- 힌트
순위와 곡제목이 여백이나 다른 글씨가 나온다면 파이썬 내장 함수인 strip()을 참고하기
- 완성코드
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')
trs = soup.select('#body-content > div.newest-list > div > table > tbody > tr')
for tr in trs:
song = tr.select_one('td.info > a.title.ellipsis').text.strip()
rank = tr.select_one('td.number').text[0:2].strip()
artist = tr.select_one('td.info > a.artist.ellipsis').text
print(rank,song,artist)
✔︎ 이 부분이 막혀서 검색해서 알아보는 중
.text[0:2]가 어떤 기능을 하기에 정렬이 쫙 되는 건지 모르겠다...
나머지는 해결했는데 이 부분 막혀서 답지 참고함,,🥲
rank = tr.select_one('td.number').text[0:2].strip()
[:] 처음부터 끝까지
[start:] start오프셋부터 끝까지
[:end] 처음부터 end-1 오프셋까지
[start : end] start오프셋부터 end-1 오프셋까지
[start : end : step] step만큼 문자를 건너뛰면서, 위와 동일하게 추출
Author And Source
이 문제에 관하여(3주차 코딩 일지(숙제)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dudgus899/3주차-코딩-일지숙제저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)