Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 한빛미디어
- SQL
- 서평
- 시각화
- 파이썬 시각화
- 통계학
- 딥러닝
- Blog
- 서평단
- matplotlib
- Linux
- Tistory
- 독후감
- Pandas
- 티스토리
- 리눅스
- MySQL
- Google Analytics
- Visualization
- 텐서플로
- 파이썬
- 한빛미디어서평단
- Ga
- python visualization
- 월간결산
- Python
- tensorflow
- 블로그
- 매틀랩
- MATLAB
Archives
- Today
- Total
목록requests (1)
pbj0812의 코딩 일기
[자동화] BeautifulSoup을 사용한 유투브 동영상 URL 추출
0. 목표 - 유투브 동영상 URL 추출 - selenium은 너무 느림 1. 실습 1) library 호출 import requests import pandas as pd from bs4 import BeautifulSoup 2) URL 추출 keyword = '미르방' req = requests.get('https://www.youtube.com/results?search_query=' + keyword) html = req.text soup = BeautifulSoup(html, 'html.parser') my_titles = soup.select( 'h3 > a' ) title = [] url = [] for idx in my_titles: title.append(idx.text) url.appe..
빅데이터/자동화
2020. 5. 24. 19:01