Metadata-Version: 2.1
Name: captn-nanobit-client
Version: 0.0.5
Summary: Project for captn-nanobit client
Home-page: https://gitlab.com/airt.ai/captn/captn-nanobit-client/tree/master/
Author: Kumaran Rajendhiran
Author-email: kumaran@airt.ai
License: Apache Software License 2.0
Keywords: captn,nanobit,airt,airt.ai
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pip
Requires-Dist: packaging
Requires-Dist: pandas
Requires-Dist: requests
Provides-Extra: dev

# Capt'n AI for Nanobit
> Marketing campaigns optimization


## Install

`pip install captn-nanobit-client`

## How to use 


```python
from captn_nanobit_client.api import authorize, predict
from captn_nanobit_client.testing import get_test_dataframe

# server is one of "staging" or "production"
server = "staging"

token = authorize(username=username, password=password, server=server)
```

Get pandas dataframe

```python

df = get_test_dataframe()
```

Run the code below to make a prediction

```python
prediction = predict(df, token=token)
```


