πŸ”’ Fake Email Generator with Clipboard Copy – Python GUI Tool by FuzzuTech

 Demo :


Click Video πŸ‘‡πŸ‘‡πŸ‘‡



























πŸ“‹ Features:

  • ✅ Generates fake emails randomly

  • ✅ Copies email to clipboard with one click

  • ✅ Lightweight, offline & beginner-friendly

  • ✅ GUI built using tkinter, clipboard with pyperclip

  • πŸ” Great for dummy testing, spam protection, or fun tools
    πŸ’‘ A perfect snippet for developers, testers, and Python hobbyists!


Code :


import tkinter as tk

from tkinter import messagebox

import pyperclip

import random

import string


# Fake Email Generator Function

def generate_fake_email():

    domains = ['fuzzumail.com', 'mailfuzzu.org', 'emailfuzz.net']

    name = ''.join(random.choices(string.ascii_lowercase + string.digits, k=8))

    domain = random.choice(domains)

    return f"{name}@{domain}"


# Button Action

def generate_and_copy():

    email = generate_fake_email()

    email_var.set(email)

    pyperclip.copy(email)

    messagebox.showinfo("Copied!", "Fake email copied to clipboard ✅")


# GUI App Setup

app = tk.Tk()

app.title("Fake Email Generator - FuzzuTech")

app.geometry("400x250")

app.configure(bg="#1e1e2f")


# App Title

tk.Label(app, text="πŸ”’ Fake Email Generator", font=("Helvetica", 16, "bold"), bg="#1e1e2f", fg="white").pack(pady=15)


# Email Display Field

email_var = tk.StringVar()

email_entry = tk.Entry(app, textvariable=email_var, font=("Helvetica", 14), width=30, justify='center')

email_entry.pack(pady=10)


# Generate Button

generate_btn = tk.Button(app, text="Generate & Copy πŸ“‹", command=generate_and_copy, font=("Helvetica", 12, "bold"),

                         bg="#00adb5", fg="white", relief="flat", padx=10, pady=5)

generate_btn.pack(pady=20)


# Footer

tk.Label(app, text="Developed by Fuzzu Developer", font=("Helvetica", 10), bg="#1e1e2f", fg="gray").pack(side="bottom", pady=10)


app.mainloop()

Comments

Popular posts from this blog

πŸš€ Simple Login & Registration System in Python Tkinter πŸ“±

πŸš€ Create a Python Screen Recorder with Audio (Complete Code)

Python IP Tracker App with GUI | Track IP Location Real-Time! (Working Project)