IT_developers

Python 데이터 분석(주피터노트북) - Pandas(기타-크롤링) 본문

Python

Python 데이터 분석(주피터노트북) - Pandas(기타-크롤링)

developers developing 2022. 11. 8. 12:00

데이터 프레임 다른 포맷 형식으로 저장

라이브러리 : import pandas as pd

 

 

Youtube 댓글 크롤링 후 데이터 프레임 생성

샐레니움 설치 필요 : pip install selenium 설치

 

Anaconda prompt 관리자 권한 실행 후 설치

  • pip install selenium
  • pip install beautifulsoup4
  • pip install lxml
  • pip install requests
  • pip install webdriver-manager

 

※ 추가 설치 방법

  • 아나콘다 전용 설치
    • conda install -c anaconda selenium
  • 주피터 노트북에서 직접 설치
    • ! pip install selenium

Chromedriver.exe 파일 다운

Comments