Python module for the CognitiveScale Cortex Cognitive Platform
Project description
Python Module for the Cortex Cognitive Platform
The Cortex Python module provides an API client library to easily integrate with the Cortex Cognitive Platform. Refer to the Cortex documentation for details on how to use the library:
- Developer guide: https://docs.cortex.insights.ai/docs/developer-guide/overview/
- Cortex Python references: https://docs.cortex.insights.ai/docs/developer-guide/reference-guides
Installation
To install:
> pip install cortex-python
or from source code:
> git clone git@github.com:CognitiveScale/cortex-python.git
> cd cortex-python
> pip install -e .
To install the optional components:
> pip install cortex-python[viz]
> pip install cortex-python[jupyter]
> pip install cortex-python[builders]
Development
Setup
When developing, it's a best practice to work in a virtual environment. Create and activate a virtual environment:
> virtualenv --python=python3.6 _venv
> source _venv/bin/activate
Install developer dependencies:
> git clone git@github.com:CognitiveScale/cortex-python.git
> cd cortex-python
> make dev.install
There's a convenience Makefile
that has commands to common tasks, such as build, test, etc. Use it!
Testing
Unit Tests
Follow above setup instructions (making sure to be in the virtual environment and having the necessary dependencies)
make test
to run test suite
To run an individual file or class method, use pytest. Example tests shown below:
- file:
pytest test/unit/agent_test.py
- class method:
pytest test/unit/agent_test.py::TestAgent::test_get_agent
Publishing an alpha build
Suppose you want to release new functionality so it can be installed without releasing a new official version. We need to use an alpha version in PyPi.
- we need to create and publish an alpha release:
- get credentials to the
cortex-python
pypi CognitiveScale account (via lastpass) - run
make dev.push TAG=<alpha release number>
. Example:make dev.push TAG=1
Contribution
After contributing to the library, and before you submit changes as a PR, please do the following
- Run unit tests via
make test
- Manually verification (i.e. try the new changes out in Cortex) to make sure everything is going well. Not required, but highly encouraged.
- Bump up
setup.py
version and update theCHANGELOG.md
Documentation
The package documentation is built with Sphinx. To build the documentation:
> make docs
The documentation will be rendered in HTML format under the docs/_build/html
directory.
Activate your virtual environment:
> source _venv/bin/activate
Setup your environment, if you have not done so:
> make dev.install
Pre-release to staging
- Create and push an alpha release:
Where> make dev.push TAG=1
TAG
is the alpha version number. This will build an alpha-tagged package. - Merge
develop
tostaging
branch:> make stage
- In GitHub, create a pull request from
staging
tomaster
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for cortex_python-1.0.0a1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 273c4535287a0989b20eb6cb4753323c64324d08712ed1a3b547ec0dd96376f4 |
|
MD5 | 3606bab0e6ce4940634ce9f43993afc1 |
|
BLAKE2b-256 | 213cdf1ed94cf469952ed96126de799677c46bbb7414b49f76eb01ccd72e6ad4 |