This is a simple Python script that generates random passwords based on user-defined criteria.
This script provides a user-friendly interface for generating random passwords. It allows you to choose from various character sets (lowercase letters, uppercase letters, digits, and special symbols) and specify the desired password length.
l
: Lowercase letters (abcdefghijklmnopqrstuvwxyz)u
: Uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ)d
: Digits (0123456789)s
: Special symbols (!@#$%^&*()_+-=[]{}|;:,.<>?)
You can input combinations of these characters (e.g., "sld", "us", "ul", etc.) to customize the character set of the generated password.
-
Clone the repository.
-
Navigate to the repository directory.
-
Run the script
password_generator.py
.