[XML-SIG] python and XML resources

Mike Brown mike at skew.org
Sun Aug 15 17:27:13 EDT 2004


Ajay wrote:
> does anyone know of good online resources on XML processing in Python.

Uche Ogbuji has quite a bit...

XML.com Python & XML columns:
  http://xml.com/pub/at/24

IBM developerWorks Python Web Services Developer columns:
  http://www-106.ibm.com/developerworks/webservices/library/ws-pythcol.html

Python & XML Akara:
http://uche.ogbuji.net/akara/nodes/2003-01-01/general-section?xslt=/akara/akara.xslt

4Suite Akara:
http://uche.ogbuji.net/akara/nodes/2003-01-01/4suite-section?xslt=/akara/akara.xslt

There used to be a PyXML Wiki at twistedmatrix.com but it disappeared
earlier this year and may be gone forever.

> I am using the PyXML package and have read the introductory XML HOWTO.
> what i am looking for is a more detailed and comprehensive coverage of the
> entire package - all the classes and functions etc

I tend to do this a lot:

$ python
>>> from xml.dom import *
>>> dir()
>>> print whatever.__doc__

"A-ha!" :)

-Mike



More information about the Python-list mailing list