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 |
Tags
- javascript
- MySQL
- Matplotlib
- Join
- NumPy
- Selenium
- 자료구조
- python
- 백준
- 알고리즘
- type hint
- Stack
- 알고리즘 스터디
- Algorithm
- 프로그래머스
- 가상환경
- 파이썬
- dataframe
- 알고리즘스터디
- openCV
- aws jupyter notebook
- queue
- 데이터시각화
- 선그래프
- 코딩테스트
- 노마드코딩
- programmers
- 정보처리기사 c언어
- String Method
- pandas
Archives
- Today
- Total
목록BeautifulSoup (1)
조금씩 꾸준히 완성을 향해
[Python] BeautifulSoup 기본 사용법 정리
BeautifulSoup에 대한 기본적인 사용법을 정리해 보겠다. ▶ 기본 셋팅 #라이브러리 import import requests from bs4 import BeautifulSoup # 네이버 웹툰 url url = "https://comic.naver.com/index" res = requests.get(url) res.raise_for_status() # html 문서를 가져와서 lxml parser 혹은 html parser를 통해서 soup 객체로 생성 soup = BeautifulSoup(res.text, 'lxml') soup = BeautifulSoup(res.text, 'html.parser') ▶ 태그명 바로 가져오기 print(soup.title.get_text()) # title..
Python/Web Scraping
2022. 9. 14. 21:13