Posts

Showing posts with the label Automation Tools

🎲 Launch Random App with Python | FuzzuTech GUI Project

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 💡 Features : Offline Python GUI Project Automate Daily Tasks with Fun Perfect for Beginners and Hobby Coders Fully Customizable Path List Fun + Practical Use Case Code : import tkinter as tk import random import os from tkinter import messagebox import customtkinter as ctk # Configure appearance ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") # List of app paths (Windows Example) app_paths = [     "C:\\Windows\\System32\\notepad.exe",     "C:\\Windows\\System32\\calc.exe",     "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",     "C:\\Windows\\System32\\mspaint.exe",     "C:\\Program Files\\Corel\\CorelDRAW Graphics Suite 2021\\Programs64\\CorelDRW.exe" ] # Function to launch random app def launch_random_app():     try:         random_app = random.choice(app_paths)         os.startfile(random_app) ...