셀레니움
-
[python / 셀레니움] 데이터 크롤링 코드 공유 ( 공공벤치 데이터 )python 데이터 분석 2024. 3. 16. 19:01
코드 ### 첫 페이지 크롤링 from selenium.webdriver.common.keys import Keys import pandas as pd from selenium.webdriver import ActionChains from selenium.common.exceptions import NoSuchWindowException from selenium.webdriver.support.ui import WebDriverWait url = "https://www.google.com/maps/d/viewer?mid=10VltzAd9Sy6kz4kXI6gTlxXDNH5qU84&ll=37.616648340000026%2C127.00119020000002&z=12" result = urlopen(url) ..