반응형
출처
Beautiful Soup Documentation(https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
설치
pip install beautifulSoup4
pip install lxml
사용법
1.html.parser
import requests
from bs4 import BeautifulSoup as bs
URL = "http://kis6473.tistory.com"
html = requests.get(URL)
soup = bs(html.text, "html.parser")
print(soup)
2.lxml parser
import requests
from bs4 import BeautifulSoup as bs
URL = "http://kis6473.tistory.com"
html = requests.get(URL)
soup = bs(html.content, "lxml")
print(soup)
반응형
'IT > Python' 카테고리의 다른 글
[리눅스] mod_wsgi를 활용한 장고 아파치 연동 (0) | 2019.03.19 |
---|---|
[윈도우] 파이썬 가상환경 설치와 장고 프로젝트 생성 (4) | 2018.05.20 |
파이썬3 환경변수 등록 (0) | 2018.05.20 |
우분투환경 파이썬3 한글 형태소 분석기 KoNLPy 설치 및 사용예제 (0) | 2018.05.20 |