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.

Leave a Comment