웹문서 예제
html_doc = """
<title>The Dormouse's story</title>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
파이썬 실행
from bs4 import BeautifulSoup soup = BeautifulSoup(html_doc, 'html.parser') print(soup.prettify())
결과
<html>
<head>
<title>
The Dormouse's story
</title>
</head>
<body>
<p class="title">
<b>
The Dormouse's story
</b>
</p>
<p class="story">
Once upon a time there were three little sisters; and their names were
<a class="sister" href="http://example.com/elsie" id="link1">
Elsie
</a>
,
<a class="sister" href="http://example.com/lacie" id="link2">
Lacie
</a>
and
<a class="sister" href="http://example.com/tillie" id="link3">
Tillie
</a>
;
and they lived at the bottom of a well.
</p>
<p class="story">
...
</p>
</body>
</html>
세상의 이슈, 2018년 4월 (0) | 2018.04.03 |
---|---|
파이썬 프로그래밍 요약노트 (0) | 2017.12.26 |
[파이썬 Python] BeautifulSoup 설치 (0) | 2017.12.25 |
[파이썬 Python] SyntaxHighlighter 7가지 테마 종류와 적용방법 (0) | 2017.12.24 |
[엑셀 Tip] 수식계산, 자동으로 안될때 (0) | 2016.10.29 |
댓글 영역