本文整理匯總了Python中xmllib.XMLParser方法的典型用法代碼示例。如果您正苦於以下問題:Python xmllib.XMLParser方法的具體用法?Python xmllib.XMLParser怎麽用?Python xmllib.XMLParser使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類xmllib
的用法示例。
在下文中一共展示了xmllib.XMLParser方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def __init__(self, html=0, target=None, encoding=None):
self.__builder = ElementTree.TreeBuilder()
if html:
import htmlentitydefs
self.entitydefs.update(htmlentitydefs.entitydefs)
xmllib.XMLParser.__init__(self)
##
# Feeds data to the parser.
#
# @param data Encoded data.
示例2: feed
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def feed(self, data):
xmllib.XMLParser.feed(self, data)
##
# Finishes feeding data to the parser.
#
# @return An element structure.
# @defreturn Element
示例3: close
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def close(self):
xmllib.XMLParser.close(self)
return self.__builder.close()
示例4: __init__
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def __init__(self, html=0):
self.__builder = ElementTree.TreeBuilder()
if html:
import htmlentitydefs
self.entitydefs.update(htmlentitydefs.entitydefs)
xmllib.XMLParser.__init__(self)
##
# Feeds data to the parser.
#
# @param data Encoded data.
示例5: __init__
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def __init__(self, **kw):
apply(xmllib.XMLParser.__init__, (self,), kw)
self.vendors = []
self.table_stack = []
self.re_var = re.compile(r"\${(.*?)}")
示例6: test_simple
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def test_simple(self):
parser = xmllib.XMLParser()
for c in testdoc:
parser.feed(c)
parser.close()
示例7: test_default_namespace
# 需要導入模塊: import xmllib [as 別名]
# 或者: from xmllib import XMLParser [as 別名]
def test_default_namespace(self):
class H(xmllib.XMLParser):
def unknown_starttag(self, name, attr):
self.name, self.attr = name, attr
h=H()
h.feed(nsdoc)
h.close()
# The default namespace applies to elements...
self.assertEquals(h.name, "URI foo")
# but not to attributes
self.assertEquals(h.attr, {'attr':'val'})