Minidom is a javascript HMVC framework.
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 ...
1
vote
1answer
17 views
Error when parsing attributes with python minidom
I have a structure like this in my xml file:
<questions>
<q question="Where were Jim and his mother going?" answer="The school"/>
<q question="What color was the ball?" ...
0
votes
1answer
22 views
Preventing minidom from escaping already escaped text
import xml.dom.minidom
text='2 > 1'
impl = xml.dom.minidom.getDOMImplementation()
doc = impl.createDocument(None, "foobar", None)
docElem = doc.documentElement
text = doc.createTextNode(text)
...
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
0answers
15 views
DOM Document contains no Comment nodes when using xml.sax.make_parser
I'm trying to parse an XML fragment that contains comments. When I use the default parser (by passing None as the parser argument to xml.dom.minidom.parseString) the comment nodes show up in the ...
0
votes
2answers
40 views
Python minidom: How to access an element
I'm working on parsing an XML-Sheet in Python. The XML has a structure like this:
<layer1>
<layer2>
<element>
<info1></info1>
...
0
votes
1answer
50 views
Python: Why will this string print but not write to a file?
I am new to Python and working on a utility that changes an XML file into an HTML. The XML comes from a call to request = urllib2.Request(url), where I generate the custom url earlier in the code, and ...
0
votes
0answers
39 views
Python minidom replace nexvalue to element
I am using node.firstChild.replaceWholeText(newText) and tried dom.toxml(). It works but when I check back the XML file the data doesn't update. Can anyone help?
dom = ...
0
votes
1answer
98 views
Python minidom xml parsing to get the value of first child node
I am using python minidom to parse a xml, but not able to get it working for below xml. I want to select the first server tag and want the value of name tag , in this case "Server1"
<class>
...
1
vote
1answer
110 views
Create xml file without prologue with python dom minidom
I create a xml file with the library dom minidom of Python. However i want create my xml file without the prolog <?xml version="1.0"?>. I use doc.writexml() Please can you give me few leads?
0
votes
1answer
231 views
Empty lines while using minidom.toprettyxml
I've been using a minidom.toprettyxml for prettify my xml file.
When I'm creating XML file and using this method, all works grate, but if I use it after I've modified the xml file (for examp I've ...
1
vote
2answers
145 views
python minidom xml parsing
I'm trying to find a way to get the index number when parsing a xml file with minidom.
xml will look something like this
<stuff>
<morestuff>
...
0
votes
0answers
221 views
Encoding Issue while Parsing XML
I'm trying to parse an xml with minidom (python). I have an url with my xml data.
But I get an error :
DjangoUnicodeDecodeError
Seems it's an encoding issue when parsing!
This is my code:
url = ...
0
votes
1answer
82 views
Write Integer to XML Node in minidom
I'm using minidom in Python to create an XML formatted log file for completed tasks. Part of the process is to compare the last modified time of a file to the time that that files data was recorded ...
1
vote
0answers
87 views
Permission Denied when attempting to Parse XML Data on Network Share
I'm using minidom in Python to parse some log files in a directory on the network. I can print the list of file names just fine but get the error:
IOError: [Errno 13] Permission denied: ...
0
votes
0answers
75 views
What is the efficient way to solve unicode problems in Python? [duplicate]
Possible Duplicate:
Python Unicode Encode Error
I am using Python minidom to extract data from XML but I got an error on the program because of unicode data in XML.
UnicodeEncodeError: ...
-1
votes
1answer
138 views
Python - XML parsing [closed]
I got following xml code.
How to get "comment" from that xml using minidom.parse function?
I can get "user:" and cell value, but can't with "comment".
0
votes
1answer
85 views
how to link multiple xml files in python using DOM?
I have thousands of xml files with title and their description in different xml files.
Example:
<entertainment id="12">
<title>who is your favorite star?</title>
...
3
votes
2answers
66 views
Python XML- getting what is between two nodes
Here is my xml file
<gui>
<object class="wxPanel" name="new">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object ...
1
vote
1answer
169 views
Accessing python minidom node data
import xml.dom.minidom
document = """\
<parent>
<child1>value 1</child1>
<child2>value 2</child2>
<child3>value 3</child3>
</parent>
"""
...
0
votes
3answers
317 views
Parsing XML with Python from URL using minidom
I have a problem during parsing the following xml from a url.
sample XML in my url path:
<?xml version="1.0" encoding="utf-8"?>
<Documents>
<class>
<mid ...
1
vote
2answers
127 views
Python Minidom XML Query
I'm trying to query this XML with lxml:
<lista_tareas>
<tarea id="1" realizzato="False" data_limite="12/10/2012" priorita="1">
<description>XML TEST</description>
...
1
vote
1answer
95 views
Python: Which XML parser supports DTD internal subset?
I have the below XML file, currently I am using minidom and I get for the example the documentElement's tagName as being xyz:widget that tells me that it ignores the !ENTITY definitions and ...
1
vote
1answer
502 views
Minidom:Get all the attributes of a selected node?
I recursively pass through all the nodes in an XML:
def verify_elements_children(root):
if root.childNodes:
for node in root.childNodes:
if node.nodeType == node.ELEMENT_NODE:
...
1
vote
2answers
407 views
Walk through all XML nodes in an element-nested structure
I have this kind of XML structure (output from the Esprima ASL converted from JSON), it can get even more nested than this (ASL.xml):
<?xml version="1.0" encoding="UTF-8" ?>
<program>
...
1
vote
2answers
57 views
List only one category Python xml
I am trying to write a python program that uses DOM to read xml file and print another xml structure that list from only one node with particular selected attribute "fun".
<?xml version="1.0" ...
1
vote
1answer
148 views
Which XML parser has the most detailed error reporting?
There are a lot of ways in python provided by the standard installation to process an XML, even more as external packages, see http://wiki.python.org/moin/PythonXml.
For my project I use minidom, it ...
2
votes
2answers
739 views
Python / Minidom : Iterate on a NodeList
I'm making a Python program that parse XML files. I need to iterate over NodeList, but I have an issue doing it with the "for node in NodeList" syntax.
Here is a sample of code :
docToInclude = ...
2
votes
2answers
249 views
Minidom: How can I check if I have the expected root and children?
I have this xml structure,
<root>
<child1>
</child1>
<child2>
</child2>
<child3 />
<extendedchild:name>
...
0
votes
3answers
149 views
using minidom to parse xml
Hi I have trouble understanding the minidom module for Python.
I have xml that looks like this:
<Show>
<name>Dexter</name>
<totalseasons>7</totalseasons>
...
0
votes
1answer
114 views
Fastest way to code iteration through XML items using python's minidom?
What would be the shortest code/fastest way to put the feature in a dictionary, using python's minidom for this structure of xml:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = ...
-2
votes
1answer
115 views
Python 2.x minidom: How do I set a unicode codec?
How do I configure a minidom instance to have a unicode codec?
Processing this snippet in an XML file:
<title type="text">ME850单片机开发实验仪(增强配置)(产品浏览)-伟纳电子-http://www.willar.com/</title>
...
0
votes
2answers
674 views
Python minidom: list childnode attributes per parent tag
I have,
<parent id="1">
<child id="white"></child>
<child id="red"></child>
</parent>
<parent id="2">
<child id="green"></child>
...
2
votes
1answer
162 views
Get Document from Node or Element objects with minidom
Is there a way I can get the document root from a child Element or Node? I am migrating from a library that works with any of Document, Element or Node to one that works only with Document. eg.
From:
...
0
votes
0answers
51 views
python generated XML not using utf-8
I have a python script that generates an xml file by converting a dictionary using the Document from xml.dom.minidom and saves it to my desktop. Everything is fine except for dealing with ...
1
vote
2answers
195 views
Python minidom parser: Ignore tag with identical attribute values
Trying to parse xml to text I got something like this,
INPUT FILE
<Item id="1"></Item>
<Item id="2"></Item>
<Item id="1"></Item>
<Item id="2"></Item>
...
1
vote
3answers
942 views
Python Minidom - how to iterate through attributes, and get their name and value
I want to iterate through all attributes of a dom node and get the name and value
I tried something like this (docs were not very verbose on this so I guessed a little):
for attr in ...
0
votes
3answers
179 views
Need help writing an xpath string to match multiple, but not all, table cells
Note: The question has been updated since some of the early answers were given. It's still the same question, just hopefully clearer.
I'm trying to get a site scraper working properly and I'm having ...
0
votes
1answer
87 views
Retrieving Tags in Geoname XML in Python
I am looking to retrieve the timezoneId tag from the geoname api, by providing latitude and longitude.
http://api.geonames.org/timezone?lat=39.758720&lng=116.041420&username=demo
It is ...
1
vote
0answers
152 views
How to replace a node in XML using Python with value fetched from database using minidom?
I am very new to Python and got stuck to a point. I am trying to replace selective nodes in an XML document with corresponding values from MS SQL Server. I am supposed to use only minidom to achieve ...
0
votes
1answer
561 views
Modify (Change specific elements) XML file with minidom in python
I have n xml file in which I want to change three elements.
It's the first, eighth and tenth <string> element. so the easiest approach, I guess, would be like this (But I am open to any other ...
0
votes
0answers
97 views
parsing xml containing &entities; with minidom
I'm trying to parse XML files using minidom. This is simple in simple cases (doc = xml.dom.minidom.parse(fileName)). But I have XML containing named entities (e. g. ü, à and ...
0
votes
2answers
170 views
Python minidom look for empty text node
I am parsing an XML file with the minidom parser, where I'm iterating over the XML and output specific information that stands between the tags into a dictionary.
Like this:
d={}
dom = ...
1
vote
2answers
363 views
Null Text Node issue with xml.dom.minidom in Python
Environment: Python 2.6.5, Eclipse SDK 3.7.1, Pydev 2.3
I am trying to parse and change values in XML data in Python using xml.dom.minidom and I'm having an issue with blank text nodes.
When I ...
0
votes
1answer
141 views
Extracting node reference ID using minidom in Python
I am using minidom in Python and I would like to search through a list of nodes (book) and for each book node where the attribute "name" is equal to "statistics", I want to print the node reference. ...
0
votes
0answers
99 views
Getting sub elements using minidom
I'm trying to get the information contained in the XML below within the api:fields and seem to be running into a road block (there are multiple entry blocks that I am parsing through which contain the ...
0
votes
0answers
13 views
Deduplicating minidom xml output
Is there any way of removing duplicates within an XML tree generated with minidom?
I've not attempted to do this yet, I'm just looking for something that already exists.
0
votes
1answer
174 views
How to read special characters of a XML file with minidom
when reading a data from a XML file, I cannot get the right string.
My XML file is like that :
<?xml version="1.0" encoding="ISO-8859-1" ?>
<Root>
<Name>aa é bb</Name>
...
0
votes
3answers
208 views
MemoryError with minidom in Python
I've got a MemoryError with minidom parser in Python.
I'm reading 8000 small files (most under 50 Kb) and I've got this error after 2500 reading...`
Traceback (most recent call last):
File ...
2
votes
3answers
410 views
Extracting text from XML node with minidom
I've looked through several posts but I haven't quite found any answers that have solved my problem.
Sample XML =
<TextWithNodes>
<Node id="0"/>TEXT1<Node id="19"/>TEXT2 <Node ...



