Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 537 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 537 Bytes

delighted-python

A CLI client and Python API library for the delighted platform.

Install

This can be installed via the pypi package using:

$ pip install delighted

Usage

$ export DELIGHTED_APIKEY="your api key here"
$ python
>>> from delighted import Delighted
>>> delighted = Delighted()
>>> delighted.metrics.get()
{u'passive_count': 4, u'promoter_percent': 40.74074074074074, ... }

Run Tests

$ py.test