ElementTree is a Python library for creating and parsing XML.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

Python Elementtree SubElement incorrect

I am trying to add a SubElement to a separate SubElement and I can't figure out why the output xml is coming out incorrectly. import xml.etree.cElementTree as ET def CreateXml(list): Channel = ...
0
votes
1answer
12 views

How to extract text in nested xml after closing of one tag in python using xml.etree.ElementTree

I want to extract all text in xml document, and I am having a problem for the following case: ... <a> hello <B> there </B> How was your day. ..... </a> In this snippet, I ...
0
votes
2answers
19 views

Duplicate values in list when parsing xml?

I have xml: <?xml version="1.0" encoding="UTF-8"?> <rows> <row> <ro new="TEMP_1">TEMP_11</ro> <ro new="TEMP_2">TEMP_12</ro> <ro ...
1
vote
0answers
21 views

Programatically clean/ignore namespaces in XML - python

I'm trying to write a simple program to read my financial XML files from GNUCash, and learn Python in the process. The XML looks like this: <?xml version="1.0" encoding="utf-8" ?> <gnc-v2 ...
1
vote
0answers
22 views

How to replace the node value in xml and save the output in same xml using python

I used minidom function to change the nodeValue in xml. But my code only changes the node value in buffer (when i print the xml , i get it with new value), i want to save the new node value to the ...
0
votes
0answers
17 views

python parse namecheap xml response [duplicate]

I am a fairly new Python dev working on my first XML project. I am working with the namecheap API and trying to parse the XML response with the Elementree python module: <?xml version="1.0" ...
0
votes
1answer
32 views

Parse XML dump of wiki

I am trying to parse an XML dump of the Wiktionary but probably I am missing something since I don't get anything as output. This is a similar but much shorter xml file: <mediawiki ...
0
votes
2answers
44 views

How to find specific elements in XML using ElementTree

I'm trying to parse XML string which I get from youtube video feeds, using Python 3.3.1. Here is the code: import re import sys import urllib.request import urllib.parse import xml.etree.ElementTree ...
1
vote
1answer
38 views

Python ElementTree Copy Node with childs

I have to merge multiple XML-Files into one. Furthermore the structure of the new file is different. This is my "old" structure: <a> <b> <c>1</c> ...
0
votes
1answer
22 views

What does etree.xpath function of python lxml library do?

I understand that etree object from lxml library is a tree representation of a xml document. It is not clear to me what .xpath function does. I just need to know how to interpret its argument and its ...
0
votes
1answer
32 views

Python/LXML - Getting “grandchildren” from etree

Here is a sample of the XML tree I am traversing: <entry dataset="Swiss-Prot" created="1993-07-01+01:00" modified="2013-04-03+01:00" version="144"> <accession>P31750</accession> ...
0
votes
0answers
25 views

Need to know about writing list to xml

I extarct some text that is split from an XML file. for example : text in xml: <Body>My</Body> <Body>name</Body> <Body>is</Body> <Body>james</Body> ...
0
votes
0answers
35 views

Why Python ElementTree needs URL cleanup from XML? [duplicate]

I had a problem, parsing the following XML, coded as UTF-8 without BOM (I use python 2.7.4 64bit under Windows 7): <?xml version="1.0" encoding="utf-8"?> <ymaps ...
0
votes
1answer
16 views

Add sub-elements to newly created elements in python elementtree

I am trying to add the following subtree to an element 'Drugs' in an xml file using elementtree in Python based on the data in CSV file: <Drug> <DrugID>1<DrugID> ...
0
votes
1answer
27 views

Combine value of similar tags to one tag

I have been trying to comine the value of a similar tag and get the output as one single tag as shown below. xml input: <root> <data> <slide name="file.xml"> ...
0
votes
1answer
12 views

xml Element Tree : fail to get expected output

I am using xml.ElementTree to loop through a python list and write it to an xml file in a tree structure. Here is the following code and follows the desired output. Can any1 please help me!! import ...
0
votes
0answers
34 views

Python. ElementTree. How to get list with commented elements [duplicate]

