728x90 크롤링9 네이버tv 라이브 동접자 가져오기 - 파이썬 , 크롤링 selenium 을 사용하여 네이버tv 라이브의 동접자 수를 가져오는 방법이다. from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.common.by import Byfrom webdriver_manager.chrome import ChromeDriverManageroptions = webdriver.ChromeOptions()options.add_argument('headless')options.add_argument('window-size=1920x1080')options.add_argument("disable-gpu")driver = webdriver.Chr.. 2024. 7. 3. selenium 크롬창 띄우지 않고 크롤링하기 - 파이썬 옵션을 주지 않고 실행하면 크롬창이 하나 출력되고 크롤링이 된다. 이 새로운 창을 띄우지 않고 실행하는 방법이다. from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.common.by import Byfrom webdriver_manager.chrome import ChromeDriverManageroptions = webdriver.ChromeOptions()options.add_argument('headless')options.add_argument('window-size=1920x1080')options.add_argument("disable-gpu")dr.. 2024. 7. 2. 네이버tv 재생수 가져오기 - 파이썬, 크롤링 네이버tv 화면에 표시되는 재생 수를 크롤링하여 가져오기재생 수는 play 아이디를 사용하는 span 태그안에 있다from urllib.request import urlopenfrom bs4 import BeautifulSoupimport retry:html = urlopen("https://tv.naver.com/v/24002047/list/67096")bsObj = BeautifulSoup(html.read(), "html.parser")nameList = bsObj.findAll("span", {"class": "play"})for name in nameList: numbers = re.sub(r'[^0-9]', '', name.get_text()) print(numbers)except H.. 2024. 7. 2. 이전 1 2 다음 반응형