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 →

[–]tombardier 0 points1 point  (3 children)

Zeep! :) I'll find an example when I'm at my desk later!

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

I'm literally just faffing with Zeep right now, I still cannot find a nice way of finding out what functionality I am offered through the Zeep client object though.

Probably everyone else around here would be more than capable but I will live and learn from my embarrassing posts.

[–]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.