本文整理匯總了Python中sgml.HTMLParser.HTMLParser.start_body方法的典型用法代碼示例。如果您正苦於以下問題:Python HTMLParser.start_body方法的具體用法?Python HTMLParser.start_body怎麽用?Python HTMLParser.start_body使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sgml.HTMLParser.HTMLParser
的用法示例。
在下文中一共展示了HTMLParser.start_body方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: start_body
# 需要導入模塊: from sgml.HTMLParser import HTMLParser [as 別名]
# 或者: from sgml.HTMLParser.HTMLParser import start_body [as 別名]
def start_body(self, attrs):
HTMLParser.start_body(self, attrs)
if not self.app.prefs.GetBoolean('parsing-html', 'honor-colors'):
return
from grailutil import conv_normstring
bgcolor = extract_keyword('bgcolor', attrs, conv=conv_normstring)
if bgcolor:
clr = self.configcolor('background', bgcolor)
if clr:
# Normally not important, but ISINDEX would cause
# these to be non-empty, as would all sorts of illegal stuff:
for hr in self.viewer.rules + self.viewer.subwindows:
hr.config(highlightbackground = clr)
self.configcolor('foreground',
extract_keyword('text', attrs, conv=conv_normstring))
self.configcolor('foreground',
extract_keyword('link', attrs, conv=conv_normstring),
'a')
self.configcolor('foreground',
extract_keyword('vlink', attrs, conv=conv_normstring),
'ahist')
self.configcolor('foreground',
extract_keyword('alink', attrs, conv=conv_normstring),
'atemp')