Posts

Showing posts with the label Tech Projects

💻 Live Crypto Price Tracker using Python GUI (tkinter + API) – FuzzuTech

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ ⭐ Features: 🔥 App: Real-time Crypto Price Checker 💻 Stack: Python, tkinter, requests, threading ⚙️ Functions: Auto-refresh, API Fetch, Threaded UI 🎥 Video Embed: [YouTube Short URL here] 📂 Tags: crypto, gui, python, hackingstyle, coderlife Code : import tkinter as tk from tkinter import ttk import requests import threading # ---- Function to fetch crypto price ---- def get_crypto_price(symbol):     url = f"https://api.coingecko.com/api/v3/simple/price?ids={symbol}&vs_currencies=usd"     try:         data = requests.get(url).json()         return data.get(symbol, {}).get("usd", "N/A")     except Exception:         return "Error" # ---- Function to update price in UI ---- def update_price():     symbol = symbol_var.get().lower()     price = get_crypto_price(symbol)     result_var.set(f"${price}")     ...

Best Free Video Format Converter 2025 | Convert Videos to MP4, AVI, MOV, MKV | FuzzuTech

Image
Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : import customtkinter as ctk from tkinter import filedialog import subprocess import threading import os # ─────────────────────────────────────── # FFmpeg-based video conversion function # ─────────────────────────────────────── def convert_video(input_path, output_format, output_path):     if not os.path.isfile(input_path):         return "❌ File not found."     try:         command = [             "ffmpeg",             "-i", input_path,             output_path         ]         subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)         return f"✅ Converted to {output_format.upper()}\n{output_path}"     except Exception as e:         return f"⚠️ Error: {e}" # ──────────────────────── # Setup ...

Mainre Ghar Spy Cam Nikla 😱 | Python GUI App to Detect Hidden Cameras & Mics (Source Code)

Image
   Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 🧩 Features: Python Network Scanner GUI App with Device Table Export Suspicious Devices Works on Wi-Fi or LAN Stylish & Lightweight Code : from scapy.all import ARP, Ether, srp import tkinter as tk from tkinter import ttk, messagebox def scan():     target_ip = "192.168.1.1/24"     arp = ARP(pdst=target_ip)     ether = Ether(dst="ff:ff:ff:ff:ff:ff")     packet = ether/arp     result = srp(packet, timeout=3, verbose=0)[0]     devices = []     for sent, received in result:         devices.append({'ip': received.psrc, 'mac': received.hwsrc})          for d in devices:         tree.insert("", "end", values=(d["ip"], d["mac"])) root = tk.Tk() root.title("Spy Device Detector") root.geometry("600x400") style = ttk.Style() style.theme_use("clam") ttk.Label(root, text="Connected Devices", font=("Helve...

AI Sketch Converter - Convert Any Image to Sketch in 1 Click Using Python

Image
Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 📌 Features ✅ AI-powered Sketch Converter ✅ OpenCV Image Processing ✅ No TensorFlow Required ✅ Save High-Quality Sketches ✅ Full Source Code Provided Code : import cv2 import numpy as np import tkinter as tk from tkinter import filedialog from PIL import Image, ImageTk # Global variable for storing the loaded image global_image = None   def sketch_transform(image):     gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)     inv = cv2.bitwise_not(gray)     blur = cv2.GaussianBlur(inv, (21, 21), 0)     sketch = cv2.divide(gray, 255 - blur, scale=256)     return sketch def open_image():     global global_image     file_path = filedialog.askopenfilename(filetypes=[("Image Files", "*.jpg;*.png;*.jpeg")])          if file_path:         global_image = cv2.imread(file_path)  # Store the image globally         sketch ...