tag로 되어 있는 문서를 해석하는 모듈
page = open(파일명, 'r').read()
soup = BeautifulSoup(page, 'html.parser')
print (soup.prettify())
soup.body
soup.find('p')
soup.find_all('p') # 모두 찾기 _ list[]로 출력
soup.find_all(class_='특정 단어') #특정 단어만 찾고 싶을 때
links = soup.find_all('a')
links
for each in links:
href = each['href']
text = each.string
print(text = '->' + href)