The CloudBlue Connect Command Line Interface (CLI) is an extensible unified tool to perform various automation scenarios. With just one tool, you can control multiple Connect modules from the command line and automate them through scripts.
Since it is extensible, users can write their own plugins to extend its functionalities.
connect-cli depends on Git, Cairo,
Pango and GDK-PixBuf.
Please refers to the platform-specific instructions on how to install these dependecies:
To use connect-cli you need a system with python 3.8 or later installed.
$ pip install --upgrade connect-cliTo use the Docker image of connect-cli:
$ docker run -it -v $HOME/.ccli:/home/connect/.ccli cloudblueconnect/connect-cli ccliPlease refer to the connect-cli docker image documentation for more information.
To install connect-cli with homebrew run:
$ brew update
$ brew tap cloudblue/connect
$ brew install cloudblue/connect/connect-cliAn installer package is available for Windows 10 or newer. You can download its zip file from the Github Releases page.
We use isort library to order and format our imports, and we check it using flake8-isort library (automatically on flake8 run).
For convenience you may run poetry run isort . to order imports.
connect-cli uses poetry for dependencies management and packaging.
To run the connect-cli tests suite run:
$ pip install poetry
$ poetry install
$ poetry run pytest
connect-cli is released under the Apache License Version 2.0.