Python wrapper for the Delighted API
Project description
================
Delighted Python
================
Python wrapper for the `Delighted API <https://delightedapp.com/docs/api>`_. Get
your pythonic NPS on!
Getting started is easy!
-----------------------
Install from pip::
sudo pip install DelightedPython
Basic Usage::
from delighted import Delighted
## Initialize with API Key
client = Delighted('<your_api_key_here>')
## Get a list of all survey responses
responses = client.survey_response.get()
Person Resource
---------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
People Resource Examples::
## Create a new person on delighted
client.person.create(email='getmynps@testing.com')
## Update a person record
client.person.update('getmynps@testing.com',
properties={'location': 'Boston'})
## Delete upcoming survey request for the given person
client.person.delete('getmynps@testing.com')
Survey Response Resource
------------------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
Survey Response Resource Examples::
## Post new response
client.survey_response.create(person=123, score=10, comment='What a great app!')
## List all responses
client.survey_response.get()
Metrics Resource
----------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
Metrics Resource Examples::
## Get NPS Metrics
client.metrics.get()
## Get NPS Metrics by Trend
client.metrics.get(trend=456)
Unit Tests
----------
To run unit test first add your test api key to delighted/test/test_delighted.py.
Then run the following::
python -m delighted.test.test_delighted
Important TODO's
----------------
1. Rework error throwing to be a bit more useful (see DelightedAPIError)
Acknowledgements
----------------
- The `Delighted <https://delightedapp.com/>`_ Team for creating a wonderful service and kick ass API
- Team `Testive <http://www.testive.com/>`_ for supporting the creation and open source of the wrapper
Delighted Python
================
Python wrapper for the `Delighted API <https://delightedapp.com/docs/api>`_. Get
your pythonic NPS on!
Getting started is easy!
-----------------------
Install from pip::
sudo pip install DelightedPython
Basic Usage::
from delighted import Delighted
## Initialize with API Key
client = Delighted('<your_api_key_here>')
## Get a list of all survey responses
responses = client.survey_response.get()
Person Resource
---------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
People Resource Examples::
## Create a new person on delighted
client.person.create(email='getmynps@testing.com')
## Update a person record
client.person.update('getmynps@testing.com',
properties={'location': 'Boston'})
## Delete upcoming survey request for the given person
client.person.delete('getmynps@testing.com')
Survey Response Resource
------------------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
Survey Response Resource Examples::
## Post new response
client.survey_response.create(person=123, score=10, comment='What a great app!')
## List all responses
client.survey_response.get()
Metrics Resource
----------------
See `the docs <https://delightedapp.com/docs/api>`_ for valid parameters and usage.
Metrics Resource Examples::
## Get NPS Metrics
client.metrics.get()
## Get NPS Metrics by Trend
client.metrics.get(trend=456)
Unit Tests
----------
To run unit test first add your test api key to delighted/test/test_delighted.py.
Then run the following::
python -m delighted.test.test_delighted
Important TODO's
----------------
1. Rework error throwing to be a bit more useful (see DelightedAPIError)
Acknowledgements
----------------
- The `Delighted <https://delightedapp.com/>`_ Team for creating a wonderful service and kick ass API
- Team `Testive <http://www.testive.com/>`_ for supporting the creation and open source of the wrapper
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file DelightedPython-0.0.1.6.tar.gz
.
File metadata
- Download URL: DelightedPython-0.0.1.6.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
40c75e6f3ff8db59106b0ed8f842af45e94fc448c80b262a5206713c4c2b339c
|
|
MD5 |
cacd6e508f44cf84e55ccf2057e550ef
|
|
BLAKE2b-256 |
6fa0d00b38072c3bcbe217e9b14a9b5a73656d119c0d21e80d8daba2dcc34f33
|