I have following code in xml file: <root> <record>sample_1</record> <!-- <record>sample_2</record> --> <record>sample_3</record> ...
0
votes
1answer
33 views

Writing XML rows in python

My xml file is like this <S_Row> <S_Cell><S_CellBody></S_CellBody></S_Cell> <S_Cell><S_CellBody></S_CellBody></S_Cell> ...
1
vote
1answer
74 views

Python: xml.etree.ElementTree.tostring error

I am using xml.etree.ElementTree.tostring() to convert from etree element to string. But sometime I have problem with it: xpath = "..." htmlparser = etree.HTMLParser() tree = etree.parse(response, ...
0
votes
1answer
36 views

Python - difficulty calling methods of parent (ElementTree) class

Here is how I am importing ElementTree: try: import xml.etree.cElementTree as ET except ImportError: import xml.etree.ElementTree as ET Here is a snippet of my class: class ...
0
votes
1answer
41 views

Can Etree handle these kinds of XPath Queries

Can Pythons XML Parsing library Etree take complex XPath queries like the following? # Note the "[text()=\"USER_4D\"]" assert root.find("Group/EnvConfig/Overrides/Override/Key[text()=\"USER_4D\"]") ...
0
votes
1answer
21 views

Python ElementTree gives Error when removing element from root

I'm getting the following error when attempting to remove an element from the xml document. "ValueError: list.remove(x): x not in list" Here is the code, the error occurs on the line with the remove. ...
5
votes
3answers
143 views

More compact ElementTree or lxml Namespaces

I am trying to get a compact representation of namespaces in ElementTree or lxml when the sub elements are in a different namespace as the parent. Here is the basic example: from lxml import etree ...
0
votes
1answer
32 views

Parsing multiple instance within a sentence in XML - Python

I have an xml file that has the following structure, where I have several instances within a sentence: <corpus> <text> <sentence> <instance\> ...
0
votes
1answer
33 views

Retrieving XML attribute values using Python iterparse

I'm trying to find out how to retrieve XML attribute values using the cElementTree iterparse in Python (2.7). My XML is something like this: <root> <record attr1="a" attr2="b" attr3="c" ...
0
votes
2answers
43 views

XML - dual URIs in a single xmlns definition, is it valid?

I have some XML that has an xmlns declaration as follows: <dc:record xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" ...
0
votes
1answer
59 views

How to load the XML files from directory please

This code I got somewhere on internet and I edited it. How can I load the XML file from my directory? Is there any way to do this? from elementtree import ElementTree as et # Load the xml content ...
2
votes
2answers
44 views

Python search data within XML elements

I thought this would work for searching for tag values of "error" import xml.etree.cElementTree as ET xml = """ <tag1> <tag2> error </tag2> <tag3> ...
0
votes
1answer
61 views

Python, etree: how to copy instance into new instance of a inherited class?

I wrote a class which is inherited from xml.etree.ElementTree.Element class to extend that class with methods to show the complete tag name of the etree element and an easy way to replace the complete ...
0
votes
1answer
117 views

ElementTree SyntaxError: expected path separator ([)

I've searched extensively for the past few days and can't seem to find what I'm looking for. I've written a script using Python 2.7.3 and ElementTree to parse an XML file and edit an attribute buried ...
1
vote
0answers
79 views

Header for XML files with xml.etree.ElementTree

with the module xml.etree.ElementTree I can pretty much create an XML file as I like, except for the most important part ( in my case ): the header. I can't find a real solution for that, my header ...
0
votes
0answers
38 views

How to show xml element include other element

XML Example: (From Webster Dictionary API) <entry_list version="1.0"> <entry id="dictionary"> <term> <hw>dictionary</hw> </term> ...
0
votes
1answer
26 views

Parse all the xml files in a directory one by one using ElementTree

I'm parsing XML in python by ElementTree import xml.etree.ElementTree as ET tree = ET.parse('try.xml') root = tree.getroot() I wish to parse all the 'xml' files in a given directory. The user ...
0
votes
2answers
43 views

ElementTree parsing in python

I have xml of the form <root> <tag1> </tag1> <tag2> </tag2> <tag3> </tag3> <tag1> </tag1> <tag2> </tag2> ...
0
votes
2answers
63 views

How to iterate through all XML Elements and apply logic to each Element's value with ElementTree for Python

I am currently trying to apply logic to Element values in a XML file. Specifically I am trying to encode all the values to UTF-8 while not touching any of the element names/attributes themselves. ...
2
votes
1answer
28 views

parse xml with python - select children based on grandparent's siblings

I am trying to use ElementTree to parse an xml file. Given the xml below, I need to write to file the 'chain_id' (under heading 'm') and 'name' (under heading 'r'), but only if the following criteria ...
1
vote
1answer
34 views

Parsing large combined XML document with Python

I have one large document (400 mb), which contains hundreds of XML documents, each with their own declarations. I am trying to parse each document using ElementTree in Python. I am having a lot of ...
1
vote
4answers
115 views

Python version 2.7: XML ElementTree: How to iterate through certain elements of a child element in order to find a match

I'm a programming novice and only rarely use python so please bear with me as I try to explain what I am trying to do :) I have the following XML: <?xml version = "1.0" encoding = "utf-8"?> ...
0
votes
2answers
154 views

'lxml.etree._Element' object has no attribute 'write' ??? (PYTHON) [duplicate]

from lxml import etree root = etree.Element('root1') element = etree.SubElement(root, 'element1') root.write( 'xmltree.xml' ) Error: AttributeError: 'lxml.etree._Element' object has no attribute ...
0
votes
2answers
117 views

Extract value with XPath, etree and python

I try to extract a value with XPath, Python and etree. I have no influence on the .xml file I receive and I think it seems to be somehow invalid. My method already extracts the text node object I ...
0
votes
1answer
180 views

parsing XML file gets UnicodeEncodeError (ElementTree) / ValueError (lxml)

I send a GET request to the CareerBuilder API : import requests url = "http://api.careerbuilder.com/v1/jobsearch" payload = {'DeveloperKey': 'MY_DEVLOPER_KEY', 'JobTitle': 'Biologist'} r ...
0
votes
2answers
118 views

Creating xml file using ElementTree or lxml

I am creating an xml file using the following code but the formatting is messedup..am wondering if anyone has inputs on how the create a formatted xml file using elemetree or lxml for the following ...
0
votes
1answer
73 views

How to delete a node from an XML document in Python using ElementTree

Here's the structure: <foo> <bar> <buildCommand> <name>com.android.ide.eclipse.adt.ApkBuilder</name> <arguments> ...
0
votes
1answer
55 views

How can I check the existence of attributes and tags in XML before parsing?

I'm parsing an XML file via Element Tree in python and and writing the content to a cpp file. The content of children tags will be variant for different tags. For example first event tag has party ...
0
votes
2answers
63 views

Parsing an arbitrary XML file with ElementTree

I have a template XML file, and based on inputs given to my program I have to generate a new XML file. The template has sections that need to be repeated based on the input data. But I don't ...
0
votes
1answer
61 views

Converting one string with multiple lists/arrays into separate lists

The title is terrible. This is what I mean. I'm using Wolfram|Alpha's API. And while parsing it, I get these god-awful strings, like this (by querying "spider-man"): "year | title | medium 1962 | ...
1
vote
1answer
30 views

Is there a way to get a verbatim string out of an ElementTree element?

I am trying to check the MD5 hash of the text information in an XML element including all its children. This is required to interact with hipay services. def CheckMD5(tree): m = hashlib.md5() ...
0
votes
0answers
76 views

Modifying and rewriting XML file with Python ElementTree

I have a XML file that starts like this: <?xml version="1.0" encoding="utf-8"?> <Recipe xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ...
0
votes
2answers
95 views

Generating ill-formed “XML” without root element

I am using Python library Elementtree to parse XML. I am editing that XML and now I want to solve a problem: I need to generate XML that doesn't have root element. From output: <MyRoot> ...
0
votes
1answer
61 views

python and ElementTree writing one long line of output

Desired Outcome: I am attempting to generate a scalable vector graphic of the locations of our ambulances and a color indicating if the ambulance is busy, out of service, at quarters, etc. Our ...

1 2 3 4 5 8