Metadata-Version: 2.1
Name: kimoby
Version: 0.0.7
Summary: Python module to interact with the Kimoby REST API
Home-page: https://github.com/regg00/kimoby
Author: Régis Tremblay Lefrançois
Author-email: regg00@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/regg00/kimoby/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: phonenumbers

## Project description
Python module to interact with the Kimoby REST API.

## Proofpoint Result API

See the [REST API full documentation](https://api-doc.kimoby.com/) for more information.

## Installation
```
pip install kimoby
```

## Supported endpoints
* Customers
  * [List Customers](https://api-doc.kimoby.com/#customers7_customers_listhtml) - *get_customers()*
  * [Retrieve a Customer](https://api-doc.kimoby.com/#customers6_customer_retrievehtml) - *get_customer()*
  * [Create a Customer](https://api-doc.kimoby.com/#customers4_customer_createhtml) - *create_customer()*
  * [Delete a Customer](https://api-doc.kimoby.com/#customers8_customer_deletehtml) - *delete_customer()*
* Message
  * [Send a Message](https://api-doc.kimoby.com/#messages2_message_sendhtml) - *send_message()*

