Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 셀레니움
- 개발
- 메모장
- 자바
- 자바스크립트
- 형태소 분석기
- 데이터베이스
- jdbc
- 모바일
- 유튜브
- 파이썬
- n^2 배열 자르기
- 크롤링
- android
- 개발자
- 파일 저장
- java
- 함수형 인터페이스
- javascript
- 프로그래밍
- Programmers
- 입출력
- 세션
- 프로그래머스
- 이진 변환 반복하기
- jsp
- js
- 코딩
- MySQL
- Python
Archives
- Today
- Total
목록뷰티풀스프 (1)
개인용 복습공간
[Python] bs4 와 selenium
bs4와 셀레니움을 이용한 크롤링을 다뤄보려 한다. pip install bs4와 pip install pandas를 cmd창에서 인스톨해줘야 사용 가능하다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 from selenium import webdriver from bs4 import BeautifulSoup as bs import pandas as pd from selenium.webdriver.common.keys import Keys import time keyword = '롤' url = 'https://www.youtube.com/results?sear..
Python
2021. 6. 5. 14:23