from bs4 import BeautifulSoup
html = """
<html>
<head><title></title></head>
<body>
<h1>BeautifulSoup</h1>
<h3>스크래핑이란?</h3>
<p1>공통 주제만 쏙 뽑아주는 기능</p1>
</body></html>
"""
my_bs = BeautifulSoup(html, 'html.parser')
h1 = my_bs.html.body.h1
h3 = my_bs.html.body.h3
p1 = my_bs.html.body.p1
#.은 경로
print("h1="+h1.string)
print("h3="+h3.string)
print("p1="+p1.string)
결과물
h1=BeautifulSoup
h3=스크래핑이란?
p1=공통 주제만 쏙 뽑아주는 기능
20220212파이썬 수업 (0) | 2022.02.12 |
---|---|
azul 설치 과정 (0) | 2022.02.06 |
사이트 html 불러오고 파일 저장하기 (0) | 2022.02.05 |
기본 DOS 명령어 및 윈도우 단축키 (0) | 2022.01.15 |
검색 우선순위 사이트 추천 (0) | 2022.01.08 |