本文整理汇总了Python中tools.Tools.unicode_safe方法的典型用法代码示例。如果您正苦于以下问题:Python Tools.unicode_safe方法的具体用法?Python Tools.unicode_safe怎么用?Python Tools.unicode_safe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tools.Tools
的用法示例。
在下文中一共展示了Tools.unicode_safe方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_fix_stage
# 需要导入模块: from tools import Tools [as 别名]
# 或者: from tools.Tools import unicode_safe [as 别名]
def get_fix_stage(self):
tool = Tools()
fDs = self.root.findall(".//"+self.prefix+"stage")
result = []
for f in fDs:
if ("{http://www.germanistik.uni-wuerzburg.de/lehrstuehle/computerphilologie/dramenanalyse}fixed-stage" in f.attrib):
result.append(tool.unicode_safe(f.text))
#print tool.unicode_safe(f.text)
return result
示例2: get_all_speech
# 需要导入模块: from tools import Tools [as 别名]
# 或者: from tools.Tools import unicode_safe [as 别名]
def get_all_speech(self):
tools = Tools()
fDs = self.root.findall(".//"+self.prefix+"speaker")
result = []
for f in fDs:
#jump empty speakers
if f.text is not None:
speaker = tools.unicode_safe(f.text)
speaker_id = f.attrib["{http://www.w3.org/XML/1998/namespace}id"]
sps=self.get_sp_by_speaker_id(speaker_id)
for sp in sps:
speechs = self.get_all_speech_by_speaker(sp)
speech = Speech(speaker,speaker_id,speechs)
result.append(speech)
return result
示例3: content_joiner
# 需要导入模块: from tools import Tools [as 别名]
# 或者: from tools.Tools import unicode_safe [as 别名]
def content_joiner(self):
tools = Tools()
text =""
for c in self.content:
text = text + tools.unicode_safe(c.text) + "\n"
return text