Skip to content

pombredanne/lather

 
 

Repository files navigation

Lather

Build Status Coverage Status Code Climate

Application which provides an django like interface to interact with SOAP APIs.

Requirements

  • suds: 0.4
  • python-ntlm3

Setup

  • pip install https://github.com/ctxis/lather/archive/master.zip

and then you can use this library like this:

## models.py

from lather import models

class Customer(models.Model):
    pass

customer = Customer.objects.get(user='test')


## settings.py

from lather import client
import models

client = client.LatherClient()
client.register(models.Customer)

Specifically supported SOAP APIs

  • Microsoft Dynamics NAV Web Services

About

A simple library to interact with SOAP APIs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%