Python CLI application that allows you to manage users on your computer from your terminal.
- Installation of the environment used:
python -m venv venv
- Installation of the click package:
pip install click
Run in terminal: python cli.py users | user {id} | new --name {name} --lastname {lastname} | update {id} [--name {name}] [--lastname {lastname}] | delete {id}
Video creating a CLI (terminal CRUD application) in Python by Fazt