0
votes
4answers
75 views
Python: Extract HTML from an XML file
My XML file looks like this:
<strings>
<string>Bla <b>One & Two</b> Foo</string>
</strings>
I want to extract the content of each <string> …
1
vote
2answers
109 views
Parsing XML in Python using ElementTree example
Hello,
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 …
0
votes
2answers
47 views
Pass XML fragments as stylesheet paramters with lxml?
I'm starting to use lxml 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 …
1
vote
1answer
44 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()
# …
0
votes
0answers
29 views
Post XML to .net web service
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
Now I want to be able to use Python to take an XML file and POST it to the same …
0
votes
3answers
124 views
javascript error: “data.getElementsByTagName is not a function”
Hi, I've spent hours on this stupid error, so any help would be appreciated!
I'm using Jquery to request xml from a python file hosted on google appengine. I'm then trying to process the xml.
Here's …
2
votes
1answer
66 views
Fast way to filter illegal xml unicode chars in python?
XML specification 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?
Right now, my best …
0
votes
3answers
48 views
python: xml.etree.ElementTree, removing “namespaces”
I like the way ElementTree parses xml, in particular the Xpath feature. I've an output in xml from an application with nested tags.
I'd like to access this tags by name without specifying the …
0
votes
4answers
96 views
Django: Streaming dynamically generated XML output through an HttpResponse
Dear fellow users,
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.
I think I tackled what I …
1
vote
2answers
124 views
How 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?
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.
For each level, I can call level.children(), if there are no levels below the …
1
vote
4answers
84 views
xml.etree.ElementTree equivalent in Java
I've been doing quite a bit of simple XML-processing in python and grown to like the ElementTree way of doing things.
Is there something similar and as easy to use in Java? I find the DOM model a …
0
votes
1answer
50 views
problem with the new lines when I use toprettyxml()
Hi All,
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 …
0
votes
3answers
114 views
How do I fetch an XML document and parse it with Python twisted?
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 …
2
votes
2answers
98 views
Grab some ofx data with python
I was trying to use http://www.jongsma.org/gc/scripts/ofx-ba.py to grab my bank account information from wachovia. Having no luck, I decided that I would just try to manually construct some request …
0
votes
2answers
87 views
Convert & to & in Python
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: http://code.google.com/p/sitemappy/)
I noticed that if I generate the xml …
