This Python script generates random passwords of varying lengths and complexities. It can be useful for creating secure passwords for different purposes.
-
Clone the repository:
git clone https://github.com/Mamir21/random-password-generator.git
-
Navigate to the project directory:
cd random-password-generator -
Install the required packages: Ensure you have Flask installed. You can install Flask using pip:
pip install flask
-
Run the application:
python src/app.py
-
Open a web browser and navigate to:
http://127.0.0.1:5000Follow the prompts to specify the length and complexity of the password.
- Length: Specify the length of the password (default is 12 characters).
- Complexity: Choose from low, medium, or high complexity levels.
- Low: Includes only letters (uppercase and lowercase) and digits.
- Medium: Includes letters (uppercase and lowercase), digits, and common special characters.
- High: Includes letters (uppercase and lowercase), digits, common special characters, and additional symbols (£, €, ¥, §, ©, ®).
This project is licensed under the MIT License - see the LICENSE file for details.
