RosettaCodeData/Task/SOAP/Python/soap.py

5 lines
146 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
from SOAPpy import WSDL
proxy = WSDL.Proxy("http://example.com/soap/wsdl")
result = proxy.soapFunc("hello")
result = proxy.anotherSoapFunc(34234)