This is a simple password generator script written in Python using the tkinter GUI library. The script allows the user to specify the length of the password and generates a random password of that length using a combination of uppercase and lowercase letters, digits, and punctuation.
- Install the required dependencies by running
pip install -r requirements.txt
. - Run the script by executing the
password_generator.py
file. - Enter a positive integer value for the desired length of the password.
- Click the "Generate Password" button to generate a new password.
- Click the "Copy Password" button to copy the generated password to the clipboard.
- Python 3.6 or later
- tkinter 8.6 or later
- pyperclip 1.8.2 or later