Posts

Showing posts with the label Python Development

AI Fitness & Nutrition Tracker GUI in Python | Modern GUI App

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Description: Build a stunning AI-powered Fitness & Nutrition Tracker using Python and Tkinter with a modern stylish dashboard UI. 💪 Track workouts, meals, and progress all in one place. Features: AI-generated workout & meal plans Modern sidebar navigation Stylish GUI using Tkinter Beginner-friendly Created By: FuzzuTech Code : import tkinter as tk from tkinter import ttk from PIL import Image, ImageTk # Main App Window class FitnessApp(tk.Tk):     def __init__(self):         super().__init__()         self.title("AI Fitness & Nutrition Tracker")         # self.geometry("900x600")         self.geometry("650x600")         self.configure(bg="#1e1e2f")         self.resizable(False, False)         self.setup_ui()     def setup_ui(self):       ...

Build a Simple Blog Application with Python and CustomTkinter

Image
Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : Libraries Required: cmd => pip install customtkinter import sqlite3 from tkinter import * from tkinter import messagebox import customtkinter as ctk # Database setup conn = sqlite3.connect('blog.db') cursor = conn.cursor() cursor.execute(''' CREATE TABLE IF NOT EXISTS posts (     id INTEGER PRIMARY KEY AUTOINCREMENT,     title TEXT NOT NULL,     content TEXT NOT NULL,     created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); ''') conn.commit() # Functions def create_post():     title = title_entry.get()     content = content_entry.get("1.0", "end-1c")          if title and content:         cursor.execute("INSERT INTO posts (title, content) VALUES (?, ?)", (title, content))         conn.commit()         messagebox.showinfo("Success", "Post created successfully!")         title_entry.delete...