Simple Random Password Generator CLI Tool.
This package requires Python 3 (it is 2021 after all). What else, let's see... a human to use it I guess?
To install this CLI tool you can run the below command
pip3 install ranpass
Alternatively, you clone this repo and then run this command from within the repository folder
python3 setup.py install
Both the above commands would install the package globally and ranpass
will be available on your system.
Generate a random password
ranpass generate -l <length of password desired> -o <option of password type>
There are four options for password type
- Only lowercase alphabets
- Lowercase + uppercase alphabets
- Alphanumeric
- Alphanumeric + Special characters (Default option, because passwords should be as secure as possible)
If you want to see these options in the terminal, run ranpass generate -h
. You could also run ranpass -h
to see the available commands. (generate
is the only command right now).
Please feel free to leave feedback in issues/PRs.