본문 바로가기
파이썬

네이버tv 라이브 동접자 가져오기 - 파이썬 , 크롤링

by zgabriel 2024. 7. 3.
728x90

selenium 을 사용하여 네이버tv 라이브의 동접자 수를 가져오는 방법이다.

from selenium import webdriver

from selenium.webdriver.chrome.service import Service

from selenium.webdriver.common.by import By

from webdriver_manager.chrome import ChromeDriverManager

options = webdriver.ChromeOptions()

options.add_argument('headless')

options.add_argument('window-size=1920x1080')

options.add_argument("disable-gpu")

driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), chrome_options=options)

driver.get("https://tv.naver.com/l/94711")

temp = driver.find_element(By.CLASS_NAME, '_livePlayCount')

print(temp.text)

driver.quit() 

 

 

반응형