Tagged Questions

0
votes
4answers
52 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 …
0
votes
3answers
62 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 …
1
vote
2answers
110 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 le …
1
vote
4answers
51 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 fin …
2
votes
5answers
69 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 co …
0
votes
2answers
70 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 …
2
votes
2answers
74 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 cons …
0
votes
1answer
36 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 …
0
votes
12answers
181 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 sta …
0
votes
2answers
96 views

Escaping ‘<’ and ‘>’ in xml when using xml.dom.minidom

Hello all, 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 http://slayeroffice.com/to …
2
votes
2answers
50 views

Alter XML while preserving layout

What would you use to alter an XML-file while preserving as much as possible of layout, including indentation and comments? My problem is that I have a couple of massive hand-edit …
0
votes
6answers
99 views

[python] How to update a xml file?

Hi. I have a xml file that I would like to update after it has already data. I thought about open the xml file in "a" (append) mode. The problem is that the new data will start t …
0
votes
2answers
29 views

Setting value for a node in XML document in Python

I have a XML document "abc.xml": I need to write a function replace(name, newvalue) which can replace the value node with tag 'name' with the new value and write it back to the d …
0
votes
3answers
114 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 r …
0
votes
2answers
72 views

Python xpath not working?

Okay, this is starting to drive me a little bit nuts. I've tried several xml/xpath libraries for Python, and can't figure out a simple way to get a stinkin' "title" element. The l …

1 2 3 4 5 12 next
15 30 50 per page