PasswordGenerator is a Python script designed to generate random passwords based on user-defined criteria.
This script utilizes Python's random
and string
modules to create strong and customizable passwords. Users can specify the minimum length of the password and choose whether to include numbers and special characters.
- Generates passwords with customizable length.
- Option to include numbers and special characters for increased security.
- Simple and easy-to-use interface.
Before running the script, ensure you have Python installed on your system. You can install it from the official Python website.
- Clone the repository to your local machine:
git clone https://github.com/subhranil002/PasswordGenerator.git
-
Navigate to the directory containing
PasswordGenerator.py
. -
Run the script using Python:
python PasswordGenerator.py
-
Follow the on-screen prompts:
- Enter the minimum length of the password (6 or greater).
- Choose whether to include numbers by entering 'y' or 'n'.
- Choose whether to include special characters by entering 'y' or 'n'.
-
The generated password will be displayed on the console.
Contributions are welcome! If you'd like to contribute to this project, please fork the repository and create a pull request with your proposed changes.
This project is licensed under the MIT License - see the LICENSE file for details.
Made With โค๏ธ