HTML & CSS

[46-1 BeautifulSoup] 특정 연도의 top100 노래 목록 웹스크래핑하기

Olivia-BlackCherry 2022. 10. 23. 14:39

특정 연도의 top100 노래 목록 웹스크래핑하기

 

https://www.billboard.com

 

Billboard

Music Charts, News, Photos & Video

www.billboard.com

<코드>

# time = int(input("몇 년도로 돌아가고 싶나요? 예)2022-10-20"))
URL ="https://www.billboard.com/charts/hot-100/2022-10-22/"
import requests
from bs4 import BeautifulSoup
response = requests.get(URL)
content = response.text
# print(content)

soup = BeautifulSoup(content, "html.parser")

a = soup.find_all(name="h3", class_ ="c-title a-no-trucate a-font-primary-bold-s u-letter-spacing-0021 lrv-u-font-size-18@tablet lrv-u-font-size-16 u-line-height-125 u-line-height-normal@mobile-max a-truncate-ellipsis u-max-width-330 u-max-width-230@tablet-only")
# print(a)
top_list = []
for i in a:
    b=i.getText()
    b = b.replace("\t","")
    b = b.replace("\n","")
    top_list.append(b)
print(top_list)

>>['Unholy', 'As It Was', 'I Like You (A Happier Song)', 'You Proof', "I Ain't Worried", 'Sunroof', 'Super Freaky Girl', 'The Kind Of Love We Make', 'Vegas', 'About Damn Time', 'Something In The Orange', 'Wait For U', 'Wasted On You', 'Titi Me Pregunto', "I'm Good (Blue)", 'Me Porto Bonito', 'Late Night Talking', 'Tomorrow 2', 'She Had Me At Heads Carolina', 'Heat Waves', 'Jimmy Cooks', 'Under The Influence', 'Hold Me Closer', '5 Foot 9', 'Thank God', 'Cuff It', 'Unstoppable', 'Fall In Love', 'First Class', 'Rock And A Hard Place', "Star Walkin' (League Of Legends Worlds Anthem)", 'Die For You', 'Glimpse Of Us', 'Victoria’s Secret', 'Romantic Homicide', 'Son Of A Sinner', 'Until I Found You', 'Betty (Get Money)', 'In A Minute', 'What My World Spins Around', 'Left And Right', 'Moscow Mule', 'Whiskey On You', 'Running Up That Hill (A Deal With God)', 'Big Energy', 'Wishful Drinking', 'Last Last', 'Staying Alive', 'Free Mind', "F.N.F. (Let's Go)", "Don't Come Lookin'", 'Half Of Me', 'Wait In The Truck', '2 Be Loved (Am I Ready)', 'Golden Hour', 'No Se Va', 'Billie Eilish.', 'Music For A Sushi Restaurant', 'Evergreen', 'Break My Soul', 'All Mine', 'Freestyle', 'Numb', 'Poland', 'Gatubela', 'La Bachata', 'Sleazy Flow', 'Despecha', 'Pick Me Up', 'Last Night Lonely', 'Country On', 'She Likes It', 'Calm Down', 'Tennessee Orange', 'Hotel Lobby (Unc And Phew)', 'Heyy', 'Dark Red', 'Bzrp Music Sessions, Vol. 52', 'Dah Dah DahDah', 'Neverita', 'Snap', 'To The Bone', 'Static', 'Soul', 'Good Love', 'Out In The Middle', 'Down Home', 'Truth About You', 'Gotta Move On', "World's Smallest Violin", 'Wild As Her', 'Put It On Me', 'Toxic', 'Forget Me', "What He Didn't Do", 'With A Woman You Love', 'Love You Better', 'Lokera', 'Walk']