Metadata-Version: 2.0
Name: bonsai-cli
Version: 0.6.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 :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: BSD 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: Natural Language :: English
Requires-Dist: bonsai-config (>=0.4.0)
Requires-Dist: click (>=6.6)
Requires-Dist: requests (>=2.11)
Requires-Dist: tabulate (>=0.7.5)

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
```

Alpha users:
1 - On the alpha site, generate an Access Key.
2 - Patch `~/.bonsai` with:
```
bonsai switch alpha --url https://alpha-api.int.bons.ai
bonsai configure
```

Load a new or existing brain and initiate training:
```
$ bonsai create brain_name
$ bonsai load /path/to/file.ink
$ bonsai train start
```


