I have tried parsing the file using lxml iterparse since the actual file would be huge. I have the following code:

import xml.etree.cElementTree as etree
filename = r'D:\test\Books.xml'
context = iter(etree.iterparse(filename, events=('start', 'end')))
_, root = next(context)
for event, elem in context:
    if event == 'start' and elem.tag == '{http://www.book.org/Book-19200/biblography}Book':
        print(etree.dump(elem))
        root.clear()

And my XML looks like this:

<Books>
    <Book xmlns="http://www.book.org/Book-19200/biblography"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    ISBN="519292296"
    xsi:schemaLocation="http://www.book.org/Book-19200/biblography ../../book.xsd 
    http://www.w3.org/2000/12/xmldsig# ../../xmldsig-core-schema.xsd">
        <Detail ID="67">
            <BookName>Code Complete 2</BookName>
            <Author>Steve McConnell</Author>
            <Pages>960</Pages>
            <ISBN>0735619670</ISBN>        
            <BookName>Application Architecture Guide 2</BookName>
            <Author>Microsoft Team</Author>
            <Pages>496</Pages>
            <ISBN>073562710X</ISBN>
        </Detail>
    </Book>
    <Book xmlns="http://www.book.org/Book-19200/biblography"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    ISBN="519292296"
    xsi:schemaLocation="http://www.book.org/Book-19200/biblography ../../book.xsd 
    http://www.w3.org/2000/12/xmldsig# ../../xmldsig-core-schema.xsd">
        <Detail ID="87">
            <BookName>Rocking Python</BookName>
            <Author>Guido Rossum</Author>
            <Pages>960</Pages>
            <ISBN>0735619690</ISBN>
            <BookName>Python Rocks</BookName>
            <Author>Microsoft Team</Author>
            <Pages>496</Pages>
            <ISBN>073562710X</ISBN>
        </Detail>
    </Book>
</Books>

Running the above generates something like this:

<ns0:Book xmlns:ns0="http://www.book.org/Book-19200/biblography" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins
ance" ISBN="519292296" xsi:schemaLocation="http://www.book.org/Book-19200/biblography ../../book.xsd      http:/
www.w3.org/2000/12/xmldsig# ../../xmldsig-core-schema.xsd">
        <ns0:Detail ID="67">
            <ns0:BookName>Code Complete 2</ns0:BookName>
            <ns0:Author>Steve McConnell</ns0:Author>
            <ns0:Pages>960</ns0:Pages>
            <ns0:ISBN>0735619670</ns0:ISBN>
            <ns0:BookName>Application Architecture Guide 2</ns0:BookName>
            <ns0:Author>Microsoft Team</ns0:Author>
            <ns0:Pages>496</ns0:Pages>
            <ns0:ISBN>073562710X</ns0:ISBN>
        </ns0:Detail>
    </ns0:Book>

How do I ensure I print the xml fragment without the ns0 prefix? I am using Python 3.

有帮助吗?

解决方案

Add

etree.register_namespace("", "http://www.book.org/Book-19200/biblography")

to your program. This function registers a namespace prefix to be used for serialization (in this case it means no prefix).

Reference: http://docs.python.org/3/library/xml.etree.elementtree.html#xml.etree.ElementTree.register_namespace

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top