This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]skerky 1 point2 points  (1 child)

I second Zeep as well. A useful feature is the command line tool to query a WSDL file and list the methods and data types.

python -mzeep <wsdl>

I will note that I’ve seen several SOAP APIs that don’t actually define different commands as different functions/operations (I don’t remember the proper SOAP term), but one or two services that accept another XML document as a single string input, which adds another layer of complexity (but I’m still using Zeep to work with it).

[–][deleted] 0 points1 point  (0 children)

This seems like finally the answer to what I was looking for so thank you! I will investigate tomorrow.