Tagged Questions

48
votes
8answers
43k views

how to use xpath in python

Is there a full implementation? How is the library used, where is its website?
44
votes
8answers
14k views

Pretty printing XML in python

What is the best way (or even the various ways) to pretty print xml in python?
25
votes
5answers
12k views

Validating with an XML schema in Python

Bounty: This is a 2 year old question. Is there a XSD validator for Python now? I have an XML file and an XML schema in another file and I'd like to validate that my XML file adheres to the ...
24
votes
14answers
3k 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 ...
23
votes
3answers
6k views

XML parsing - ElementTree vs SAX and DOM

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 ...
19
votes
18answers
4k 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 ...
17
votes
8answers
10k views

Best XML writing tool for Python

I'm currently trying ElementTree and it looks fine, it escapes HTML entities and so on and so forth. Am I missing something truly wonderful I haven't heard of? This is similar to what I'm actually ...
15
votes
2answers
2k 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 ...
15
votes
11answers
5k 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 ...
15
votes
6answers
10k views

Converting XML to JSON using Python?

I've seen a fair share of ungainly XML->JSON code on the web, and having interacted with Stack's users for a bit, I'm convinced that this crowd can help more than the first few pages of Google results ...
14
votes
3answers
4k views

Need Help using XPath in ElementTree

I am having a heck of a time using ElementTree 1.3 in Python. Essentially, ElementTree does absolutely nothing. My XML file looks like the following: <?xml version="1.0"?> ...
14
votes
2answers
3k views

How to generate XML documents with namespaces in Python

I'm trying to generate an XML document with namespaces, currently with Python's xml.dom.minidom: import xml.dom.minidom doc = xml.dom.minidom.Document() el = ...
13
votes
5answers
8k 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 ...
13
votes
6answers
5k 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, ...
12
votes
9answers
861 views

Really simple way to deal with XML in Python?

Musing over a recently asked question, I started to wonder if there is a really simple way to deal with XML documents in Python. A pythonic way, if you will. Perhaps I can explain best if i give ...
12
votes
6answers
7k 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 ...
12
votes
2answers
4k 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?
11
votes
7answers
4k views

Comparing XML in a unit test in Python

I have an object that can build itself from an XML string, and write itself out to an XML string. I'd like to write a unit test to test round tripping through XML, but I'm having trouble comparing the ...
11
votes
3answers
2k views

Why doesn't xpath work when processing an XHTML document with lxml (in python)?

I am testing against the following test document: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
10
votes
3answers
2k 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 ...
10
votes
3answers
5k views

How do I parse XML from a Google app engine app?

How do I parse XML from a Google app engine app? Any examples?
10
votes
6answers
7k views

What is the fastest way to parse large XML docs in Python?

I am currently the following code based on Chapter 12.5 of the Python Cookbook: from xml.parsers import expat class Element(object): def __init__(self, name, attributes): self.name = ...
10
votes
5answers
10k views

XML instance generation from XML schema (xsd)

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 ...
9
votes
2answers
161 views

What Python accessible tools can you use to generate XSD from an XML document?

I'm looking for a tool that will play nicely with Python. Except for my Python requirement, my question is the same as this one: "I am looking for a tool which will take an XML instance document ...
9
votes
3answers
226 views

Creating a simple scripting language in Python

I'm creating a GUI application that can monitor and manipulate a stream of messages. I'm trying to create a simple means to let the user script some of this functionality and I'm looking for possible ...
9
votes
2answers
2k views

Python: Escaping strings for use in XML

I'm using Python's xml.dom.minidom to create an XML document. (Logical structure -> XML string, not the other way around.) How do I make it escape the strings I provide so they won't be able to mess ...
8
votes
6answers
370 views

Full text searching XML data with Python: best practices, pros & cons

Task I want to use Python for doing full text searches of XML data. Example data <elements> <elem id="1">some element</elem> <elem id="2">some other element</elem> ...
8
votes
3answers
463 views

Is Python bad at XML? [closed]

EDIT The use of the phrase "bad at XML" in this question has been a point of contention, so I'd like to start out by providing a very clear definition of what I mean by this term in this context: if ...
8
votes
2answers
2k views

Decode HTML entities in Python string?

I'm trying to work out if there is a better way to achieve the following: from lxml import html from BeautifulSoup import BeautifulSoup soup = BeautifulSoup("<p>&pound;682m</p>") ...
8
votes
2answers
6k views

