Python Forum
SOAP based webservice invoke - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: SOAP based webservice invoke (/thread-16684.html)



SOAP based webservice invoke - mehrdadabedi - Mar-10-2019

Hello all

I have project to do which include invoking a web service and some values return to my python code.
the company which provided the API claims that their API is SOAP based ,
actually I recently started studying python for this particular project.
NOW I need guidance on how can I invoke their API , which obviously returns XML output of some sort , and
manage the output in my own code.
I am using python 3.7


RE: SOAP based webservice invoke - mlieqo - Mar-10-2019

For SOAP I would suggest using zeep - https://python-zeep.readthedocs.io/en/master/ .
Docs are pretty clear but if you'll need some further assistance, ask! :)