SecurePassGen is a simple yet powerful password generator written in Python. It allows users to generate secure passwords with customizable options.
- Generate passwords of a specified length
- Include/exclude digits, uppercase/lowercase letters, and symbols
- Generate multiple passwords at once
- Save generated passwords to a text file
Ensure you have Python installed on your system.
Run the script using:
python securepassgen.pyFollow the prompts to generate passwords with your preferred settings.
Enter number of passwords to generate: 5
Enter password length: 12
Include digits? (y/n): y
Include uppercase letters? (y/n): y
Include lowercase letters? (y/n): y
Include symbols? (y/n): n
Generated passwords:
Gf8jKdPqLz2h
M5PqLxTzYs9W
...
Save passwords to file? (y/n): y
Passwords saved to passwords.txt
This project is licensed under the MIT License.