Metadata-Version: 2.1
Name: gears-cli
Version: 1.1.0
Summary: RedisGears cli
Home-page: https://github.com/RedisGears/gears-cli
Author: RedisLabs
Author-email: oss@redislabs.com
License: UNKNOWN
Description: [![license](https://img.shields.io/github/license/RedisGears/gears-cli.svg)](https://github.com/RedisGears/gears-cli)
        [![PyPI version](https://badge.fury.io/py/gears-cli.svg)](https://badge.fury.io/py/gears-cli)
        [![CircleCI](https://circleci.com/gh/RedisGears/gears-cli/tree/master.svg?style=svg)](https://circleci.com/gh/RedisGears/gears-cli/tree/master)
        [![Releases](https://img.shields.io/github/release/RedisGears/gears-cli.svg)](https://github.com/RedisGears/gears-cli/releases/latest)
        [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/RedisGears/gears-cli.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/RedisGears/gears-cli/context:python)
        
        # gears-cli
        Simple cli that allows the send python code to RedisGears
        
        ## Install
        ```python
        pip install gears-cli
        ```
        
        ## Install latest code 
        
        ```python
        pip install git+https://github.com/RedisGears/gears-cli.git
        ```
        
        ## Usage
        ```
        Usage: __main__.py [OPTIONS] COMMAND [ARGS]...
        
        Options:
          --help  Show this message and exit.
        
        Commands:
          export-requirements   Export requirements from RedisGears
          import-requirements   Import requirements to RedisGears
          install-requirements  Install give requirements
          run                   Run gears function
        
        
        > gears-cli run --help
        Usage: __main__.py run [OPTIONS] FILEPATH [EXTRA_ARGS]...
        
          Run gears function
        
        Options:
          --host TEXT          Redis host to connect to
          --port INTEGER       Redis port to connect to
          --password TEXT      Redis password
          --requirements TEXT  Path to requirements.txt file
          --help               Show this message and exit.
        
        > gears-cli export-requirements --help
        Usage: __main__.py export-requirements [OPTIONS]
        
          Export requirements from RedisGears
        
        Options:
          --host TEXT             Redis host to connect to
          --port INTEGER          Redis port to connect to
          --password TEXT         Redis password
          --save-directory TEXT   Directory for exported files
          --output-prefix TEXT    Prefix for the requirement zip file
          --registration-id TEXT  Regisrations ids to extract their requirements
          --requirement TEXT      Requirement to export
          --all                   Export all requirements
          --help                  Show this message and exit.
        
        > gears-cli import-requirements --help
        Usage: __main__.py import-requirements [OPTIONS] [REQUIREMENTS]...
        
          Import requirements to RedisGears
        
        Options:
          --host TEXT               Redis host to connect to
          --port INTEGER            Redis port to connect to
          --password TEXT           Redis password
          --requirements-path TEXT  Path of requirements directory containing
                                    requirements zip files, could also be a zip file
                                    contains more requirements zip files
        
          --bulk-size INTEGER       Max bulk size to send to redis in MB
          --help                    Show this message and exit.
        
        > gears-cli install-requirements --help
        Usage: __main__.py install-requirements [OPTIONS] [REQUIREMENTS]...
        
          Install give requirements
        
        Options:
          --host TEXT               Redis host to connect to
          --port INTEGER            Redis port to connect to
          --password TEXT           Redis password
          --requirements-file TEXT  Path to requirements.txt file
          --help                    Show this message and exit.
        ```
        
Keywords: R,e,d,i,s,G,e,a,r,s, ,C,L,I
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Database
Description-Content-Type: text/markdown
