Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
6answers
18k views

Get Element value with minidom, Python

I am creating a GUI frontend for the Eve Online API in Python. I have successfully pulled the XML data from their server. I am trying to grab the value from a node called "name" from ...
6
votes
2answers
5k views

All nodeValue fields are None when parsing XML

I'm building a simple web-based RSS reader in Python, but I'm having trouble parsing the XML. I started out by trying some stuff in the Python command line. >>> from xml.dom import minidom ...
4
votes
3answers
657 views

Ignoring XML errors in Python

I am using XML minidom (xml.dom.minidom) in Python, but any error in the XML will kill the parser. Is it possible to ignore them, like a browser for example? I am trying to write a browser in Python, ...
3
votes
2answers
191 views

XML Parsing: Element Tree (etree) vs. minidom

I've been using minidom to parse XML for years. Now I've suddenly learned about Element Tree. My question which is better for parsing? That is: Which is faster? Which uses less memory? Does either ...
3
votes
2answers
79 views

Confused by which XML processing option to use

I'm fairly new to Python, and I've just started working with XML parsing. I am getting a bit overwhelmed by all the options for working with XML, and I'm hoping an experienced person can give me some ...
3
votes
4answers
5k views

Python xml minidom. generate <text>Some text</text> element

I have the following code. from xml.dom.minidom import Document doc = Document() root = doc.createElement('root') doc.appendChild(root) main = doc.createElement('Text') root.appendChild(main) text ...
2
votes
3answers
106 views

Node.toprettyxml() adds newlines to DOCTYPE in Python

When using prettify my DOCTYPE is broken into three lines. How can I keep it on one line? The "broken" output: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE smil PUBLIC '-//W3C//DTD ...
2
votes
2answers
71 views

python minidom does not close <xml tag>

I'm experiencing a strange behaviour using minidom. I run the following code: import os import sys from xml.dom import minidom def generateReleaseXMLFile(): modelPath = "%./model/" # Create ...
2
votes
2answers
84 views

Python CGI Script (using XML & mindom) does not print FOR loop counter

Trying to print the results of a Yahoo search using an API, the For loop counter will not print its incremented value. The XML is parsed and printed, but the counter prints '1' over and over. The ...
2
votes
1answer
33 views

Python CGI Script (using XML & mindom) cannot extract null data

This portion of code parses XML for output to the screen on a webpage. for counter in range(100): try: for item in BlekkoSearchResultsXML.getElementsByTagName('item'): ...
2
votes
1answer
386 views

Getting a minidom XML child node value safely

I am using Python and minidom for the first time and want to get a value from an element something like: <test>value</test> This is fine and straightforward, but if the value is empty ...
2
votes
2answers
292 views

Sort nodes after using getElementsByTagName by the nodes attributes

EDIT The dictionary is the offender here, the answer marked on this question works, the dictionary does what it wants though. Sorting the dictionary is the answer in this case, but now I know how to ...
2
votes
1answer
436 views

Python xml.dom.minidom generates invalid XML?

I have encountered strange problem with xml.dom.minidom python package. I generate a document, populating it with data taken from terminal. Sometimes such data contain terminal control characters. ...
2
votes
2answers
499 views

Python 2.6 minidom: “toprettyxml” how to output XML meta-data with document (XSLT stylesheet)

I'm creating an XML document using minidom - how do I ensure my resultant XML document contains a stylesheet reference like this: <?xml-stylesheet type="text/xsl" href="mystyle.xslt"?> Thanks ...
2
votes
3answers
290 views

How to test for existence of child nodes using Python to iterate over XML (using xml.dom.minidom)

I am using Python, and xml.dom.minidom, to iterate over an exported Excel Spreadsheet, outputting an HTML table for our dining hall menu with various calls to .write. The difficulty lies in that the ...
2
votes
3answers
416 views

How to parse unicode strings with minidom?

I'm trying to parse a bunch of xml files with the library xml.dom.minidom, to extract some data and put it in a text file. Most of the XMLs go well, but for some of them I get the following error when ...
2
votes
1answer
180 views

