Python学习笔记(二十二)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习笔记(二十二)相关的知识,希望对你有一定的参考价值。
使用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 tutorial...<br>END</p>
</body></html>‘‘‘)
feed()方法可以多次调用
以上是关于Python学习笔记(二十二)的主要内容,如果未能解决你的问题,请参考以下文章