from selenium import webdriver
from selenium.webdriver.chrome.service import Service
s = Service('c:/users/smile/desktop/chromedriver.exe')
driver = webdriver.Chrome(service=s)
url='https://www.netflix.com/ph/browse/genre/839338'
driver.get(url)
html=driver.page_source
from bs4 import BeautifulSoup
soup=BeautifulSoup(html,'html.parser')
section_list=soup.select('section')
section=section_list[2]
section_title=section.select('h2')[0].text.replace('Explore more','')
print(section_title)
program_list=section.select('li')
for program in program_list:
print(program.text)
'코딩공부' 카테고리의 다른 글
220120 [코딩공부] 넷플릭스크롤링 영화제목가져오기 (0) | 2022.01.22 |
---|---|
220122 [코딩공부] 넷플릭스 크롤링 엑셀 저장하기 (0) | 2022.01.22 |
220119 [코딩공부] daum 뉴스기사 타이틀 가져오기 (0) | 2022.01.19 |
220118 [코딩공부] DeprecationWarning: executable_path has been deprecated, please pass in a Service object 오류 해결 공부 (0) | 2022.01.18 |
책 중요부분 요약 [1년안에 AI빅데이터 전문가가 되는 법] 서대호저 (0) | 2020.09.01 |
댓글