This Python script generates random passwords based on user-defined criteria. It allows you to specify the number of passwords and the desired length for each password.
-
Run the script by executing the following command in your terminal:
python password_generator.py
-
You will be prompted to input the following information:
- Amount of passwords to generate: Enter the number of passwords you want to create.
- Input your password length: Specify the length of each generated password.
-
The script will then generate and display the requested number of random passwords with the specified length.
The script uses the following character set for generating passwords:
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@$#%&^*().,?0123456789
Here is an example of running the script:
Welcome To Your Password Generator
Amount of passwords to generate: 5
Input your password length: 12
Here are your passwords:
DlA&vzqV,N3C
*O9Z.75bNv$q
B#mJgk^e82zC
wAMRv&!uYd7(
fDsL*W%c^p5e
This script is available under the MIT License.
Feel free to use, modify, and distribute it as needed. If you have any questions or suggestions, please open an issue or pull request in this repository.
Happy password generating!
© 2023 ametalwala python-password-generator