Parsing XML in Python using ElementTree example

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 ...
8
votes
3answers
8k views

Serialize Python dictionary to XML

There is simple JSON serialization module with name "simplejson" which easily serializes Python objects to JSON. I'm looking for similar module which can serialize to XML. Thank you
8
votes
8answers
1k 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
221 views

How to parse this huge XML file with nested elements using lxml the efficient way?

I tried parsing this huge XML document using XML minidom. While it worked fine on a sample file, it choked the system when trying to process the real file (about 400 MB). I tried adapting code (it ...
7
votes
3answers
205 views

Is there an elegant way to count tag elements in a xml file using lxml in python?

I could read the content of the xml file to a string and use string operations to achieve this, but I guess there is a more elegant way to do this. Since I did not find a clue in the docus, I am sking ...
7
votes
1answer
310 views

best way to implement custom pretty-printers

The documentation for the pprint module mentions that the method PrettyPrinter.format is intended to make it possible to customize formatting. I gather that it's possible to override this method in a ...
7
votes
7answers
1k views

I need a simple command line program to transform XML using an XSL Stylesheet

I am on OSX Snow Leopard (10.6.2) I can install anything I need to. I would preferably like a Python or Java solution. I have searched on Google and found lots of information on writing my own program ...
7
votes
3answers
791 views

DTD parser for Django/Python

Is there a tool that can generate Django models from a DTD? Failing that, are there any decent DTD parsers available for Python?
7
votes
7answers
1k views

easiest way to parse xml in python

I have many rows in a database that contain xml and I'm trying to write a python script that will go through those rows and count how many instances of a particular node attribute show up. for ...
7
votes
9answers
6k views

Create a GUI from a XML-Schema automatically

I have to write a desktop application to edit data stored in a XML File. The Format is defined by a XML Schema File (.xsd). The Format is quite complex. Are there tools which can generate a basic gui ...
7
votes
5answers
2k 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
3answers
1k views

Something similar to PHP's SimpleXML in Python?

Is there a way in Python to handle XML files similar to the way PHP's SimpleXML extension does them? Ideally I just want to be able to access certain xml datas from a list object.
7
votes
6answers
5k views

How to output CDATA using ElementTree

I've discovered that cElementTree is about 30 times faster than xml.dom.minidom and I'm redoing my XML encoding decoding code. However, I need to output XML that contains CDATA sections and there ...
7
votes
3answers
4k views

How do I create an xml document in python

It's my first time generating xml with python, and the python documentation, which is generally good, is really lacking for xml creation...here is my sample code: from xml.dom.minidom import * def ...
6
votes
2answers
129 views

Is there a way to get a line number from an ElementTree Element

So I'm parsing some XML files using Python 3.2.1's cElementTree, and during the parsing I noticed that some of the tags were missing attribute information. I was wondering if there is any easy way of ...
6
votes
1answer
540 views

Entity references and lxml

Here's the code I have: from cStringIO import StringIO from lxml import etree xml = StringIO('''<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [ <!ENTITY test "This is a test"> ...
6
votes
2answers
2k views

Is &#x10; a valid character in XML?

On this data: <row Id="37501" PostId="135577" Text="...uses though.&#x10;"/> I'm getting an error with the Python sax parser: xml.sax._exceptions.SAXParseException: ...
6
votes
2answers
5k views

All nodeValue fields are None when parsing XML

I'm building a simple web-based RSS reader in Python, but I'm having trouble parsing the XML. I started out by trying some stuff in the Python command line. >>> from xml.dom import minidom ...
6
votes
6answers
783 views

What's the easiest non-memory intensive way to output XML from Python?

Basically, something similar to System.Xml.XmlWriter - A streaming XML Writer that doesn't incur much of a memory overhead. So that rules out xml.dom and xml.dom.minidom. Suggestions?
5
votes
2answers
52 views

Retrieve data from XML python [closed]

I am trying to traverse the Google XML to retrieve about 6 fields. I am using gdata provided by Google to pull the XML feed for the user profiles in my Google Apps Domain. This is the result: ...
5
votes
4answers
101 views

Best way transform custom XML like syntax

Using Python. So basically I have a XML like tag syntax but the tags don't have attributes. So <a> but not <a value='t'>. They close regularly with </a>. Here is my question. I ...

1 2 3 4 5 20