0
votes
1answer
24 views
lxml Changing Unicode Characters
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:
fil='iTunes …
0
votes
4answers
80 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
121 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
48 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
45 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
3answers
128 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 …
1
vote
12answers
235 views
Parsing XML - right scripting languages / packages for the job?
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, …
0
votes
4answers
101 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 …
0
votes
3answers
117 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 …
1
vote
2answers
126 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 …
2
votes
1answer
72 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 …
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 …
2
votes
5answers
86 views
Close all opened xml tags
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 …
0
votes
2answers
89 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 …
0
votes
0answers
30 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 …
