views:

502

answers:

2

Elementree has become the accepted standard for interacting with xml. What is the prevalent web service/SOAP library in use today?

+1  A: 

I'm not sure about an accepted standard, but I've found SOAPpy to be fairly straight-forward and useful library for handling SOAP-based web services.

SOAPy is a SOAP/XML Schema Library for Python. Given either a WSDL or SDL document, SOAPy discovers the published API for a web service and exposes it to Python applications as transparently as possible.

IBM provide a good walk-through and example on their site for getting started with SOAPpy.

SOAPpy's no longer under active development, but is instead being folded into Zolera SOAP Infrastructure (ZSI) at the Python Web Services Project. This project however has alos not seen much activity since November last year.

ConroyP
I've seen a lot of talk about SOAPpy but it doesn't appear to be an active project. The SF page you linked only has a .1 from 2001.
Sam Corder
It's not active anymore, but is still useful at the very least as an introduction to web services in Python. Edited the answer to (hopefully!) make project status a little clearer, thanks!
ConroyP
A: 

soaplib is very easy to use and seems to be active.

http://wiki.github.com/jkp/soaplib/