15

I want to parse an XML file and extract the nodes that I am interested in if the nodes contain a specific string (keyword). But to use find and finall functions, first I decided to lower case the list of the keywords that I have, as well as the XML file. Here is code.

import xml.etree.ElementTree as ET
from xml.etree.ElementTree import tostring
import csv
tree=ET.parse('/Users/m/Documents/dr.xml')
**t = tostring(tree)**
t = t.lower()
tree= ET.fromstring(t).......

I get error on this line:

t = tostring(tree)

Any idea how this can be fixed? Thx

1 Answer 1

22

You need to parse it from the root node

import xml.etree.ElementTree as ET
from xml.etree.ElementTree import tostring

tree = ET.parse('t.xml')
tree = tree.getroot()
t = tostring(tree)
t = t.lower()
tree = ET.fromstring(t)
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.