active questions tagged python+xml - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T10:58:40Zhttp://stackoverflow.com/feeds/tag/python+xmlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872861/extract-resulted-list-data-to-a-xml-file-in-python0Extract resulted list data to a xml file in pythonrahman.bd2009-12-09T10:05:01Z2009-12-09T14:04:43Z
<p>Hi,
How can I extract my resulted list data to an xml file?</p>
<p>My resulted list is given below:</p>
<p>week=[{'item': Electrelane, 'weight': 140}, {'item': Kraftwerk, 'weight': 117},{'item': The Flaming Lips, 'weight': 113}]</p>
http://stackoverflow.com/questions/1873923/how-i-get-an-external-xml-file-from-my-list-data-in-python0how I get an external xml file from my list data in python [closed]rahman.bd2009-12-09T13:32:33Z2009-12-09T13:37:46Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1872861/extract-resulted-list-data-to-a-xml-file-in-python">Extract resulted list data to a xml file in python</a> </p>
</blockquote>
<p>Hi,
How can i make an external xml file having my list data output in python?</p>
<p>For example:</p>
<pre><code>list=[{"denver", "I want to go"},{"celin","home sick"},{"shania","Situation dont change"}]
</code></pre>
<p>Any idea please??</p>
http://stackoverflow.com/questions/1870383/python-to-generate-output-ready-for-excel0Python to generate output ready for Excelhousehold2009-12-08T22:36:28Z2009-12-08T22:43:42Z
<p>I have a Python script gathering info from some remote network devices. The output can be maybe 20 to 1000 lines of text. This then goes into excel on my local PC for now.</p>
<p>Now access to this Linux device is convoluted, a citrix session to a remote windows server then ssh to the Linux device half way around the world. There is no ftp, scp, or anything like that, so I can't generate the excel on the Linux device and transfer it locally. The ONLY way to get the info is to copy/paste from the ssh window into the local machine and post-process it</p>
<p>My question is what would be the best (from a user point of view as others will be using it) format to generate? 1.as it is now (spaces & tabs), 2.reformat as csv or as 3.convert to xml </p>
http://stackoverflow.com/questions/1862963/python-how-do-i-read-and-parse-a-unicode-utf-8-text-file2Python: How do I read and parse a unicode utf-8 text file?Eyesno2009-12-07T21:20:04Z2009-12-08T00:27:50Z
<p>I am exporting UTF-8 text from Excel and I want to read and parse the incoming data using Python. I've read all the online info so I've already tried this, for example:</p>
<pre><code> txtFile = codecs.open( 'halout.txt', 'r', 'utf-8' )
for line in txtFile:
print repr( line )
</code></pre>
<p>The error I am getting is: </p>
<p>UnicodeDecodeError: 'utf8' codec can't decode byte 0xff in position 0: unexpected code byte</p>
<p>Looking at the text file in a Hex editor, the first values are FFFE I've also tried:</p>
<pre><code>txtFile.seek( 2 )
</code></pre>
<p>right after the 'open' but that just causes a different error.</p>
http://stackoverflow.com/questions/1848371/lxml-changing-unicode-characters0lxml Changing Unicode CharactersNikwin2009-12-04T17:10:28Z2009-12-04T17:34:00Z
<p>I am using lxml to read through an xml file and change a few details. However, when running it I find that even if I just use lxml to read the file and then write it out again, as below:</p>
<pre><code>fil='iTunes Music Library.XML'
tre=etree.parse(fil)
tre.write('temp.xml')
</code></pre>
<p>I find Queensrÿche converted to <code>Queensr&#255;che</code>. Anyone know how to fix this?</p>
http://stackoverflow.com/questions/138502/pure-python-xslt-library5Pure Python XSLT libraryAndy Balaam2008-09-26T09:43:43Z2009-12-02T12:47:18Z
<p>Is there an XSLT library that is pure Python?</p>
<p>Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.</p>
<p>I really only need basic XSLT support, and speed is not a major issue.</p>
http://stackoverflow.com/questions/1814923/python-extract-html-from-an-xml-file0Python: Extract HTML from an XML filemiracle2k2009-11-29T07:38:31Z2009-11-29T18:28:44Z
<p>My XML file looks like this:</p>
<pre><code> <strings>
<string>Bla <b>One &amp; Two</b> Foo</string>
</strings>
</code></pre>
<p>I want to extract the content of each <string> while maintaining the inner tags. That is, I would like to see the following Python string: u"Bla <b>One & Two</b> Foo". Alternatively, I guess I could settle on u"Bla <b>One & Two</b> Foo", and then try to replace the entities myself.</p>
<p>I am currently using lxml, which allows me to iterate over the nested tags, missing out on the text not inside a tag, or alternatively over all text content (itertext), losing the tag information. I'm probably missing something.</p>
<p>If possible I'd prefer to keep lxml, though I can switch to another library if necessary.</p>
http://stackoverflow.com/questions/565823/how-can-i-anonymise-xml-data-for-selected-tags1How can I anonymise XML data for selected tags?yli2009-02-19T15:25:47Z2009-11-24T18:12:45Z
<p>My question is as follows:</p>
<p>I have to read a big XML file, 50 MB; and anonymise some tags/fields that relate to private issues, like name surname address, email, phone number, etc...</p>
<p>I know exactly which tags in XML are to be anonymised.</p>
<pre><code> s|<a>alpha</a>|MD5ed(alpha)|e;
s|<h>beta</h>|MD5ed(beta)|e;
</code></pre>
<p>where <code>alpha</code> and <code>beta</code> refer to any characters within, which will also be hashed, using probably an algorithm like <a href="http://en.wikipedia.org/wiki/MD5" rel="nofollow">MD5</a>.</p>
<p>I will only convert the tag value, not the tags themselves.</p>
<p>I hope, I am clear enough about my problem. How do I achieve this?</p>
http://stackoverflow.com/questions/1786476/parsing-xml-in-python-using-elementtree-example1Parsing XML in Python using ElementTree exampleCasey2009-11-23T22:24:01Z2009-11-24T14:35:18Z
<p>Hello,</p>
<p>I'm having a hard time finding a good, basic example of how to parse XML in python using Element Tree. From what I can find, this appears to be the easiest library to use for parsing XML. Here is a sample of the XML I'm working with:</p>
<pre><code><timeSeriesResponse>
<queryInfo>
<locationParam>01474500</locationParam>
<variableParam>99988</variableParam>
<timeParam>
<beginDateTime>2009-09-24T15:15:55.271</beginDateTime>
<endDateTime>2009-11-23T15:15:55.271</endDateTime>
</timeParam>
</queryInfo>
<timeSeries name="NWIS Time Series Instantaneous Values">
<values count="2876">
<value dateTime="2009-09-24T15:30:00.000-04:00" qualifiers="P">550</value>
<value dateTime="2009-09-24T16:00:00.000-04:00" qualifiers="P">419</value>
<value dateTime="2009-09-24T16:30:00.000-04:00" qualifiers="P">370</value>
.....
</values>
</timeSeries>
</timeSeriesResponse>
</code></pre>
<p>I am able to do what I need, using a hard-coded method. But I need my code to be a bit more dynamic. Here is what worked:</p>
<pre><code>tree = ET.parse(sample.xml)
doc = tree.getroot()
timeseries = doc[1]
values = timeseries[2]
print child.attrib['dateTime'], child.text
#prints 2009-09-24T15:30:00.000-04:00, 550
</code></pre>
<p>Here are a couple of things I've tried, none of them worked, reporting that they couldn't find timeSeries (or anything else I tried):</p>
<pre><code>tree = ET.parse(sample.xml)
tree.find('timeSeries')
tree = ET.parse(sample.xml)
doc = tree.getroot()
doc.find('timeSeries')
</code></pre>
<p>Basically, I want to load the xml file, search for the timeSeries tag, and iterate through the value tags, returning the dateTime and the value of the tag itself; everything I'm doing in the above example, but not hard coding the sections of xml I'm interested in. Can anyone point me to some examples, or give me some suggestions on how to work through this? Thanks for your help</p>
<p>UPDATE (11/24/09):
Thanks for all the help. Using both of the below suggestions worked on the sample file I provided, however, they didn't work on the full file. Here is the error I get from the real file when I use Ed Carrel's method:</p>
<pre><code> (<type 'exceptions.AttributeError'>, AttributeError("'NoneType' object has no attribute 'attrib'",), <traceback object at 0x011EFB70>)
</code></pre>
<p>I figured there was something in the real file it didn't like, so I incremently removed things until it worked. Here are the lines that I changed:</p>
<pre><code>originally: <timeSeriesResponse xsi:schemaLocation="a URL I removed" xmlns="a URL I removed" xmlns:xsi="a URL I removed">
changed to: <timeSeriesResponse>
originally: <sourceInfo xsi:type="SiteInfoType">
changed to: <sourceInfo>
originally: <geogLocation xsi:type="LatLonPointType" srs="EPSG:4326">
changed to: <geogLocation>
</code></pre>
<p>Removing the attributes that have 'xsi:...' fixed the problem. Is the 'xsi:...' not valid XML? It will be hard for me to remove these programmatically. Any suggested work arounds?</p>
<p>Here is the full XML file: <a href="http://www.sendspace.com/file/lofcpt" rel="nofollow">http://www.sendspace.com/file/lofcpt</a></p>
<p>Thanks again</p>
<p>Casey</p>
http://stackoverflow.com/questions/1613042/parsing-xml-right-scripting-languages-packages-for-the-job1Parsing XML - right scripting languages / packages for the job?nedblorf2009-10-23T12:13:34Z2009-11-23T22:16:59Z
<p>I know that any language is capable of parsing XML; I'm really just looking for advantages or drawbacks that you may have come across in your own experiences. Perl would be my standard go to here, but I'm open to suggestions.</p>
<p>Thanks!</p>
<p>UPDATE: I ended up going with XML::Simple which did a nice job, but I have one piece of advice if you plan to use it--research the forcearray option first. I had to rewrite a bunch of statements after learning that it is <em>usually</em> best practice to set forcearray. <a href="http://search.cpan.org/~grantm/XML-Simple-2.18/lib/XML/Simple/FAQ.pod#What%5Fis%5Fthe%5Fforcearray%5Foption%5Fall%5Fabout?" rel="nofollow">This</a> page had the clearest explanation that I could find. Frankly, I'm surprised this isn't the default behavior.</p>
http://stackoverflow.com/questions/1130819/how-to-create-arraytype-for-wsdl-in-python-using-suds1How to create arrayType for WSDL in Python (using suds)?Uri2009-07-15T11:20:23Z2009-11-22T19:00:02Z
<p><strong>Environment:</strong></p>
<ul>
<li>Python v2.6.2</li>
<li>suds v0.3.7</li>
</ul>
<p>The WSDL (server) I work with, have the following schema sub-sections (I tried to write it clearly using plain text) -</p>
<p><hr /></p>
<p><strong><em>[ sub-section #1 ]</em></strong></p>
<pre><code>searchRequest: (searchRequest){
userIdentification = (userIdentification){
username = ""
password = ""
}
itineraryArr = (itineraryArray){
_arrayType = ""
_offset = ""
_id = ""
_href = ""
_arrayType = ""
}
...
...
</code></pre>
<p><hr /></p>
<p><strong><em>[ sub-section #2 ]</em></strong></p>
<pre><code>itinerary: (itinerary){
departurePoint = (locationPoint){
locationId = None
radius = None
}
arrivalPoint = (locationPoint){
locationId = None
radius = None
}
...
...
</code></pre>
<p><hr /></p>
<p>There is no problem with 'userIdentification' (which is a "simple" type)</p>
<p>But, 'itineraryArr' is an array of 'itinerary', and I don't know how to use python to create XML array.</p>
<p>I tried few combinations, for example</p>
<pre><code>itinerary0 = self.client.factory.create('itinerary')
itineraryArray = self.client.factory.create('itineraryArray')
itineraryArray = [itinerary0]
searchRequest.itineraryArr = itineraryArray
</code></pre>
<p>But all my trials resulted with the same server error -</p>
<pre><code> Server raised fault: 'Cannot use object of type itinerary as array'
(Fault){
faultcode = "SOAP-ENV:Server"
faultstring = "Cannot use object of type itinerary as array"
}
</code></pre>
<p>Appreciate you help.....</p>
<p>Thanks,
<em>Uri</em></p>
http://stackoverflow.com/questions/1756559/pass-xml-fragments-as-stylesheet-paramters-with-lxml0Pass XML fragments as stylesheet paramters with lxml?Phillip Oldham2009-11-18T14:54:38Z2009-11-18T21:16:09Z
<p>I'm starting to use <code>lxml</code> in Python for processing XML/XSL documents, and in general it seems very straight forward. However, I'm not able to find a way to pass an XML fragment as a stylesheet parameter when doing a translation.</p>
<p>For example, in PHP it is possible to pass <code>DOMDocument</code> XML fragments as stylesheet parameters, so that one can have complex params available within the stylesheet:</p>
<pre><code>$xml = new DOMDocument();
$xml->loadXML('<root><node/></root>');
$xsl = new DOMDocument();
$xsl->loadXML('<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" omit-xml-declaration="yes"
indent="yes" media-type="text/html" />
<xsl:param name="a" />
<xsl:template match="/">
<html>
<body>
<xsl:value-of select="$a/foo/bar/text()" />
</body>
</html>
</xsl:template>
</xsl:stylesheet>');
$fragment = new DOMDocument();
$fragment->loadXML('<foo><bar>baz</bar></foo>');
$proc = new XSLTProcessor;
$proc->registerPHPFunctions();
$proc->importStyleSheet($xsl);
$param_ns = '';
$param_name = 'a';
$proc->setParameter($param_ns, $param_name, $fragment->documentElement);
</code></pre>
<p>Which will result in:</p>
<pre><code><html>
<body>
baz
</body>
</html>
</code></pre>
<p><strong>How does one accomplish this using <code>lxml</code>?</strong></p>
http://stackoverflow.com/questions/1740731/xml-attributes-get-sorted1XML attributes get sortedhughdbrown2009-11-16T08:00:40Z2009-11-16T08:23:12Z
<p>When I create a document using the minidom, attributes get sorted alphabetically in the element. Take this example from <a href="http://developer.taboca.com/cases/en/creating%5Fa%5Fnew%5Fxml%5Fdocument%5Fwith%5Fpython/" rel="nofollow">here</a>:</p>
<pre><code>from xml.dom import minidom
# New document
xml = minidom.Document()
# Creates user element
userElem = xml.createElement("user")
# Set attributes to user element
userElem.setAttribute("name", "Sergio Oliveira")
userElem.setAttribute("nickname", "seocam")
userElem.setAttribute("email", "seocam@taboca.com")
userElem.setAttribute("photo","seocam.png")
# Append user element in xml document
xml.appendChild(userElem)
# Print the xml code
print xml.toprettyxml()
</code></pre>
<p>The result is this:</p>
<pre><code><?xml version="1.0" ?>
<user email="seocam@taboca.com" name="Sergio Oliveira" nickname="seocam" photo="seocam.png"/>
</code></pre>
<p>Which is all very well if you wanted the attributes in email/name/nickname/photo order instead of name/nickname/email/photo order as they were created.</p>
<p><strong>How do you get the attributes to show up in the order you created them? Or, how do you control the order at all?</strong></p>
http://stackoverflow.com/questions/1732496/post-xml-to-net-web-service0Post XML to .net web serviceunknown (google)2009-11-13T23:16:20Z2009-11-13T23:16:20Z
<p>Hello,
I am a big noob to start off.
I typically use SOAPsonar to get a WSDL and then fill out the XML and then POST it</p>
<p>Now I want to be able to use Python to take an XML file and POST it to the same URL that I would use in SOAPSonar - Basically I want to do the same thing I do in SOAPSonar but, using Python.</p>
<p>I sure could use some help from a python pro</p>
<p>I have installed SUDS but, I am having trouble forming my code correctly</p>
http://stackoverflow.com/questions/8692/how-to-use-xpath-in-python5how to use xpath in pythonyeruham2008-08-12T11:28:36Z2009-11-13T23:11:17Z
<p>Is there a full implementation? How is the library used, where is its website?</p>
http://stackoverflow.com/questions/1719161/javascript-error-data-getelementsbytagname-is-not-a-function0javascript error: "data.getElementsByTagName is not a function"iceanfire2009-11-12T00:52:48Z2009-11-12T02:05:26Z
<p>Hi, I've spent hours on this stupid error, so any help would be appreciated!</p>
<p>I'm using Jquery to request xml from a python file hosted on google appengine. I'm then trying to process the xml.</p>
<p>Here's the response to the post request obtained from firebug:</p>
<pre><code><?xml version="1.0" encoding="ISO-8859-1"?><building key='agdhcHRydXNochALEglCdWlsZGluZ3MY3x4M' bldname='test'></building>
Status: 200 OK
Cache-Control: no-cache
Content-Type: application/xml
Content-Length: 0
</code></pre>
<p>And here's the javascript that handles the data:</p>
<pre><code>jQuery.post(toLoad,formInput,function(data){
alert(data.getElementsByTagName("building"));
})
</code></pre>
<p>Here's the error I get from firebug: </p>
<pre><code>data.getElementsByTagName is not a function
anonymous("<?xml version="1.0" encoding="ISO-8859-1"?><building key='agdhcHRydXNochALEglCdWlsZGluZ3MY4B4M' bldname='test'></building>\nStatus: 200 OK\r\nCache-Control: no-cache\r\nContent-Type: application/xml\r\nContent-Length: 0\r\n\r\n")viewBuilding.js (line 120)
I()jquery.min.js (line 19)
anonymous(6)jquery.min.js (line 19)
[Break on this error] alert(data.getElementsByTagName("building"));\n
</code></pre>
<p>I've used that particular bit of javascript in order parts of the site to process xml, so my gut tells me that the javascript is correct, maybe the format of the data is wrong? I'm stuck. :/</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/307616/xml-instance-generation-from-xml-schema-xsd1XML instance generation from XML schema (xsd)ErickJ2008-11-21T02:11:17Z2009-11-11T09:45:46Z
<p>I was wondering if there's a way I can automate the generation of XML files from XSD schemas given that I have the data and the labels. I'd like to do this in python/java. It seems very possible, yet I can't find any library that allows me to do this. I'm looking for a fairly quick solution..
Any ideas?</p>
<blockquote>
<p>See also: <a href="http://stackoverflow.com/questions/17106/how-to-generate-sample-xml-documents-from-their-dtd-or-xsd/730208#730208">how-to-generate-sample-xml-documents-from-their-dtd-or-xsd</a></p>
</blockquote>
http://stackoverflow.com/questions/1707890/fast-way-to-filter-illegal-xml-unicode-chars-in-python2Fast way to filter illegal xml unicode chars in python?itsadok2009-11-10T13:15:25Z2009-11-10T14:54:12Z
<p><a href="http://www.w3.org/TR/xml11/#charsets" rel="nofollow">XML specification</a> lists a bunch of Unicode characters that are either illegal or "discouraged". Now, given a string, what is the best way to remove all those illegal chars from it?</p>
<p>Right now, my best bet is a regular expression, but it's a bit of a mouthful:</p>
<pre><code>illegal_xml_re = re.compile(u'[\x00-\x08\x0b-\x1f\x7f-\x84\x86-\x9f\ud800-\udfff\ufdd0-\ufddf\ufffe-\uffff]')
clean = illegal_xml_re.sub('', dirty)
</code></pre>
<p>(Python 2.5 doesn't even know about Unicode chars above 0xFFFF, so no need to filter those)</p>
<p>My question is: is this the best/proper way to do this?<br>
Is there a more efficient or standard way?</p>
<p><strong>UPDATE</strong>: Based on kaizer.se's comment, a more correct regular expression would have to be constructed on the fly, like this:</p>
<pre><code>illegal_unichrs = [ (0x00, 0x08), (0x0B, 0x1F), (0x7F, 0x84), (0x86, 0x9F),
(0xD800, 0xDFFF), (0xFDD0, 0xFDDF), (0xFFFE, 0xFFFF),
(0x1FFFE, 0x1FFFF), (0x2FFFE, 0x2FFFF), (0x3FFFE, 0x3FFFF),
(0x4FFFE, 0x4FFFF), (0x5FFFE, 0x5FFFF), (0x6FFFE, 0x6FFFF),
(0x7FFFE, 0x7FFFF), (0x8FFFE, 0x8FFFF), (0x9FFFE, 0x9FFFF),
(0xAFFFE, 0xAFFFF), (0xBFFFE, 0xBFFFF), (0xCFFFE, 0xCFFFF),
(0xDFFFE, 0xDFFFF), (0xEFFFE, 0xEFFFF), (0xFFFFE, 0xFFFFF),
(0x10FFFE, 0x10FFFF) ]
illegal_ranges = ["%s-%s" % (unichr(low), unichr(high))
for (low, high) in illegal_unichrs
if low < sys.maxunicode]
illegal_xml_re = re.compile(u'[%s]' % u''.join(illegal_ranges))
</code></pre>
<p>I really wish someone could point me to a c implementation of this, perhaps in one of the many python xml libraries?</p>
http://stackoverflow.com/questions/1703882/python-xml-etree-elementtree-removing-namespaces0python: xml.etree.ElementTree, removing "namespaces"pygabriel2009-11-09T21:17:47Z2009-11-09T23:11:07Z
<p>I like the way ElementTree parses xml, in particular the Xpath feature. I've an output in xml from an application with nested tags.</p>
<p>I'd like to access this tags by name without specifying the namespace, is it possible?
For example:</p>
<pre><code>root.findall("/molpro/job")
</code></pre>
<p>instead of:</p>
<pre><code>root.findall("{http://www.molpro.net/schema/molpro2006}molpro/{http://www.molpro.net/schema/molpro2006}job")
</code></pre>
http://stackoverflow.com/questions/1659380/how-do-i-fetch-an-xml-document-and-parse-it-with-python-twisted0How do I fetch an XML document and parse it with Python twisted?Influx2009-11-02T04:06:11Z2009-11-06T21:16:18Z
<p>I want a fast way to grab a URL and parse it while streaming. Ideally this should be super fast. My language of choice is Python. I have an intuition that twisted can do this but I'm at a loss to find an example. </p>
http://stackoverflow.com/questions/1683144/django-streaming-dynamically-generated-xml-output-through-an-httpresponse0Django: Streaming dynamically generated XML output through an HttpResponseAndrew Brown2009-11-05T19:58:30Z2009-11-05T23:01:03Z
<p>Dear fellow users, </p>
<p>recently I wanted to return through a Django view a dynamically generated XML tree. The module I use for XML manipulation is the usual cElementTree.</p>
<p>I think I tackled what I wanted by doing the following:</p>
<pre><code>def view1(request):
resp = HttpResponse(g())
return resp
def g():
root = Element("ist")
list_stamp = SubElement(root, "list_timestamp")
list_creation = str(datetime.now())
for i in range(1,1000000):
root.text = str(i)
yield cET.tostring(root)
</code></pre>
<p>Is something like this a good idea ? Do I miss something ?</p>
http://stackoverflow.com/questions/1663077/how-do-i-loop-through-all-levels-of-a-data-structure-to-extract-all-data-when-i-d1How do I loop through all levels of a data structure to extract all data when I don't know how many levels there will be?efcjoe2009-11-02T19:13:27Z2009-11-02T20:02:28Z
<p>I need to extract data from a structure and put it into a list, but I don't know how many levels the structure has.</p>
<p>For each level, I can call <code>level.children()</code>, if there are no levels below the current one, it returns <code>[]</code>, if there are, it returns <code>[object, object, ...]</code>, on each of which I can call <code>children()</code> on again.</p>
<p>I need to drill down through the structure until I've extracted all levels of data into a list.</p>
<p>When based off a structure like this:</p>
<pre><code><name>John Smith</name>
<team link="http://teamwebsite.com">
<name>Team Name</name>
</team>
<games>
<location>
<venue>A stadium</venue>
</location>
</games>
</code></pre>
<p>The list should look something like this:</p>
<pre><code>[
[
{'name': 'name', 'attrs': {}, 'text': 'John Smith', 'parent': None},
],
[
{'name': 'team', 'attrs': {'link': 'http://teamwebsite.com'}, 'text': '', 'parent': None},
{'name': 'name', 'attrs': {}, 'text': 'Team Name', 'parent': 1}, # the reference to its parent's position in the list
],
[
{'name': 'games', 'attrs': {}, 'text': '', 'parent': None},
{'name': 'location', 'attrs': {}, 'text': '', 'parent': 1},
{'name': 'venue', 'attrs': {}, 'text': 'A stadium', 'parent': 2},
],
]
</code></pre>
<p>I'm trying to figure out the Python I would use to get from the data structure to my list. I need a kind of self-perpetuating for loop, but I can't come up with a good solution.</p>
<p>Anything to point me in the right direction? I'm sure there is some good theory for this kind of thing that I completely don't know about but would be happy to read.</p>
http://stackoverflow.com/questions/1662375/xml-etree-elementtree-equivalent-in-java1xml.etree.ElementTree equivalent in JavaMattias Nilsson2009-11-02T16:44:53Z2009-11-02T19:36:49Z
<p>I've been doing quite a bit of simple XML-processing in python and grown to like the <a href="http://docs.python.org/library/xml.etree.elementtree.html#module-xml.etree.ElementTree" rel="nofollow">ElementTree</a> way of doing things.</p>
<p>Is there something similar and as easy to use in Java? I find the DOM model a bit cumbersome and find myself writing much more code than I would like to do simple things.</p>
<p>Or am I asking the wrong thing?</p>
<p>Maybe my question is: Is there a better option than the "XMLUtils" classes I see people implementing in some places to simplify their code when dealing with DOM?</p>
<p><hr /></p>
<p>Adding a litte bit here about why I like ElementTree since the question was asked.</p>
<ul>
<li>Simplicity (I guess anything seems simple after working with DOM though)</li>
<li>Feels like a natural fit in python</li>
<li>Requires very little code on my part.</li>
</ul>
<p>I'm trying to come up with a simple code example to illustrate, but it's sort of hard to give a good example.
Here's an attempt though. This just adds a tag with a value and an attribute to an existing xml string.</p>
<pre><code>from xml.etree.ElementTree import *
xml_string = '<top><sub a="x"></sub></top>'
parsed = fromstring(xmlstring)
se = SubElement(parsed, "tag")
se.text = "value"
se.attrib["a"] = "x"
new_xml_string = tostring(parsed)
</code></pre>
<p>After that, the new_xml_string is </p>
<pre><code><top><sub a="x" /><tag a="x">value</tag></top>
</code></pre>
<p>Not an example that really covers everything, but still. There's also the fairly simple looping over tags when you want to do stuff, easy testing for presence of tags and attributes and other things.</p>
http://stackoverflow.com/questions/1662351/problem-with-the-new-lines-when-i-use-toprettyxml0problem with the new lines when I use toprettyxml()PierrOz2009-11-02T16:40:24Z2009-11-02T17:57:20Z
<p>Hi All,</p>
<p>I'm currently using the toprettyxml() function of the xml.dom module in a python script and I have some troubles with the newlines.
If don't use the newl parameter or if I use toprettyxml(newl='\n') actually it displays several new lines instead of only one.</p>
<p>For instance </p>
<pre><code>f = open(filename, 'w')
f.write(dom1.toprettyxml(encoding='UTF-8'))
f.close()
</code></pre>
<p>displayed:</p>
<pre><code><params>
<param name="Level" value="#LEVEL#"/>
<param name="Code" value="281"/>
</params>
</code></pre>
<p>Does anyone know where the problem comes from and how I can use it?
FYI I'm using Python 2.6.1</p>
http://stackoverflow.com/questions/1656611/grab-some-ofx-data-with-python2Grab some ofx data with python skyl2009-11-01T07:36:26Z2009-11-01T13:15:49Z
<p>I was trying to use <a href="http://www.jongsma.org/gc/scripts/ofx-ba.py" rel="nofollow">http://www.jongsma.org/gc/scripts/ofx-ba.py</a> to grab my bank account information from wachovia. Having no luck, I decided that I would just try to manually construct some request data using <a href="http://www.ofx.net/OFXExamplesPage/OFXExamples.aspx" rel="nofollow">this example</a></p>
<p>So, I have this file that I want to use as the request data. Let's call it req.ofxsgml:</p>
<pre><code>FXHEADER:100
DATA:OFXSGML
VERSION:102
SECURITY:NONE
ENCODING:USASCII
CHARSET:1252
COMPRESSION:NONE
OLDFILEUID:NONE
NEWFILEUID:NONE
<OFX>
<SIGNONMSGSRQV1>
<SONRQ>
<DTCLIENT>20071015021529.000[-8:PST]
<USERID>TheNameIuseForOnlineBanking
<USERPASS>MySecretPassword
<LANGUAGE>ENG
<FI>
<ORG>Wachovia
<FID>4309
</FI>
<APPID>Money
<APPVER>1700
</SONRQ>
</SIGNONMSGSRQV1>
<BANKMSGSRQV1>
<STMTTRNRQ>
<TRNUID>438BD6F4-2106-4C88-8DE5-7625915A2FC0
<STMTRQ>
<BANKACCTFROM>
<BANKID>061000227
<ACCTID>101555555555
<ACCTTYPE>CHECKING
</BANKACCTFROM>
<INCTRAN>
<INCLUDE>Y
</INCTRAN>
</STMTRQ>
</STMTTRNRQ>
</BANKMSGSRQV1>
</OFX>
</code></pre>
<p>Then, in python, I try:</p>
<pre><code>>>> import urllib2
>>> query = open('req.ofxsgml').read()
>>> request = urllib2.Request('https://pfmpw.wachovia.com/cgi-forte/fortecgi?servicename=ofx&amp;pagename=PFM',
query,
{ "Content-type": "application/x-ofx",
"Accept": "*/*, application/x-ofx"
})
>>> f = urllib2.urlopen(request)
</code></pre>
<p>This command gives me a 500 and <a href="http://dpaste.com/hold/114906/" rel="nofollow">this traceback</a>. I wonder what is wrong with my request. </p>
<p>Visiting the url with no data and no concern for headers,</p>
<pre><code>>>> f = urllib2.urlopen('https://pfmpw.wachovia.com/cgi-forte/fortecgi?servicename=ofx&amp;pagename=PFM')
</code></pre>
<p>yields the same thing as visiting <a href="https://pfmpw.wachovia.com/cgi-forte/fortecgi?servicename=ofx&pagename=PFM" rel="nofollow">that url</a> directly, </p>
<pre><code>HTTPError: HTTP Error 403: <BODY><H1>Request not allowed</H1></BODY>.
</code></pre>
<p>This is pretty obvious but just an observation. Everything on the subject seems to be pretty outdated. Hoping to write a simple python ofx module to open source. Maybe there is already something developed that I have not managed to find?</p>
<p><strong>EDIT</strong> -
If I make a flat mapping of the above information:</p>
<pre><code>d = {'ACCTID': '10555555',
'ACCTTYPE': 'CHECKING',
'APPID': 'Money',
'APPVER': '1700',
'BANKID': '061000227',
'DTCLIENT': '20071015021529.000[-8:PST]',
'FID': '4309',
'INCLUDE': 'Y',
'LANGUAGE': 'ENG',
'ORG': 'Wachovia',
'TRNUID': 'I18BD6F4-2006-4C88-8DE5-7625915A2FC0',
'USERID': 'm48m40',
'USERPASS': '12397'}
</code></pre>
<p>and then urlencode it and make the request with that as the data</p>
<pre><code>query=urllib.urlencode(d)
request = urllib2.Request('https://pfmpw.wachovia.com/cgi-forte/fortecgi?servicename=ofx&amp;pagename=PFM',
query,
{ "Content-type": "application/x-ofx",
"Accept": "*/*, application/x-ofx"
})
f = urllib2.urlopen(request)
HTTP Error 403: <BODY><H1>Request not allowed</H1></BODY>
</code></pre>
http://stackoverflow.com/questions/1644994/close-all-opened-xml-tags2Close all opened xml tagspyle2009-10-29T16:36:38Z2009-10-30T23:57:36Z
<p>Hello, I have a file, which change it content in a short time. But I'd like to read it before it is ready. The problem is, that it is an xml-file (log). So when you read it, it could be, that not all tags are closed.</p>
<p>I would like to know if there is a possibility to close all opened tags correctly, that there are no problems to show it in the browser (with xslt stylsheet). This should be made by using included features of python.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1650160/convert-to-amp-in-python0Convert & to & in PythonMatteo2009-10-30T14:33:02Z2009-10-30T14:38:08Z
<p>Hi!
I'm working on a simple crawler in Python. The aim is to create a sitemap.xml.
(you can find the very alpha version here: <a href="http://code.google.com/p/sitemappy/" rel="nofollow">http://code.google.com/p/sitemappy/</a>)
I noticed that if I generate the xml with URLs containing non HTML entities (such as &), the xml doesn't validate and it isn't accepted by Google Webmaster Tools.
Is there a quick way to encode the querystring part of the URLs?</p>
<p>Thank you!</p>
<p>Matteo</p>
http://stackoverflow.com/questions/1591579/python-how-to-update-a-xml-file0[python] How to update a xml file?nunos2009-10-19T22:52:30Z2009-10-30T07:34:59Z
<p>Hi.</p>
<p>I have a xml file that I would like to update after it has already data.</p>
<p>I thought about open the xml file in "a" (append) mode. The problem is that the new data will start to be dumped after the "root" tag has been closed.</p>
<p>What I wanted someone to be kind enough to tell me is how can I delete the last line of a file, and then start dumping data from that point on and then close the "root" tag.</p>
<p>Of course I could read the whole file and do some string manipulations, but I don't think this is the best idea..</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1629687/alter-xml-while-preserving-layout2Alter XML while preserving layoutJonatan2009-10-27T09:40:25Z2009-10-27T12:56:01Z
<p>What would you use to alter an XML-file while preserving as much as possible of layout, including indentation and comments?</p>
<p>My problem is that I have a couple of massive hand-edited XML-files describing a user interface, and now I need to translate several attributes to another language.</p>
<p>I've tried doing this using Python + ElementTree, but it did not preserve neither whitespace nor comments.</p>
<p>I've seen XSLT being suggested for similar questions, but I don't think that is an alternative in this case, since I need to do some logic and lookups for each attribute.</p>
<p>It would be preferable if attribute order in each element is preserved as well, but I can tolerate changed order.</p>
http://stackoverflow.com/questions/1623607/escaping-and-in-xml-when-using-xml-dom-minidom0Escaping '<' and '>' in xml when using xml.dom.minidombhaskar-jain20022009-10-26T08:13:28Z2009-10-26T11:53:21Z
<p>Hello all,</p>
<p>I am stuck while escaping "<" and ">" in the xml file using xml.dom.minidom.
I tried to get the unicode hex value and use that instead<br />
<a href="http://slayeroffice.com/tools/unicode%5Flookup/" rel="nofollow">http://slayeroffice.com/tools/unicode%5Flookup/</a> </p>
<p>Tried to use the standard "<" and ">" but still with no success.</p>
<pre><code>from xml.dom.minidom import Document
doc = Document()
e = doc.createElement("abc")
s1 = '<hello>bhaskar</hello>'
text = doc.createTextNode(s1)
e.appendChild(text)
e.toxml()
'<abc>&lt;hello&gt;bhaskar&lt;/hello&gt;</abc>'
</code></pre>
<p>same result with writexml()
Also tried by specifying encoding 'UTF-8', 'utf-8', 'utf' in the toxml() writexml() calls but with same results.</p>
<pre><code>from xml.dom.minidom import Document
doc = Document()
e = doc.createElement("abc")
s1 = u'&lt;hello&gt;bhaskar&lt;/hello&gt;'
text = doc.createTextNode(s1)
e.appendChild(text)
e.toxml()
u'<abc>&amp;lt;hello&amp;gt;bhaskar&amp;lt;/hello&amp;gt;</abc>'
</code></pre>
<p>Tried other ways but with same results.
Only way i could work-around is by overriding the writer</p>
<pre><code>import xml.dom.minidom as md
# XXX Hack to handle '<' and '>'
def wd(writer, data):
data = data.replace("&lt;", "<").replace("&gt;", ">")
writer.write(data)
md._write_data = wd
</code></pre>
<p><strong>Edit - This is the code</strong>.</p>
<pre><code> import xml.dom.minidom as md
doc = md.Document()
entity_descr = doc.createElement("EntityDescriptor")
doc.appendChild(entity_descr)
entity_descr.setAttribute('xmlns', 'urn:oasis:names:tc:SAML:2.0:metadata')
entity_descr.setAttribute('xmlns:saml', 'urn:oasis:names:tc:SAML:2.0:assertion')
entity_descr.setAttribute('xmlns:ds', 'http://www.w3.org/2000/09/xmldsig#')
# Get the entity_id from saml20_idp_settings
entity_descr.setAttribute('entityID', self.group['entity_id'])
idpssodescr = doc.createElement('IDPSSODescriptor')
idpssodescr.setAttribute('WantAuthnRequestsSigned', 'true')
idpssodescr.setAttribute('protocolSupportEnumeration',
'urn:oasis:names:tc:SAML:2.0:protocol')
entity_descr.appendChild(idpssodescr)
keydescr = doc.createElement('KeyDescriptor')
keydescr.setAttribute('use', 'signing')
idpssodescr.appendChild(keydescr)
keyinfo = doc.createElement('ds:KeyInfo')
keyinfo.setAttribute('xmlns:ds', 'http://www.w3.org/2000/09/xmldsig#')
keydescr.appendChild(keyinfo)
x509data = doc.createElement('ds:X509Data')
keyinfo.appendChild(x509data)
# check this part
s = "this is a cert blah blah"
x509cert = doc.createElement('ds:X509Certificate')
cert = doc.createTextNode(s)
x509cert.appendChild(cert)
x509data.appendChild(x509cert)
sso = doc.createElement('SingleSignOnService')
sso.setAttribute('Binding', 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect')
sso.setAttribute('Location', 'http://googleapps/singleSignOn')
idpssodescr.appendChild(sso)
# Write the metadata file.
fobj = open('metadata.xml', 'w')
doc.writexml(fobj, " ", "", "\n", "UTF-8")
fobj.close()
</code></pre>
<p>This produces</p>
<pre><code> <?xml version="1.0" encoding="UTF-8"?>
<EntityDescriptor entityID="skar" xmlns="urn:oasis:names:tc:SAML:2.0:metadata"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">
<IDPSSODescriptor WantAuthnRequestsSigned="true"
protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol">
<KeyDescriptor use="signing">
<ds:KeyInfo xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:X509Data>
<ds:X509Certificate>
this is a cert blah blah
</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
</KeyDescriptor>
<SingleSignOnService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect"
Location="http:///singleSignOn"/>
</IDPSSODescriptor>
</EntityDescriptor>
</code></pre>
<p>Note the "This is a cert" comes seperately
Have broken my head over this but with the same results.</p>