- Setup local Python environment:
python3 -m venv .venv
source .venv/bin/activate- Install the required packages:
pip install -r requirements.txt- Run the main script:
./main.py # or
python3 main.pyTo enable persistent command history, preceed the command with rlwrap (you may need to install it first).
- Print the help message:
[router-solver]# help
- Perform static type checking:
mypy **/*.py- Lint the code:
pylint **/*.py