Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Password Generator

Description

A secure password generator with GUI that creates random passwords using letters, numbers, and special characters. Features one-click generation and clipboard copying for convenience.

Features

  • Generate 28-character secure passwords
  • Uses letters (uppercase and lowercase)
  • Includes numbers (0-9)
  • Includes special characters
  • One-click generation
  • Copy to clipboard functionality
  • Clean and modern GUI
  • Cryptographically random

Stack

  • Language: Python
  • Libraries:
    • tkinter (standard library)
    • string (standard library)
    • random (standard library)
    • tk==0.1.0
  • Complexity: Beginner

Installation

pip install -r requirements.txt
python main.py

Usage

  1. Click "Generate Password" button
  2. Password appears in the entry field
  3. Click "Copy to Clipboard" to copy
  4. Use the password for your accounts

Password Composition

  • Total pool: 94 characters
  • Length: 28 characters
  • Entropy: ~185 bits

License

Open source for educational purposes.