本文整理汇总了Python中BaseHTMLProcessor.BaseHTMLProcessor类的典型用法代码示例。如果您正苦于以下问题:Python BaseHTMLProcessor类的具体用法?Python BaseHTMLProcessor怎么用?Python BaseHTMLProcessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BaseHTMLProcessor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: end_a
def end_a(self):
if self._start_a:
method = getattr( self, self._start_a.__name__.replace('start','end'), None )
if method:
method()
else:
BaseHTMLProcessor.unknown_endtag(self,"a")
示例2: reset
def reset(self,query):
#query is the list of keywords,eg:['yu','aoi']
query=[escape(word) for word in query]
words='|'.join(query)
self.Q_PATTERN=re.compile(r'(?P<query>' + words + r')',re.I)
self.highlight=0
BaseHTMLProcessor.reset(self)
示例3: reset
def reset(self):
self._start_a = None
self.methodQueue = []
self.divClassStack = []
self.articleRec = []
BaseHTMLProcessor.reset(self)
示例4: reset
def reset(self):
# extend (called from __init__ in ancestor)
# Reset all data attributes
self.verbatim = 0
BaseHTMLProcessor.reset(self)
示例5: reset
def reset(self):
'''extend (called from __init__ in ancestor)'''
self.verbatim = 0
BaseHTMLProcessor.reset(self)
示例6: unknown_endtag
def unknown_endtag(self, tag):
self.flushcolor()
BaseHTMLProcessor.unknown_endtag(self, tag)
if self.needcolor:
self.colorindex = len(self.pieces)
示例7: unknown_starttag
def unknown_starttag(self, tag, attrs):
self.flushcolor()
BaseHTMLProcessor.unknown_starttag(self, tag, attrs)
if self.needcolor:
self.colorindex = len(self.pieces)
示例8: flushcolor
def flushcolor(self):
if self.colorindex:
buffer = "".join(self.pieces[self.colorindex:])
self.pieces = self.pieces[:self.colorindex]
self.colorindex = 0
BaseHTMLProcessor.handle_data(self, self.HTMLfontify(buffer))
示例9: reset
def reset(self):
BaseHTMLProcessor.reset(self)
self.colorindex = 0
self.needcolor = 0
示例10: __init__
def __init__(self, usefonts=0):
BaseHTMLProcessor.__init__(self)
self.usefonts = usefonts
示例11: __init__
def __init__(self, basedir):
BaseHTMLProcessor.__init__(self)
self.basedir = basedir
示例12: BaseHTMLProcessor
import urllib
from BaseHTMLProcessor import BaseHTMLProcessor
sock = urllib.urlopen("../Programmer/html/examples.html")
htmlSource = sock.read()
sock.close()
parser = BaseHTMLProcessor()
parser.feed(htmlSource)
f = open('../Programmer/html/examples1.html', 'w')
f.write(parser.output())
示例13: BaseHTMLProcessor
#! /usr/bin/python
htmlSource = """
<html>
<head>
<title>Test page</title>
</head>
<body>
<ul>
<li><a href=index.html>Home</a></li>
<li><a href=toc.html>Table of contents</a></li>
<li><a href=history.html>Revision history</a></li>
</body>
</html>
"""
import sys
sys.path.append("../..")
from BaseHTMLProcessor import BaseHTMLProcessor
parser = BaseHTMLProcessor()
parser.feed(htmlSource)
print parser.output()
示例14: start_a
def start_a(self,attrs):
if self._start_a:
self._start_a(attrs)
else:
BaseHTMLProcessor.unknown_starttag(self,"a",attrs)
示例15:
#!/usr/bin/python
'''
htmlQuo.py
@author ffmmx
'''
from BaseHTMLProcessor import BaseHTMLProcessor
if __name__=='__main__':
htmlSource='''
<html>
<head>
<title>Test page</title>
</head>
<body>
<ul>
<li><a href=index.html>Home</a></li>
<li><a href=toc.html>Table of contents</a></li>
<li><a href=history.html>Revision history</a></li>
</body>
</html>
'''
parser=BaseHTMLProcessor()
print parser.feed(htmlSource)