PiRogueToolSuite / pirogue-cli

CLI interface to control the PiRogue
https://pts-project.org/
GNU General Public License v3.0
6 stars 2 forks source link
pirogue python

PiRogue CLI

PiRogue CLI is the main command line interface allowing you to control and configure your PiRogue. Have a look to our guides to learn more how to use the PiRogue.

License: GPLv3

Website | Documentation | Support

Local installation in a virtual environment

git clone https://github.com/PiRogueToolSuite/pirogue-cli
cd pirogue-cli
python3 -m venv .venv
source .venv/bin/activate   
pip install --upgrade pip setuptools wheel
pip install .

Usage from a local virtual environment

You can run the scripts from the local virtual environment:

pirogue-ctl --help
pirogue-intercept-gated --help
pirogue-view-tls --help

Developer setup

For easier hacking, you can run the scripts without pip installing them prior through the equivalent endpoints:

python -m pirogue_cli.cmd.cli --help
python -m pirogue_cli.network.intercept_gated --help
python -m pirogue_cli.network.view_tls --help