How do you generate xml from non string data types using minidom?

How do you generate xml from non string data types using minidom? I have a feeling someone is going to tell me to generate strings before hand, but this is not what I'm after. from datetime import ...
2
votes
0answers
117 views

Integers in TextNodes w/ Python minidom

I am working on an API using SOAP and WSDL. The WSDL expects integers to come through. I am fairly new to ALL of this, and constructing XML in Python. I have chosen to use minidom to create my SOAP ...
2
votes
2answers
856 views

python xml.dom.minidom.Attr question

Getting attributes using minidom in Python, one uses the "attributes" property. e.g. node.attributes["id"].value So if I have <a id="foo"></a>, that should give me "foo". ...
2
votes
3answers
681 views

stop minidom converting < > to &lt; &gt;

Im trying to output some data from my google app engine datastore to xml so that a flash file can read it, The problem is when using CDATA tags the outputted xml contains &lt; instead of < ...
2
votes
2answers
377 views

Decoding not reversing unicode encoding in Django/Python

Ok, I have a hardcoded string I declare like this name = u"Par Catégorie" I have a # -- coding: utf-8 -- magic header, so I am guessing it's converted to utf-8 Down the road it's outputted to ...
2
votes
2answers
2k views

Find element with attribute with minidom

Given <field name="frame.time_delta_displayed" showname="Time delta from previous displayed frame: 0.000008000 seconds" size="0" pos="0" show="0.000008000"/> <field ...
2
votes
1answer
302 views

XML attributes get sorted

When I create a document using the minidom, attributes get sorted alphabetically in the element. Take this example from here: from xml.dom import minidom # New document xml = minidom.Document() # ...
1
vote
2answers
25 views

Python XML Processing in minidom

I have the following very simple XML file and I want to quickly parse the imsi elements for each device using minidom. <device> <imsi>01010101</imsi> </device> ...
1
vote
3answers
80 views

Commenting and uncommenting XML via Python

I would like to know of a way to comment and uncomment an element in XML using Python. <target depends="create-build-dir" name="build-Folio"> <property name="project.name" ...
1
vote
1answer
98 views

Python XML: write " instead of &quot

I am using Python's xml minidom and all works well except that in text sequences it writes out &quot escape characters instead of ". This of course makes sense if a quote appears in a tag, but it ...
1
vote
1answer
209 views

HDI: write large string xml into file (python xml.dom.minidom)

I'm currently building large xml files with xml.dom.minidom and then writing them out to file via the toprettyxml. is there a way to stream the xml to a document because I'm hitting memory errors. ...
1
vote
1answer
29 views

How to retrieve the xml which has been created using the minidom?

from xml.dom.minidom import Document def generateXML(): # Create the minidom document doc = Document() # Create the <discover> base element discover = ...
1
vote
2answers
249 views

How to comment out an XML Element (using minidom DOM implementation)

I would like to comment out a specific XML element in an xml file. I could just remove the element, but I would prefer to leave it commented out, in case it's needed later. The code I use at the ...
1
vote
5answers
488 views

Python minidom and UTF-8 encoded XML with hash references

I am experiencing some difficulty in my home project where I need to parse a SOAP request. The SOAP is generated with gSOAP and involves string parameters with special characters like the danish ...
1
vote
2answers
390 views

Writing XML to file corrupts files in python

I'm attempting to write contents from xml.dom.minidom object to file. The simple idea is to use 'writexml' method: import codecs def write_xml_native(): # Building DOM from XML xmldoc = ...
1
vote
0answers
99 views

xml.dom.minidom.parse() in Jython gives an error for XML files with <?xml… and <!DOCTYPE tags

It works fine as long as the XML files don't have <?xml version="1.0" encoding="UTF-8"?> and the DOCTYPE tags. I would switch to xml.etree but I already wrote quite a lot of code using minidom. ...
1
vote
1answer
434 views

Hudson XML error— No module named dom.minidom

I am trying to send a simple XML file of the format given in http://wiki.hudson-ci.org/display/HUDSON/Monitoring+external+jobs . I was able to send it easily and was getting desired result!! Then I ...
1
vote
1answer
2k views

