使用未注册的命名空间解析xml文件

时间:2015-09-18 01:14:01

标签: python xml xml-parsing

我有一个xml文件,结构如下:

<mc:AlternateContent xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
    <mc:Choice xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" Requires="a14">
        ....

我已使用以下方式注册了 Choice 命名空间:

ET.register_namespace("a14", "http://schemas.microsoft.com/office/drawing/2010/main")

我还检查了ElementTree的命名空间映射以确保它已注册(它是),但我仍然无法访问Choice标记。有什么想法吗?

0 个答案:

没有答案