Metadata-Version: 2.1
Name: planhat
Version: 0.2.0
Summary: Python client for Planhat API
Home-page: https://github.com/nick-allen/planhat-python
License: MIT
Keywords: planhat
Author: Nick Allen
Author-email: nick.allen.cse@gmail.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests[security] (>=2.13,<3.0)
Project-URL: Repository, https://github.com/nick-allen/planhat-python
Description-Content-Type: text/markdown

Planhat Python
==============

Planhat API Python client library

https://docs.planhat.com/

## Installation



## Usage

```python
from planhat import Planhat

# See https://docs.planhat.com/#base-url
from planhat import API_URL, API_URL_EU, API_URL_US2

# https://app.planhat.com/developer
planhat_client = Planhat(
    API_URL,
    'tenant-token',
    'api-token'
)

companies_data = planhat_client.get_companies()
```

