Skip to main content

Simple Web Service development API based on suds

Project description

easywsy Documentation

easywsy is a high-level API based on suds for developing connections to any Web Service. The main feature is the readability and simpleness of the code required to connect to a Web Service.

For example, this code connects to a Web Service, and use one of its functions to sum two numbers:

from easywsy import WebService

class WSCalc(WebService):
ws = WSCalc(WSURL)
request_data = {
    'Add': {
        'intA': 10,
        'intB': 20,
    }
}
ws.add(request_data)
response = ws.request('Add')
# response will then be 30

Another big feature is the support for dynamic checks on the fields sent to the Web Service. This allows the developer to check the values that will be send to the Web before sending them, preventing a connection to the internet that will always return an error.

This is achieved through method decoration as follows:

from easywsy import wsapi

@wsapi.check(['intA', 'intB'])
def validation_method(value):
    if isinstance(value, int):
        return True
    else:
        return False

Following the previous example, this method will be called twice, each time with the value of intA and intB in the value paramenter. If the method returns False, a predefined error will be raised, and if it returns True, the flow continues.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easywsy-4.0.1.tar.gz (9.8 kB view details)

Uploaded Source

File details

Details for the file easywsy-4.0.1.tar.gz.

File metadata

  • Download URL: easywsy-4.0.1.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.15rc1

File hashes

Hashes for easywsy-4.0.1.tar.gz
Algorithm Hash digest
SHA256 7c62189f5f86f60b7767145d6da3bbb0d87b78b02073eb247376640a0a1905a5
MD5 8f91fc05d9e960ba18d3b8fe3467d4aa
BLAKE2b-256 ed30f8459510629684356cc096d0857c0405c96c83e7e5d35f7e6871369c9e18

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page