A simple command-line tool built with Python to generate strong, customizable random passwords.
- Generate passwords of a user-specified length.
- Option to include/exclude:
- Uppercase letters (A-Z)
- Lowercase letters (a-z)
- Numbers (0-9)
- Special symbols (e.g., !@#$%^&*)
- Easy to use from the command line.
- Copies the generated password to the clipboard (Optional - if you implement this).
- Python 3.9+
- Clone the repository:
git clone https://github.com/YogeshT22/Password-Generator.git
- Navigate to the project directory:
cd Password-Generator
Run the script from the command line.
Basic Usage (generates a password with default settings):
python password_gen.py
$ python password_gen.py -l 12 --no-symbols
Generated Password: pA5swOrdL3tT
- Distributed under the MIT License.
- Yogesh T