Metadata-Version: 2.1
Name: pybritive
Version: 0.3.0
Summary: A pure Python CLI for Britive
Home-page: https://www.britive.com
Author: Britive Inc.
Author-email: support@britive.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

---
**NOTE**

This is a BETA release. This codebase should not be used for production workloads.

---

# Britive CLI - Pure Python Implementation

PyBritive is intended to be used as a CLI application for communicating with the Britive Platform.

## Installation

`pybritive` will be installed via Python `pip`. 

~~~bash
pip install pybritive
~~~

Or you can always pull the latest version directly from Github using one of the following commands.

~~~
pip install $(curl -s https://api.github.com/repos/britive/python-cli/releases/latest | jq -r '.assets[] | select(.content_type == "application/x-gzip") | .browser_download_url')

OR

pip install $(curl -s https://api.github.com/repos/britive/python-cli/releases/latest | grep "browser_download_url.*.tar.gz" | cut -d : -f 2,3 | tr -d \")
~~~

The end user is free to install the CLI into a virtual environment or in the global scope, so it is available
everywhere.


## Documentation

https://britive.github.io/python-cli/


