1. 程式人生 > >Python學習筆記(二十二)

Python學習筆記(二十二)

ria bsp python學習 () parser rom body import ...

使用Python解析HTML文件

from html.parser import HTMLParser

class MyHTMLParser(HTMLParser):

def handle_starttag(self, tag, attrs):
print(‘<%s>‘ % tag)

def handle_endtag(self, tag):
print(‘</%s>‘ % tag)

def handle_startendtag(self, tag, attrs):
print(‘<%s/>‘ % tag)

def handle_data(self, data):
print(data)

def handle_comment(self, data):
print(‘<!--‘, data, ‘-->‘)

def handle_entityref(self, name):
print(‘&%s;‘ % name)

def handle_charref(self, name):
print(‘&#%s;‘ % name)

parser = MyHTMLParser()
parser.feed(‘‘‘<html>
<head></head>
<body>
<!-- test html parser -->
<p>Some <a href=\"#\">html</a> HTML&nbsp;tutorial...<br>END</p>
</body></html>‘‘‘)

feed()方法可以多次調用

Python學習筆記(二十二)