Posts

Python Web Scraper + Auto Scheduler GUI | Requests + BeautifulSoup + Tkinter

Image
  Demo : Click Video 👇👇👇 Features: ✔️ Share buttons ✔️ Featured Image (Thumbnail) ✔️ SEO Meta Description (same as YouTube description first 150 chars) Content: Embed YouTube Short + Explanation + Code Snippet + Screenshots Code : import requests from bs4 import BeautifulSoup import pandas as pd from datetime import datetime from apscheduler.schedulers.background import BackgroundScheduler import customtkinter as ctk from tkinter import messagebox ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") URL = 'https://books.toscrape.com/catalogue/a-light-in-the-attic_1000/index.html' HEADERS = {     'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } CSV_FILE = 'products.csv' def scrape_product():     try:         response = requests.get(URL, headers=HEADERS)         if response.status_code == 200:             soup = BeautifulSoup(response.content, 'html.parser')...

Python API Security App – FastAPI + JWT + CustomTkinter GUI | FuzzuTech Project

Image
  Demo : Click Video 👇👇👇 📌 Features : Embedded YouTube Short Code snippets (highlight important parts) Viral hashtags SEO keywords like "FastAPI JWT authentication Python" , "Python GUI API Client" Code : import customtkinter as ctk import requests from fastapi import FastAPI, Depends, HTTPException from fastapi.security import OAuth2PasswordRequestForm import threading import uvicorn # ============================== # ⚡ FastAPI Backend (Embedded) # ============================== app = FastAPI() valid_users = {     "admin": "admin123",     "user1": "pass123",     "developer": "dev456" } @app.post("/token") async def login(form_data: OAuth2PasswordRequestForm = Depends()):     if valid_users.get(form_data.username) == form_data.password:         return {"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."}     else:         raise HTTPException(status_code=40...

IoT Predictive Maintenance System in Python | Real-Time Anomaly Detection with MQTT

Image
  Demo : Click Video 👇👇👇 Features: Embed YouTube Video 🎥 Add screenshots of GUI + code snippet SEO keywords → Python IoT Project, Predictive Maintenance App, MQTT HiveMQ Python, Tkinter IoT GUI Code : import tkinter as tk from tkinter import ttk, messagebox import paho.mqtt.client as mqtt import json import random import threading import time # MQTT Configuration MQTT_BROKER = "broker.hivemq.com" MQTT_PORT = 1883 MQTT_TOPIC = "fuzzutech/iot/anomaly" # Global Variables anomaly_detected = False # MQTT Callbacks def on_connect(client, userdata, flags, rc):     print(f"Connected to MQTT Broker with result code {rc}")     client.subscribe(MQTT_TOPIC) def on_message(client, userdata, msg):     global anomaly_detected     payload = json.loads(msg.payload.decode())     sensor_value = payload['sensor_value']     print(f"Received Sensor Value: {sensor_value}")     # Simple anomaly detection logic   ...

IoT Edge Computing Dashboard in Python – Live MQTT Data Processing (FuzzuTech)

Image
  Demo : Click Video 👇👇👇 👉 Features : Real-time IoT sensor simulation MQTT-based Edge Data publishing Comfort Index computation Interactive GUI with Python Code : import time import random import json import threading import customtkinter as ctk import paho.mqtt.client as mqtt # ---------------- MQTT Configuration ---------------- MQTT_BROKER = "broker.hivemq.com" MQTT_PORT = 1883 MQTT_TOPIC = "fuzzutech/iot/edge" client = mqtt.Client() client.connect(MQTT_BROKER, MQTT_PORT, 60) # ---------------- Sensor Simulation ---------------- def read_sensor_data():     """Simulate Temperature & Humidity Sensor"""     temperature = round(random.uniform(20.0, 30.0), 2)     humidity = round(random.uniform(30.0, 70.0), 2)     return {"temperature": temperature, "humidity": humidity} def process_data(sensor_data):     """Compute Comfort Index"""     temp = sensor_data["temperat...

Fuzzu FastEncrypt – AES-256-GCM File Encryptor/Decryptor in Python (Fast GUI)

Image
Demo : Click Video 👇👇👇 Features: Large Thumbnail Image Auto Read More Jump Break SEO-friendly Meta Tags with keywords "Python AES-256 Encryption GUI, Fast File Encryptor, FuzzuTech Code : # Fuzzu FastEncrypt – AES-256-GCM File Encryptor/Decryptor (Fast + GUI) # Author: FuzzuTech (fixed) # Requires: pip install cryptography customtkinter import os import threading import time from tkinter import filedialog, messagebox import customtkinter as ctk import base64 from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from cryptography.hazmat.backends import default_backend # --- constants --- MAGIC = b"FZENC1\n\x00"  # 8 bytes (file signature) SALT_LEN = 16 NONCE_LEN = 12 TAG_LEN = 16 CHUNK_SIZE = 8 * 1024 * 1024  # 8 MB PBKDF2_ITERS = 300_000 backend = default_backend() def rand_bytes(n: int) -> bytes:     return os....

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...

Python IoT Smart Energy Meter GUI (CTkinter + MQTT) — Live Power, kWh & Daily Cost

Image
  Demo : Click Video 👇👇👇 Slug: python-iot-smart-energy-meter-ctkinter-mqtt-live-power-cost Description : Build a Python IoT Smart Energy Meter GUI (CTkinter + MQTT) with live charts, kWh & daily cost estimate. Demo Mode included. Code & setup inside. Features : Hero image: GUI dashboard screenshot (dark glass UI + chart) Intro: what/why + 5-line value pitch Features: KPI cards, live chart, tariff → cost/day, Demo Mode, MQTT topic/broker Quick Start: install, run, default broker/topic, JSON payload example Code Embed: main.py snippet + repo link Use Cases: home audit, student projects, ESP32/RPi CTA: Subscribe to FuzzuTech; comment “BILL ₹ SAVED” for assets FAQ: MQTT not available? Use Demo Mode; change tariff? Code : # -*- coding: utf-8 -*- """ FuzzuTech — IoT Smart Energy Meter GUI Modern + Stylish + Attractive (CustomTkinter) with MQTT subscribe + live chart. - Dark theme, glassy cards, neon accents - Real-time power line-chart (las...