Posts

Showing posts with the label Viral Project

💸 My Channel Was Dead... Now This Python App Might Save It – Fuzzu Expense Tracker

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Features: Built with Tkinter GUI Uses Matplotlib for charts Real-time data tracking Monthly summary by category Clean dark mode UI Great for portfolios and students Code : import tkinter as tk from tkinter import ttk, messagebox from datetime import datetime import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg class ExpenseTrackerApp:     def __init__(self, root):         self.root = root         self.root.title("💸 Personal Expense Tracker - FuzzuTech")         self.root.geometry("600x450")         self.root.config(bg="#121212")         self.expenses = []  # List to store expenses as tuples (date, category, amount)         title = tk.Label(root, text="Personal Expense Tracker", font=("Arial", 20, "bold"), fg="#00ff99", bg="#121212")       ...