本文整理汇总了Python中common.Common.findUnit方法的典型用法代码示例。如果您正苦于以下问题:Python Common.findUnit方法的具体用法?Python Common.findUnit怎么用?Python Common.findUnit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common.Common
的用法示例。
在下文中一共展示了Common.findUnit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parseEntries
# 需要导入模块: from common import Common [as 别名]
# 或者: from common.Common import findUnit [as 别名]
def parseEntries(contents):
"""
Return entries listed in given wikipage.
:param contents: wikicode of page with lists
:return: list of entry-dict items
"""
units = []
header_t = u'{{user:Lokal Profil/LSH2'
row_t = u'{{User:Lokal Profil/LSH3'
while(True):
table, contents, lead_in = Common.findUnit(contents, header_t, u'|}')
if not table:
break
while(True):
unit, table, dummy = Common.findUnit(table, row_t, u'}}',
brackets={u'{{': u'}}'})
if not unit:
break
params = {u'name': '',
u'more': '',
u'frequency': '',
u'technique': '',
u'creator': '',
u'link': '',
u'category': '',
u'other': ''
}
while(True):
part, unit, dummy = Common.findUnit(
unit, u'|', u'\n', brackets={u'[[': u']]', u'{{': u'}}'})
if not part:
break
if u'=' in part:
part = part.replace(u'<small>', '').replace(u'</small>', '')
part = part.strip(' \n\t')
# can't use split as coord uses second equality sign
pos = part.find(u'=')
key = part[:pos].strip()
value = part[pos + 1:].strip()
if value:
if (key) in params.keys():
params[key] = value.split(u'/')
else:
print u'Unrecognised parameter: %s = %s' \
% (key, value)
units.append(params.copy())
# end units
# end tables
return units