我尝试编写使用xsl样式表解析xml文件并将其转换为html的warpper。
对于损坏的xml输入文件,我得到了异常:

Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Python27\lib\lib-tk\Tkinter.py", line 1410, in __call__
    return self.func(*args)
  File "C:\Users\USER\Desktop\raportowanie\topsurv raport_beta01\_newest\transmutation     for trimble\testing_transmutation_v.0.6.2.py", line 712, in btnConvertClick
    doc = libxml2.parseFile(filename)
  File "C:\Python27\lib\site-packages\libxml2.py", line 1279, in parseFile
    if ret is None:raise parserError('xmlParseFile() failed')
parserError: xmlParseFile() failed

并尝试没有成功:
try:
    doc = libxml2.parseFile(filename)
except (libxml2.parserError, TypeError):
    print 'error'

实际上,我没有异常,解析器的行为也就好像成功了一样。
我想请您帮忙。

最佳答案

我建议使用BeautifulSoup,因为它能够解析格式错误的xml。

实际上,功能列表中的第一个是:

09-05 21:54