Metadata-Version: 2.1
Name: evolvcli
Version: 1.0.0
Summary: CLI user for creating and maintaining Evolv experiments.
Home-page: https://github.com/evolv-ai/experiment-management-cli
Author: Frazer Bayley
Author-email: frazer.bayley@evolv.ai
License: Apache License 2.0
Download-URL: https://github.com/evolv-ai/experiment-management-cli/archive/1.0.0.tar.gz
Description: Evolv CLI
        ====================================
        
        [![image](https://img.shields.io/pypi/v/evolvcli.svg)](https://pypi.org/project/evolvcli/)
        [![image](https://img.shields.io/pypi/l/evolvcli.svg)](https://pypi.org/project/evolvcli/)
        [![image](https://img.shields.io/pypi/pyversions/evolvcli.svg)](https://pypi.org/project/evolvcli/)
        
        The experiment management CLI provides functionality to create and maintain Evolv experiments.
        
        ## Setup
        
        Pre-requisites: You must have Python 3.7 installed on your computer.
        
        1. Create a Python vitual environment and install the cli.
            ```bash
            python3 -m venv .venv
            source .venv/bin/activate
            pip install evolvcli
            ```
            
        2. Ensure the CLI is properly installed by calling the cli. You must be in the virtual environment
           you created to use the cli. 
            ```bash
            evolv
            ```
            You should see a help menu appear in your terminal.
        
        ## Quickstart
        
        To start using the CLI obtain your account id from Evolv staff.
        
        1. Export your account id as an environment variable.
        
            ```bash
            export EVOLV_ACCOUNT_ID=<your account id>
            ```
            
        2. To test the cli is working use the "get account" command.
        
            ```bash
            evolv get account
            ```
            
        3. The system will prompt you to enter your Evolv email and password.
        
        4. Once logged in you will not have to login again till your credentials expire.
        
        ## Other Commands
        
        To find out more about the CLI commands and how to use them use the `--help` option.
        
        For example: `evolv get --help`
        
        Possible sub commands include:
        
        ```bash
        evolv get
        evolv list
        evolv create
        evolv update
        ```
        
Keywords: cli,Evolv,experiments,optimization
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
