반응형
[2022.01.12] How to solve DeprecationWarning on jupyter notebook?
해당 게시글은 데이터를 크롤링 할 때 아래와 같은 경고창을 없애기 위한 방법이다.
<ipython-input-17-a7be9bf35be8>:9: DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome('C:\/chromedriver.exe') # 제어하기 위해 변수 선언
-> selenium을 jupyter notebook 에서 실행 하면 webdriver는 정상적으로 실행 되는데 경고창이 자꾸 발생 한다.
해결 방법
import warnings
warnings.filterwarnings(action='ignore')
-> 위의 코드 두줄 실행 하고 다시 실행하면 경고창이 사라진다.
반응형
'Data > Crawling' 카테고리의 다른 글
[2022.01.12] 잡플래닛 특정기업 면접 데이터 크롤링 (0) | 2022.01.12 |
---|---|
[2021.08.11] 인턴 +163 How to execute Python code in the background on Linux(Ubuntu20.04)? (0) | 2021.08.11 |
[2021.07.15] 인턴 +136 특정 사이트(ㅅㅇㅈㅇㅈㅂㅁㅅㅎㅎ) crawling 실습9 on Linux (0) | 2021.07.15 |
[2021.07.15~19] 인턴 +136 특정 사이트(ㅅㅇㅈㅇㅈㅂㅁㅅㅎㅎ) crawling 실습9 on 로컬PC (0) | 2021.07.15 |
[2021.07.14~19] 인턴 +135 특정 사이트(?-talk) crawling 실습7 on Linux(Ubuntu) (0) | 2021.07.14 |
댓글