Metadata-Version: 2.0
Name: bonsai-cli
Version: 0.4.0
Summary: A python library for making API calls to Bonsai BRAIN.
Home-page: http://github.com/BonsaiAI/bonsai-cli
Author: Bonsai Engineering
Author-email: opensource@bons.ai
License: BSD
Keywords: bonsai
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Natural Language :: English
Requires-Dist: click (>=6.6)
Requires-Dist: requests (>=2.11)
Requires-Dist: tabulate (>=0.7.5)
Requires-Dist: bonsai-config (>=0.3.0)

Bonsai CLI
==========
A python library for making API calls to Bonsai BRAIN.

Installation
------------

Install the latest stable from PyPI:
```
$ pip install bonsai-cli
```

Install the latest in-development version:
```
$ pip install https://github.com/BonsaiAI/bonsai-cli
```

Usage
-----
After first install, or when authentication credentials need to be refreshed:
```
$ bonsai configure
```
Load a new or existing brain and initiate training:
```
$ bonsai brain load brain_name /path/to/file.ink
$ bonsai brain train brain_name
```
Load an existing brain and deploy it for production use:
```
$ bonsai brain load brain_name /path/to/file.ink
$ bonsai brain deploy brain_name
```


