π 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 withpyperclip
-
π 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
Post a Comment