Update element values using xml.dom.minidom

I have an XML structure which looks similar to: <Store> <foo> <book> <isbn>123456</isbn> </book> <title>XYZ</title> ...
1
vote
2answers
704 views

Set a DTD using minidom in python

I am trying to include a reference to a DTD in my XML doc using minidom. I am creating the document like: doc = Document() foo = doc.createElement('foo') doc.appendChild(foo) doc.toxml() This ...
1
vote
2answers
870 views

Python: xml.dom.minidom empty nodeValue nonempty toxml() value

I have a line that gets the nodeValue of a Node: parent.getElementsByTagName("Url")[0].nodeValue that returns nothing: <br/> When I do: parent.getElementsByTagName("Url")[0].toxml() it ...
1
vote
2answers
782 views

Get HTML links within a specified <table> using minidom

I'm looking to use Python and xml.dom.minidom to get a list of links within a particular <table> specified by the table id. Based on some excellent advice, I'm trying to use the DOM instead of ...
1
vote
2answers
2k views

How to set element's id in Python's xml.dom.minidom?

How to? Created a document and an element: import xml.dom.minidom as d a=d.Document() b=a.createElement('test') setIdAttribute doesn't work :( b.setIdAttribute('something') Traceback (most recent ...
1
vote
3answers
6k views

XML Parsing with Python and minidom

I'm using Python (minidom) to parse an XML file that prints a hierarchical structure that looks something like this (indentation is used here to show the significant hierarchical relationship): My ...
1
vote
3answers
5k views

Reading XML using Python minidom and iterating over each node

I have an XML structure that looks like the following, but on a much larger scale: <root> <conference name='1'> <author>Bob</author> <author>Nigel</author> ...
1
vote
5answers
820 views

Preserve order of attributes when modifying with minidom

Is there a way I can preserve the original order of attributes when processing XML with minidom? Say I have: <color red="255" green="255" blue="233" /> when I modify this with minidom the ...
0
votes
1answer
31 views

Python XML processing after a specific comment

I have an automated process that keeps an XML file up to date based on an external data source. This XML file can also be modified by users, their manual changes need to be maintained. ...
0
votes
1answer
43 views

Python minidom element.data only returns object, not text

I am fairly new to Python and am just trying to parse the results of a simple Web-API that returns the following XML-Syntax: <rss version='2.0'> <channel> ...
0
votes
1answer
104 views

Python Minidom : Change Value of Node

I'm using Python's minidom library to try and manipulate some XML files. Here is an example file : <document> <item> <link>http://www.this-is-a-url.com/</link> ...
0
votes
1answer
50 views

XML indentation on minidom python

I'm trying to append a new child on a XML file, the problem is that I can't give the appropriate format to the child before inserting it in the XML document. I Have created the child with ...
0
votes
1answer
68 views

How to read the value of an XML tag having attributes using minidom

I have an XML which looks like this. <nb:myelement param='oxygen'>Value</nb:element> I am using the following python code. for sub in dom.getElementsByTagName('nb:myelement'): ...
0
votes
1answer
123 views

ExpatError: junk after document element

I really don't know, what the Problem is? I get the following error: File "C:\Python27\lib\xml\dom\expatbuilder.py", line 223, in parseString parser.Parse(string, True) ExpatError: junk after ...
0
votes
3answers
142 views

retrieve value from childnodes with minidom

I am very new to XML and I trying to retrieve the value from childnodes from xml.dom import minidom def Get_ExtList(progName): progFile='%s.xml'%progName xmldoc = minidom.parse(progFile) ...
0
votes
2answers
124 views

Parsing XML with minidom

I'm struggling with minidom. I need to locate an entry in the dom, update the text it holds, and then save the file. So far, the only way I've successfully been able to do locate the particular ...
0
votes
1answer
73 views

xml missing element in python

System uses dom parser in python 2.7.2. The goal is to extract the .db file and use it on sql server.I currently have no problem with sqlite3 library. I have read the similar questions/answers about ...

1 2