Posts

Showing posts from March, 2025

👉 Modern Eye Password Toggle UI using HTML, CSS & JavaScript | Stylish Login Form

Image
Demo : Click Video 👇👇👇 Features: ✅ Modern UI (Glassmorphism effect) ✅ Eye Icon Toggle (Show/Hide Password) ✅ Fully Responsive ✅ Smooth Animations Code : 📂 Folder Structure: /password-toggle-form     ├── index.html     ├── style.css     ├── script.js   🔹 index.html <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Login Form with Eye Toggle</title>     <link rel="stylesheet" href="style.css">     <script defer src="script.js"></script>     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> </head> <body>     <div class="login-container">         <h2>Login</h2>       ...

"1-Click File Encryption: Secure Your Files Instantly | Python GUI Project"

Image
  Demo : Click Video 👇👇👇 🔐 Protect your files with just 1 click using this powerful Python GUI Encryption Tool ! Learn how to encrypt and decrypt files effortlessly using Python. Perfect for Cyber Security enthusiasts, ethical hackers, and tech lovers. Download full source code now! 🚀 1️⃣ Introduction What is File Encryption ? Why is it important for Cyber Security ? How this Python GUI Tool makes encryption super easy ? 2️⃣ Features of This Python GUI Encryption Tool 🔥 ✅ One-click encryption & decryption ✅ Simple & easy-to-use GUI ✅ Secure file protection with custom keys ✅ Fast & lightweight 3️⃣ Full Source Code (Step-by-Step Implementation) 📝 Provide the full Python GUI encryption code Explain each section for easy understanding Add screenshots of the GUI 4️⃣ How to Use? (Step-by-Step Guide) 👨‍💻 Download the Python project Run the GUI Select the file Enter an encryption key Click Encrypt or Decrypt Do...

Modern MS Paint in Python using Tkinter - Advanced Drawing App

Image
Demo : Click Video 👇👇👇 Description: Python Tkinter se apna khud ka MS Paint banao! 🖌 Yeh advanced project zaroor try karo! 🔥 Content: 🔥 Python Tkinter se MS Paint banane ka best project! Aaj hum ek Modern MS Paint banayenge Python Tkinter ka use karke. Yeh app brush, eraser, shapes, color picker, save, open aur clear canvas jaise features ke sath aata hai. Aap isse customize bhi kar sakte ho! 🎨 🚀 Features: ✔️ Brush & Eraser Tool ✔️ Rectangle, Circle, & Line Drawing ✔️ Color Picker ✔️ Save & Open Image Support ✔️ Clear Canvas Function Code : import tkinter as tk from tkinter import filedialog, colorchooser, messagebox from PIL import Image, ImageDraw, ImageTk import os class ModernMSPaint:     def __init__(self, root):         self.root = root         self.root.title("MS Paint Advanced")         self.root.geometry("1200x700")                ...

Python se WordPad Clone Banane ka Best Tarika - Step by Step Guide

Image
Demo : Click Video 👇👇👇 Features ✅ Create & Edit Text Files  ✅ Save Files in .txt Format  ✅ Open Existing Text Files  ✅ Cut, Copy, Paste Functions  ✅ Modern GUI using Tkinter Code : Folder Structure : python_wordpad_clone/ │── main.py  # Main Python Script │── README.md  # Project Description └── assets/     └── icon.ico  # Application Icon import tkinter as tk from tkinter import filedialog, messagebox, font, colorchooser class WordPad:     def __init__(self, root):         self.root = root         self.root.title("Fuzzu WordPad")         self.root.geometry("800x600")                  self.text_area = tk.Text(self.root, font=("Arial", 12), undo=True)         self.text_area.pack(expand=True, fill=tk.BOTH)                  self.menu_bar = tk.Menu(self.root...

🔥 Advanced MP3 Music Player in Python | CustomTkinter + Pygame | Free Source Code

