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

Latest commit

 

History

History
39 lines (27 loc) · 1.63 KB

README.md

File metadata and controls

39 lines (27 loc) · 1.63 KB

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')