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].text
print(section)
section_list=soup.select('section')
section=section_list[2]
section_title=section.select('h2')[0].text
print(section_title)
'코딩공부' 카테고리의 다른 글
220123-2 [코딩공부] 쥬피터 노트북에서 wordcloud 설치 오류시 해결방법 (1) | 2022.01.23 |
---|---|
220123 [코딩공부] 워드크라우드 만들기 (0) | 2022.01.23 |
220122 [코딩공부] 넷플릭스 크롤링 엑셀 저장하기 (0) | 2022.01.22 |
220121 [코딩공부] 넷플릭스 크롤링-카테고리별 프로그램명 찾기 (0) | 2022.01.22 |
220119 [코딩공부] daum 뉴스기사 타이틀 가져오기 (0) | 2022.01.19 |
댓글