Image
Demo : Click Video 👇👇👇 Description: Create a stylish MP3 Music Player in Python using CustomTkinter & Pygame . 🎵 This modern music player allows you to play, pause, resume, and stop MP3 songs from a selected folder. 🚀 Download full source code and build your own Python music player today! 🔹 Features: ✅ Load & Play MP3 Songs 🎶 ✅ Pause & Resume Music ⏯ ✅ Stop Music Anytime ⏹ ✅ CustomTkinter Modern UI 🌟 ✅ Fully Functional Music Player 🎼 Code : import pygame import customtkinter as ctk from tkinter import filedialog, messagebox # Initialize Pygame Mixer pygame.mixer.init() # Create Main App Window ctk.set_appearance_mode("dark")  # "light", "dark", "system" ctk.set_default_color_theme("blue")  # "blue", "green", "dark-blue" app = ctk.CTk() app.title("🎵 MP3 Music Player 🎵") app.geometry("450x500") # Function to Load MP3 File def load_song():     file_path = f...

🔥 Advanced Snake Game in Python | Speed Boost + No Apple on High Score | Full Source Code

Image
Demo : Click Video 👇👇👇 📝 Description: Looking for an advanced Snake Game in Python ? 🚀 This version includes speed boost, improved food spawning, and no apple spawn on high score ! Perfect for Python beginners and game developers. 🎮 ✅ Features: ✔ Dynamic Speed Increase 🚀 ✔ Smart Food Spawning 🍏 ✔ No Apple on High Score ❌ ✔ Smooth Animations & Collision Detection 🎯 ✔ Full Source Code Available Below! 💻 Code : Save Apple img path (assets/food.png) :  import pygame import random # Initialize pygame pygame.init() # Define colors white = (255, 255, 255) black = (0, 0, 0) red = (213, 50, 80) green = (0, 255, 0) # Game window size width = 600 height = 400 # Snake block size block_size = 10 initial_speed = 5  # Starting speed max_speed = 25  # Maximum speed # Initialize window window = pygame.display.set_mode((width, height)) pygame.display.set_caption("Snake Game by FuzzuTech") # Load apple image apple_img = pygame.image.load("assets/food.png")...

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

Create a Stylish Tkinter Login System with SQLite | Python GUI Project

Image
Demo : Click Video 👇👇👇 Code : import sqlite3 import tkinter as tk from tkinter import messagebox # Database Setup conn = sqlite3.connect("database.db") cursor = conn.cursor() cursor.execute('''CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY, username TEXT UNIQUE, password TEXT)''') conn.commit() # Tkinter Window Setup root = tk.Tk() root.title("Modern Tkinter Login - FuzzuTech") root.geometry("420x400") root.config(bg="#1e272e")  # Dark theme background # Header Label tk.Label(root, text="🚀 FuzzuTech Login", font=("Arial", 16, "bold"), bg="#1e272e", fg="#f1c40f").pack(pady=15) # Username Label + Entry tk.Label(root, text="Username:", bg="#1e272e", fg="white", font=("Arial", 12)).pack(anchor="w", padx=30) username_entry = tk.Entry(root, font=("Arial", 12), bg="#dfe6e9", fg="black", w...

Best Python GUI File Manager – Automate Your File Management! 🔥

Image
Demo : Click Video 👇👇👇 Code : import os import shutil import tkinter as tk from tkinter import filedialog, messagebox # Function to browse file def browse_file():     file_path = filedialog.askopenfilename()     entry_path.delete(0, tk.END)     entry_path.insert(0, file_path) # Function to delete file def delete_file():     file_path = entry_path.get()     if os.path.exists(file_path):         os.remove(file_path)         messagebox.showinfo("Success", "File Deleted Successfully")     else:         messagebox.showerror("Error", "File Not Found") # Fixed Rename Function def rename_file():     file_path = entry_path.get()     new_name = entry_new_name.get().strip()          if not os.path.exists(file_path):         messagebox.showerror("Error", "File Not Found")         return ...

🔥 Python Student Grade Calculator (GUI) – Modern & Stylish Application with Full Code

Image
Demo : Click Video 👇👇👇 Description: Want to build a modern & stylish Python Student Grade Calculator with an interactive GUI ? 🚀 In this post, we provide: ✅ Full Python Code for a Grade Calculator ✅ Modern GUI Design (Tkinter-based) ✅ Step-by-step guide to implement ✅ YouTube demo video for better understanding Code : import tkinter as tk from tkinter import messagebox # Function to calculate grade def calculate_grade():     try:         marks = [float(entry.get()) for entry in entries]         total_marks = sum(marks)         percentage = (total_marks / (len(marks) * 100)) * 100         if percentage >= 90:             grade, color, msg = "A+", "#28a745", "🎉 Excellent Performance! Keep it up!"         elif percentage >= 80:             grade, color, msg = "A", "#17a2b8", "👍 Great Job! Yo...

