suds is a lightweight SOAP python client for consuming Web Services.
Sample Test
1 from suds.client import Client 2 url = 'http://192.168.2.1/tlkserverdld/ws.asmx?wsdl' 3 client = Client(url) 4 print( client.service.Add(5,6) )
Python/suds (last edited 2015-03-12 21:38:37 by 54)