Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

datadesk/python-desknet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-desknet

A simple Python wrapper for the DeskNet API.

Build Status PyPI version Coverage Status Documentation Status

Installation

pip install python-desknet

Basic usage

Importing the library

from desknet import DeskNet

Creating a new client that can talk to the API

client = DeskNet("your_client_name", "your_client_secret")

Create a new element by submitting keyword arguments that correspond what's supported by DeskNet. There is no cleaning or preprocessing. DeskNet has to like what you submit. A dictionary is returned with what was saved to the site, including a unique identifier.

element = client.create(title='This is my budget item')