반응형
beautifulsoup4
다운 받는 곳 홈페이지
google pypi.org/project/beautifulsoup4/
# pip install 패키지 다운
터미널에서 간단하게 가능!
# 터미널에서 사용가능한 명령어
pip install beautifulsoup4 # beautifulsoup4 다운받기
pip list # 다운된 (가지고 있는)모듈 확인 리스트
pip show beautifulsoup4 # beautifulsoup4 에 대한 상세정보
pip install --upgrade beautifulsoup4 # beautifulsoup4 업그레이드 (현재 최신버전)
pip uninstall beautifulsoup4 # 삭제 (y->삭제처리)
install 한 후 _ VS code에 시험삼아 쳐볼 수 있다.
from bs4 import BeautifulSoup
soup = BeautifulSoup("<p>Some<b>bad<i>HTML")
print(soup.prettify())
이걸로 이제
웹 크롤링을 할 수 있다.
728x90
반응형
'Python' 카테고리의 다른 글
인텔리제이에서 파이썬 실행 환경 구성하기 (0) | 2025.02.25 |
---|---|
유튜브 mp3음원 추출 (0) | 2025.02.22 |
[Python/OCR] Tessearact 오류 정리 (0) | 2025.02.18 |
Gradio로 AI채팅창 구현하기 (매우쉬움) (0) | 2025.02.16 |
(MAC) python3을 python 명령어로 설정하는 방법 (0) | 2025.02.14 |