Welcome to the PyPassword Generator! This Python script allows you to generate strong and random passwords with a combination of letters, numbers, and symbols. You can customize the length and composition of your password based on your security requirements.
-
Clone the repository:
git clone https://github.com/TUR14CUS/Password-Generator.git
-
Navigate to the project directory:
cd Password-Generator
-
Run the script:
python password-generator.py
-
Follow the prompts to specify the number of letters, symbols, and numbers you want in your password.
-
The script will generate and display a randomized password for you.
Feel free to modify the character sets used in the script to suit your needs. You can update the letters
, numbers
, and symbols
lists in the script to include or exclude specific characters.
letters = ['a', 'b', 'c', ..., 'Z']
numbers = ['0', '1', '2', ..., '9']
symbols = ['!', '#', '$', '%', ..., '+']
If you have any suggestions or improvements, please open an issue or create a pull request on GitHub.
This project is licensed under the MIT License.