Posts

Showing posts with the label PythonProjects

Python ML Hand Gesture Control GUI 🖐 | Control PC with Gestures (No CV2/No Mediapipe)

Image
  Demo : Click Video 👇👇👇 Features: Hand gestures mapped to PC actions (Launch apps, Show desktop, Lock screen) Modern GUI with Dark Mode Works with ML model or Random Simulation Code : import customtkinter as ctk import imageio import threading import numpy as np import pyautogui from PIL import Image, ImageTk import tensorflow as tf import os import random # ===== GUI Settings ===== ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class GestureApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu ML Hand Gesture Control (No CV2/No Mediapipe)")         self.geometry("500x500")         self.resizable(False, False)         # Camera         self.camera = None         self.gesture_enabled = False         # Title         self.la...

📌 Title: Clone Any GitHub Repo with 1 Click – FuzzuTech Python GUI App

Image
  Demo : Click Video 👇👇👇 Description: Clone GitHub repos with a single click using this powerful Python GUI app by FuzzuTech. Offline, fast, and hacker-style interface! 🔍 Features: Clone GitHub repos offline Threaded GUI operations tkinter + customtkinter interface Dark mode GUI Python subprocess integration Code : import tkinter as tk import customtkinter as ctk from tkinter import messagebox import subprocess import os import threading # === Configure CTk Appearance === ctk.set_appearance_mode("Dark") ctk.set_default_color_theme("blue") # === Create Main Window === app = ctk.CTk() app.title("GitHub Repo Downloader") app.geometry("500x350") app.resizable(False, False) # === Function to Clone GitHub Repo (in separate thread) === def clone_repo():     repo_url = url_entry.get()     download_path = path_entry.get()     if not repo_url.strip() or not download_path.strip():         messagebox.showwarning("Input ...

🔥 Build a Modern Internet Speed Test App in Python – GUI Speedtest with Loading Animation 🚀

Image
Demo : Click Video 👇👇👇 📝 Description: Learn how to create a modern and stylish Internet Speed Test App in Python using CustomTkinter & Speedtest . This GUI-based tool features a smooth loading animation while checking download, upload, and ping speeds . Perfect for beginners and advanced Python enthusiasts! Code : Save logo path (assets/speed_logo.png) :    import speedtest import customtkinter as ctk from PIL import Image import threading # CustomTkinter Theme ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # Function to Test Speed with Loading def check_speed():     loading_label.configure(text="Testing... Please wait", text_color="yellow")     test_button.configure(state="disabled")          def run_speedtest():         st = speedtest.Speedtest()         st.get_best_server()         download_speed = round(st.download() / 1_000_000, 2)...