Secure password generator built with Python and the secrets module.
- Generates strong passwords from the terminal
- Supports multiple passwords in one command
- Optional symbol-free mode
- Keeps minimum security rules by mixing uppercase, lowercase, and numbers
- Python
secretsstring
python main.pyGenerate a longer password:
python main.py --length 24Generate three passwords without symbols:
python main.py --count 3 --no-symbolsDouglas Aparecido Silva