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
- 데이터시각화
- Stack
- Join
- aws jupyter notebook
- String Method
- MySQL
- 선그래프
- Algorithm
- javascript
- dataframe
- Matplotlib
- queue
- 파이썬
- 알고리즘스터디
- 백준
- 자료구조
- 코딩테스트
- 프로그래머스
- NumPy
- openCV
- 가상환경
- Selenium
- 알고리즘
- 정보처리기사 c언어
- 노마드코딩
- pandas
- 알고리즘 스터디
- type hint
- programmers
- python
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