A simple, command-line password generator built with Python. This script allows you to create strong, random passwords by specifying the exact number of letters, symbols, and digits you want.
- Generates a randomized password of your chosen complexity.
- Lets you define the exact number of letters, digits, and symbols.
- Uses Python's built-in
randomandstringmodules.
-
Clone the repository (or download the files):
git clone https://github.com/AranavPaul/python-password-generator
-
Navigate to the directory:
cd python-password-generator -
Run the script:
python password_generator.py
(or
python3 password_generator.pydepending on your system) -
Follow the prompts: The script will ask you how many letters, digits, and symbols you want in your password.
---Welcome to my password generator--- Enter the number of symbols you want in your password: 4 Enter the number of digits you want in your password: 4 Enter the number of letters you want in your password: 8 Your password is p8@4Wk!&1L}b5vG2
This project is licensed under the MIT License. See the LICENSE file for details.