Posts

Showing posts with the label guiapp

FuzzuTech Alarm Clock – Build a Python GUI That Wakes You Up Like a Hacker!

Image
  Demo : Click Video 👇👇👇 Features: Embedded YouTube Short Code Snippet (HTML/CSS block) Download Link to Code (via GitHub or GDrive) CTA: “Try it Now | Share with Friends | Subscribe for More Python Illusions!” Code : import tkinter as tk from tkinter import messagebox from tkinter import filedialog import datetime import time import threading import pygame class AlarmClock:     def __init__(self, root):         self.root = root         self.root.title("FuzzuTech Alarm Clock")         self.root.geometry("400x300")         self.root.config(bg="#1f1f1f")         self.alarm_time = tk.StringVar()         self.sound_file = None         tk.Label(root, text="Set Alarm Time (HH:MM):", fg="white", bg="#1f1f1f", font=("Arial", 12)).pack(pady=10)         self.time_entry = tk.Entry(root, textvariable=self.a...

🎨 Python Color Picker Tool – Get HEX & RGB Codes Instantly | FuzzuTech GUI

Image
  Demo : Click Video 👇👇👇 📄 Features : Built with tkinter + customtkinter Real-time HEX & RGB color picker Copy to clipboard feature with pop-up alert Hacker-style GUI, clean & responsive Offline and beginner-friendly project Perfect for dev tools, designers, and GUI app fans Source code included Code : import tkinter as tk from tkinter import colorchooser, messagebox import pyperclip import customtkinter as ctk # Appearance Settings ctk.set_appearance_mode("System") ctk.set_default_color_theme("green") # App Window app = ctk.CTk() app.title("Color Picker Tool") app.geometry("400x300") app.resizable(False, False) def choose_color():     color = colorchooser.askcolor(title="Choose a Color")     if color:         hex_color = color[1]  # e.g. "#FF00FF"         rgb_16bit = app.winfo_rgb(hex_color)  # (0–65535 range)         rgb_8bit = tuple(int(v / 65535 * 255...

Auto Typing Bot Python GUI – FuzzuTech | Auto Typer Using Tkinter + PyAutoGUI

Image
  Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import ttk import pyautogui import threading import time # ✅ Disabling PyAutoGUI fail-safe (Only if you're confident) pyautogui.FAILSAFE = False class AutoTyperApp:     def __init__(self, root):         self.root = root         self.root.title("Auto Typing Bot")         self.root.geometry("400x300")         self.root.configure(bg="#1e1e1e")         self.typing = False         self.label = tk.Label(root, text="Enter Text To Type:", fg="white", bg="#1e1e1e", font=("Arial", 12))         self.label.pack(pady=10)         self.entry = tk.Text(root, height=5, width=40, font=("Arial", 11), bg="#2d2d2d", fg="white", insertbackground="white")         self.entry.insert("1.0", "Lorem ipsum dolor sit amet, consectetur adipiscing elit."...

Detect SQL Injections Instantly with Python GUI – FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Features: GUI App using Python & CustomTkinter Detects SQL Injection using Regex Instant detection for safe vs malicious queries Offline, lightweight, and beginner-friendly Great for coding learners, students, and security pros Code : import customtkinter as ctk import re import pyperclip # --- Configure appearance --- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("550x500") app.title("🔒 Fuzzu SQL Injection Detector") app.resizable(False, False) # --- SQL Injection Patterns --- suspicious_patterns = [     r"(--|\|\|)",                      # SQL comments     r"(' OR '1'='1|\" OR \"1\"=\"1)",  # classic injection     r"(DROP|INSERT|DELETE|UPDATE)\s+\w+\s+.*--",     r"(UNION\s+SELECT)",     r"(' OR 1=1|\" OR 1=1)",     r"(OR\s+\d+=\d+)", ] # ---...

GIF Encryptor/Decryptor App 🔐 | FuzzuTech Python GUI

Image
  Demo : Click Video 👇👇👇 🔸 Post (Intro): Experience a new level of Python file security with this GIF Encryptor/Decryptor App built using tkinter and Fernet . With a sleek GUI and real encryption logic, this tool brings cybersecurity into your hands. Encrypt any .gif with just one click! 🔸 Features: 🔐 Encrypt & decrypt GIF files securely 🧠 Powered by Fernet key-based encryption 🎨 Dark mode GUI using tkinter 💾 100% Offline 🧑‍💻 Ideal for Python GUI project portfolios Code : import tkinter as tk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os import shutil class GIFEncryptorDecryptorApp:     def __init__(self, root):         self.root = root         self.root.title("🔐 GIF Encrypt / Decrypt")         self.root.geometry("600x400")         self.root.configure(bg="#1e1e1e")         self.key_entry =...

Fuzzu Audio Encryptor – Secure Your Voice with Python GUI App 🔐🎵

Image
  Demo : Click Video 👇👇👇 🌟 Features: Encrypt any audio file to secure .fuzzu format Decrypt back with one click using saved Fernet key Built with Python, customtkinter , and cryptography Offline tool – no internet needed Beginner-friendly code for developers Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # App Appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class AudioEncryptorApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu Audio Encrypt/Decrypt Tool")         self.geometry("600x500")         self.resizable(False, False)         self.key = Fernet.generate_key()         self.cipher = Fernet(self.key)         self.build_gui()     def build_gui(self):...

🔐 Fuzzu Encryptor – Python GUI for Text & File Security | CustomTkinter App

Image
  Demo : Click Video 👇👇👇 Features : Live Demo Snapshots (Add screenshots of GUI) How it works: Text encryption/decryption File protection workflow Why this project is unique (offline + visual + secure) Download code (optional GitHub link) Related Shorts or projects by FuzzuTech Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # ------------------------- # Appearance and Theme # ------------------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # ------------------------- # Main App Setup # ------------------------- app = ctk.CTk() app.title("Fuzzu Encryptor | Modern GUI") app.geometry("600x500") # ------------------------- # Load or Create Key # ------------------------- def load_or_create_key():     if os.path.exists("key.key"):         with open("key.key", "rb") as f:             return f.re...

Cyber Screenshot Encryptor GUI App in Python – FuzzuTech

Image
  Demo : Click Video 👇👇👇 Features: Capture screenshot with PyAutoGUI Encrypt it using cryptography (Fernet) GUI powered by customtkinter Auto-delete unencrypted file Encrypted output .png.enc format Secure, offline, lightweight utility Code : import customtkinter as ctk import pyautogui from cryptography.fernet import Fernet from PIL import Image import time import os # --- Utility Functions --- def generate_key():     key = Fernet.generate_key()     with open("secret.key", "wb") as key_file:         key_file.write(key) def load_key():     return open("secret.key", "rb").read() def capture_screenshot():     timestamp = time.strftime("%Y%m%d-%H%M%S")     filename = f"screenshot_{timestamp}.png"     screenshot = pyautogui.screenshot()     screenshot.save(filename)     return filename def encrypt_file(filename):     key = load_key()     f...