Enter the cement-app
directory, then create a virtual environment,
$ python3 -m venv .venv
Then activate the virtual environment by running:
$ source .venv/bin/activate
Install this CLI app in editable
mode,
$ pip install -e .
When done, it should have cement-app
package installed with version 0.0.1
.
Validate the installation,
$ pip show skcli
Use the commands by following the --help
instruction,
$ skcli --help
usage: skcli [-h] [-d] [-q] {add,get,list,remove,update} ...
A simple password management CLI application.
options:
-h, --help show this help message and exit
-d, --debug full application debug mode
-q, --quiet suppress all console output
sub-commands:
{add,get,list,remove,update}
add add a new password
get get a password
list list all passwords
remove remove a stored password
update update an existing password
Usage: skcli command --appname NAME [--username USERNAME] [--password PASSWORD]