Application which provides an django
like interface to interact with SOAP APIs.
- suds: 0.4
- python-ntlm3
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)
- Microsoft Dynamics NAV Web Services