suds-py3

travisci readthedocs

Suds is a lightweight SOAP python client for consuming Web Services.

Mirror of http://svn.fedorahosted.org/svn/suds/trunk/ supporting Python3 and some fixes.

Overview

The "Suds" web services client is a lightweight soap-based client for python the is licensed under LGPL.

For details, visit:

Since the original library is no longer supported and documentation also disappeared along with it.

A copy of the documentation is hosted at https://suds-py3.readthedocs.io/en/latest/

This is not my original documentation however I have reformatted to sphinx rST style and updated few parts to keep the code examples clean and working.

Pull requests are welcome for the docs.

Features

Installation

pip3 install suds-py3

Sample usage

from suds.client import Client
client = Client('http://localhost:8181/soap/helloservice?wsdl', username='bob', password='catbob')
result = client.service.sayHello('bob')
# result -> "Hello, bob!"

Examples

Examples folder contains sample SOAP services in JAVA, .NET WCF.

Example has a python client that loads WSDL from http://localhost:8181/soap/helloservice?wsdl <- This is served by one of the below services.

RUN Any one of the JAVA/.NET WCF services

RUN python examples/test_client.py to test whether this package is working properly.

Running JAVA Soap service

Running .NET WCF service