Overview:
The Password Generator is a Python-based GUI application that creates secure and customizable passwords. Users can specify the password length and include character types such as uppercase letters, lowercase letters, numbers, and symbols. The application also provides a feature to copy the generated password to the clipboard with a single click.
Features Customizable Passwords:
- Include/exclude uppercase letters, lowercase letters, numbers, and symbols.
Choose password length between 1 and 50 characters.
Graphical User Interface (GUI):
- Built with tkinter for an intuitive and visually appealing interface.
Clipboard Functionality:
- Copy generated passwords directly to the clipboard with a single click.
Error Handling:
- Displays a warning if no character type is selected.
Python Libraries:
tkinter: GUI creationpyperclip: Clipboard managementrandom: Random password generation