What's the best soap client library for Python, and where is the documentation for it? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:15:06Zhttp://stackoverflow.com/feeds/question/206154http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo21What's the best soap client library for Python, and where is the documentation for it?blackrobot2008-10-15T19:50:07Z2009-10-01T16:18:38Z
<p>I've never used SOAPs before and I'm sorta new to Python. I'm doing this to get myself acquainted with both technologies. I've installed <a href="http://trac.optio.webfactional.com/wiki/soaplib" rel="nofollow">SOAPlib</a> and I've tried to read their <a href="http://trac.optio.webfactional.com/wiki/Client" rel="nofollow">Client</a> documentation, but I don't understand it too well. Is there anything else I can look into which is more suited for being a SOAP Client library for python?</p>
<p>Thanks in advance for the help :)</p>
<p>edit: Just in case it helps, I'm using Python 2.6</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206167#2061670Answer by Daren Thomas for What's the best soap client library for Python, and where is the documentation for it?Daren Thomas2008-10-15T19:56:53Z2008-10-15T19:56:53Z<p>Could this help: <a href="http://users.skynet.be/pascalbotte/rcx-ws-doc/python.htm#SOAPPY" rel="nofollow">http://users.skynet.be/pascalbotte/rcx-ws-doc/python.htm#SOAPPY</a></p>
<p>I found it by searching for <code>wsdl</code> and <code>python</code>, with the rational being, that you would need a wsdl description of a SOAP server to do any useful client wrappers....</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206174#2061740Answer by Just Some Guy for What's the best soap client library for Python, and where is the documentation for it?Just Some Guy2008-10-15T19:59:16Z2008-10-15T19:59:16Z<p>We'd used SOAPpy from <a href="http://pywebsvcs.sourceforge.net/" rel="nofollow">Python Web Services</a>, but it seems that ZSI (same source) is replacing it.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206186#2061867Answer by Rajesh for What's the best soap client library for Python, and where is the documentation for it?Rajesh2008-10-15T20:04:59Z2008-10-15T20:04:59Z<p>I had good experience with SUDS
https://fedorahosted.org/suds</p>
<p>Used their TestSuite as documentation.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206964#20696437Answer by Samat Jain for What's the best soap client library for Python, and where is the documentation for it?Samat Jain2008-10-16T00:05:22Z2009-10-01T16:18:38Z<p>Unfortunately, at the moment, I don't think there is a "best" Python SOAP library. Each of the mainstream ones available has its own pros and cons.</p>
<p>Older libraries:</p>
<ul>
<li><a href="http://soapy.sourceforge.net" rel="nofollow">SOAPy</a>: Was the "best," but no longer maintained. Does not work on Python 2.5+</li>
<li><a href="http://pywebsvcs.sourceforge.net" rel="nofollow">ZSI</a>: Very painful to use, and development is slow. Has a module called "SOAPpy", which is different than SOAPy (above).</li>
</ul>
<p>"Newer" libraries:</p>
<ul>
<li><a href="https://fedorahosted.org/suds" rel="nofollow">SUDS</a>: Very Pythonic, and easy to create WSDL-consuming SOAP clients. Creating SOAP servers is a little bit more difficult.</li>
<li><a href="http://github.com/jkp/soaplib" rel="nofollow">soaplib</a>: Creating servers is easy, creating clients a little bit more challenging.</li>
</ul>
<p>Of the above, I've only used SUDS personally, and I liked it a lot.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/207074#2070740Answer by Greg for What's the best soap client library for Python, and where is the documentation for it?Greg2008-10-16T01:00:24Z2008-10-16T01:00:24Z<p>As I suggested <a href="http://stackoverflow.com/questions/115316/how-can-i-consume-a-wsdl-soap-web-service-in-python#115702">here</a> I recommend you roll your own. It's actually not that difficult and I suspect that's the reason there aren't better Python SOAP libraries out there.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/1180842#11808420Answer by Mike for What's the best soap client library for Python, and where is the documentation for it?Mike2009-07-25T00:59:26Z2009-07-25T00:59:26Z<p>Suds is the way to go, no question about it.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/1237630#12376304Answer by sstock for What's the best soap client library for Python, and where is the documentation for it?sstock2009-08-06T08:33:31Z2009-08-06T08:33:31Z<p>I followed the advice of other answers to this question and gave <a href="https://fedorahosted.org/suds" rel="nofollow" title="SUDS">SUDS</a> a try. After using it "in anger" I must agree: SUDS is very nice! Highly recommended!</p>
<p>I did run into trouble calling HTTPS-based web services from behind a proxy. At the time of this writing, this affects <strong>all</strong> Python web-service clients that use <code>urllib2</code>, so I'll document the solution here. </p>
<p>The <code>urllib2</code> module shipping with python 2.6.2 and below will not issue a <code>CONNECT</code> to the proxy for HTTPS-over-HTTP-proxy sessions. This results in a long timeout, or if you are lucky, an error that looks like:</p>
<pre><code>abort: error: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
</code></pre>
<p>This is <a href="http://bugs.python.org/issue1424152" rel="nofollow">issue1424152</a> on the Python bug tracker. There are patches attached to the bug report that will fix this in Python 2.x and Python 3.x.</p>
http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/1289572#12895720Answer by Jeff for What's the best soap client library for Python, and where is the documentation for it?Jeff2009-08-17T18:24:27Z2009-08-17T18:24:27Z<p>anyone have an example of a SUDS web services server...their client is great.</p>