12
votes
17answers
957 views
Viable alternative to XSLT?
I have used XSLT for a few different things over the years. I got used to it, but never felt like I really understood it all the way through. It always seems like I have to experiment to get the …
10
votes
12answers
1k views
XML Processing in Python
I'm about to build a piece of a project that will need to build and post an xml document to a web service, and I'd like to do it in Python as a means to expand my skills there. Unfortunately, while I …
8
votes
2answers
276 views
Is there any Python XML parser that was designed with humans in mind?
I like Python, but I don't want to write 10 lines just to get an attribute from an element. Maybe it's just me, but minidom isn't that mini. The code I have to write in order to parse something using …
8
votes
8answers
944 views
How do you install lxml on OS X Leopard without using MacPorts or Fink?
I've tried this and run in to problems a bunch of times in the past. Does anyone have a recipe for installing lxml on OS X without MacPorts or Fink that definitely works?
Preferably with complete …
8
votes
3answers
2k views
XML Parsing - SAX vs. DOM. vs. ElementTree
Python has several ways to parse XML...
I understand the very basics of parsing with SAX. It functions as a stream parser, with an event-driven API.
I understand the DOM parser also. It reads the …
7
votes
5answers
533 views
Splitting a large XML file in Python
I'm looking to split a huge XML file into smaller bits. I'd like to scan through the file looking for a specific tag, then grab all info between and , then save that into a file, then continue on …
7
votes
8answers
700 views
Which language is easiest and fastest to work with XML content?
We have developers with knowledge of these languages - Ruby , Python, .Net or Java. We are developing an application which will mainly handle XML documents. Most of the work is to convert predefined …
7
votes
2answers
924 views
How do I validate xml against a DTD file in Python
I need to validate an XML string (and not a file)
against a DTD description file.
How can that be done in python?
5
votes
5answers
688 views
Pretty printing XML in python
What is the best way (or even the various ways) to pretty print xml in python?
5
votes
4answers
1k views
How to convert XML to JSON in Python?
I'm doing some work on App Engine and I need to convert an XML document being retrieved from a remote server into an equivalent JSON object.
I'm using xml.dom.minidom to parse the XML data being …
5
votes
5answers
1k views
Pure Python XSLT library
Is there an XSLT library that is pure Python?
Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.
I really only need basic XSLT support, …
5
votes
5answers
5k views
how to use xpath in python
Is there a full implementation? How is the library used, where is its website?
4
votes
2answers
155 views
Creating SVGs using Python
I'm building a set of SVG files that include an unfortunate number of hardcoded values (they must print with some elements sized in mm, while others must be scaled as a percent, and most of the values …
4
votes
3answers
151 views
Getting DOM tree of XML document
Does anyone know how I would get a DOM instance (tree) of an XML file in Python. I am trying to compare two XML documents to eachother that may have elements and attributes in different order. How …
4
votes
4answers
733 views
How can I create a Word document using Python?
I'd like to create a Word document using Python, however, I want to re-use as much of my existing document-creation code as possible. I am currently using an XSLT to generate an HTML file that I …
