Instantly Check Your PC Specs with This Simple App (Python GUI Project)
Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import ttk import platform import psutil import shutil def get_specs(): os_label.config(text=platform.system() + " " + platform.release()) cpu_label.config(text=platform.processor()) ram_label.config(text=f"{round(psutil.virtual_memory().total / (1024 ** 3), 2)} GB") disk = shutil.disk_usage("/") disk_label.config(text=f"{round(disk.total / (1024 ** 3), 2)} GB") root = tk.Tk() root.title("System Info Viewer") root.geometry("400x300") root.config(bg="#1e1e1e") style = ttk.Style() style.configure("TLabel", background="#1e1e1e", foreground="white", font=("Segoe UI", 12)) ttk.Label(root, text="🖥 System Info Viewer", font=("Segoe UI", 16, "bold")).pack(pady=10) ttk.Label(root, text="Operating System:").pack() os_label = ttk.Label(root, text="") ...