스크래핑이란?
from bs4 import BeautifulSoup html = """ BeautifulSoup 스크래핑이란? 공통 주제만 쏙 뽑아주는 기능 """ 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=공통 주제만 쏙 뽑아주는 기능
<개인공부>
2022. 2. 5. 15:29