Skip to content

sporteasy/pynutshell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pynutshell

This is a simple Nutshell CRM client in Python. Nutshell API documentation: https://www.nutshell.com/api/

Usage

Get account

from pynutshell import NutshellCRMClient

client = NutshellCRMClient(email, api_key)
client.get_account(account_id)

Create account

from pynutshell import NutshellCRMClient

builder = AccountParamsBuilder(company)
builder.build_creation_params()
data = builder.params

client = NutshellCRMClient(email, api_key)
response = client.new_account(data)

Run tests

python setup.py test

About

A Nutshell CRM python client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%