🚀 AI Background Remover – Remove Image Background in 1 Click! (Python Project)

Image
Demo : Click Video 👇👇👇 📂 Folder Structure: /ai_bg_remover │-- /static │   │-- /css │   │   └-- styles.css │   │-- /uploads │-- /templates │   └-- index.html │-- app.py │-- requirements.txt Code : Install Dependencies : cmd => pip install flask rembg pillow 📌 1. Backend (Flask) – app.py from flask import Flask, render_template, request, send_file from rembg import remove from PIL import Image import os app = Flask(__name__) UPLOAD_FOLDER = "static/uploads" OUTPUT_FOLDER = "static/outputs" os.makedirs(UPLOAD_FOLDER, exist_ok=True) os.makedirs(OUTPUT_FOLDER, exist_ok=True) @app.route('/') def index():     return render_template('index.html') @app.route('/remove-bg', methods=['POST']) def remove_bg():     if 'image' not in request.files:         return "No file uploaded", 400     file = request.files['image']     input_path = os.path.join(UPLOAD_FOLDER, file.filename) ...

🔑 Best Modern Password Manager App – Secure & Store Passwords Easily | Python GUI

Image
Demo : Click Video 👇👇👇 🌎 Tech Stack: Python, Tkinter, SQLite 🔐 Features: ✅ Generate Strong Passwords ✅ Save & Retrieve Passwords Securely ✅ AES Encryption for Security ✅ Beautiful GUI with Tkinter ✅ Fully Responsive & Modern Look 📂 Folder Structure /Python_Password_Manager │── main.py │── database.py │── encryption.py │── gui.py │── requirements.txt Code : 🛠️ 1. Install Dependencies ( requirements.txt ) tk sqlite3 pycryptodome Install Command: cmd =>  pip install -r requirements.txt 🏆 2. Main Code – main.py (Run This File) from gui import PasswordManagerGUI if __name__ == "__main__":     app = PasswordManagerGUI()     app.run() 💾 3. Database – database.py import sqlite3 class Database:     def __init__(self):         self.conn = sqlite3.connect("passwords.db")         self.cursor = self.conn.cursor()         self.create_table()     def create_table(se...

Live Exchange Rate in Python | Real-Time Currency Converter

Image
Demo : Click Video 👇👇👇 ✅ Features: ✔ Real-time currency conversion ✔ Tkinter GUI interface ✔ Fetches live exchange rates ✔ Supports multiple currencies 📜 Full Source Code + Explanation: Code : 📜 Step 1: Install Required Library : cmd =>  pip install forex-python import tkinter as tk from tkinter import ttk, messagebox import requests API_KEY = "your_api_key_here"  # ⚡ Get your free API key from exchangeratesapi.io BASE_URL = "https://api.exchangerate-api.com/v4/latest/" def convert_currency():     try:         amount_text = entry_amount.get().strip()         if not amount_text or not amount_text.replace(".", "").isdigit():             raise ValueError  # Agar empty ya invalid input hai toh error raise karo         amount = float(amount_text)         from_currency = combo_from.get()         to_currency = combo_to.get(...

🎙 Create a Modern Python GUI Voice Recorder App – Record & Save Audio Easily!

Image
Demo : Click Video 👇👇👇 📌 Description: 🚀 Learn how to build a stylish and modern Python GUI Voice Recorder App using Tkinter and SoundDevice ! 🎤 Save your voice like a pro and create an interactive audio recording application. Perfect for beginners and advanced coders! 🔹 Features of this App: ✅ Modern & Attractive GUI 🎨 ✅ Record high-quality audio 🎤 ✅ Save recordings in .wav format 📁 ✅ Python & Tkinter-based GUI Code : 🔧 Install Required Libraries : cmd => pip install sounddevice scipy customtkinter import sounddevice as sd from scipy.io.wavfile import write import numpy as np import customtkinter as ctk from tkinter import messagebox import threading import time # App Settings ctk.set_appearance_mode("dark")   ctk.set_default_color_theme("blue")   class VoiceRecorderApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("🎤 Modern Voice Recorder")   ...