π Password Generator CLI By B dev
Generate strong, secure passwords instantly with a colorful and interactive command-line interface using Python and Rich.
- Generate passwords of any length
- Choose letter case: lowercase, uppercase, or both
- Option to include numbers and symbols
- Interactive CLI with progress bar and panels
- Works on Linux, MacOS, Termux, and Windows
- Run only inside the project folder for safety
git clone https://github.com/yourusername/password-generator.git
cd password-generator
2. Install dependencies
pip install -r requirements.txt
---
Usage
Linux / MacOS / Termux
chmod +x passgen
./passgen --rich
Windows
passgen.bat --rich
> β οΈ Note: You must run the commands inside the password-generator folder.
---
How It Works
1. Enter the desired password length
2. Choose whether to include symbols
3. Select letter case (lowercase, uppercase, or both)
4. Watch the "Generating..." progress bar
5. Get your secure password displayed in a colored panel
---
Example
Password Generator π
By B dev
What length do you want for your password? βΊ 12
Do you want symbols? (y/n) βΊ y
Choose letter case (lowercase / uppercase / both) βΊ both
Generating your password...
Creatingβ¦ ββββββββββββββββ 100%
Your password is:
ββββββββββββββββββββββββββ
β qihe8H2!82#92j β
ββββββββββββββββββββββββββ
---