What SOAP libraries exist for Python 3.x? [closed] What SOAP libraries exist for Python 3.x? [closed] python python

What SOAP libraries exist for Python 3.x? [closed]


Depending on the complexity of the service, you could use ladon for the server side and mock up the client by hand until there's a better solution available.

Just call the service with suds (or similar) with logging turned on and note the SOAP wrapping on the request. Use that to wrap your request and call the service with plain http.

It's not an ideal solution, but it can get you by until you have a package to replace it.


I did this same search several months ago and came to the same conclusions. There really isn't much to choose from in this space. I ended up sticking with Python 2.7 and using SOAPy for my project because it was so easy to use. It may be discontinued but it still works. I figure that sometimes you just have to get your hands a little dirty and support yourself, that is why we are called programmers.


rpclib: seems the only active project. In their description, they say they are looking for volunteers to test it for Python 3. So maybe you should volunteer yourself!