ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 웹개발일지 #003
    웹개발 일지 2021. 12. 16. 12:10
    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=M&rtm=N&ymd=20210701',headers=headers)
    
    soup = BeautifulSoup(data.text, 'html.parser')
    
    #body-content > div.newest-list > div > table > tbody > tr:nth-child(1) > td.number
    #body-content > div.newest-list > div > table > tbody > tr:nth-child(2) > td.number
    #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
    
    trs = soup.select('#body-content > div.newest-list > div > table > tbody > tr')
    
    for song in trs:
        rank = song.select_one('td.number').text[0:2].strip()
        title = song.select_one('td.info > a.title.ellipsis').text.strip()
        artist = song.select_one('td.info > a.artist.ellipsis').text.strip()
        print(rank,title,artist)

    오전내내 시간 투자하여 겨우 이해한것 바탕으로 해내었다!!!!

     

    그치만 아직 1번정도는 더 봐야할듯 주말에 봐야지

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

    웹개발일지(서버, 클라이언트 연결) #004  (0) 2021.12.18
    개발일지 #002 (ajax활용)  (0) 2021.12.14
    개발일지 #001  (0) 2021.12.13
Designed by Tistory.