개발일지

[파이썬] 웹크롤링에 필요한 BeautifulSoup4 (BS4) 설치

ZZJJing 2021. 9. 8. 12:57

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())

 

 

이걸로 이제 

웹 크롤링을 할 수 있다.