Back to articles
QuickSort PRO – Step-by-Step Tutorial (File Size Organizer in Python)
How-ToTools

QuickSort PRO – Step-by-Step Tutorial (File Size Organizer in Python)

via Dev.to TutorialMate Technologies

QuickSort PRO is a professional file size organizer that lets you sort files by size, move/copy them, and track progress—all with a simple GUI. This tutorial breaks it down for beginners. 1️⃣ Prerequisites Before starting, make sure you have: Python 3.10+ The following packages installed: pip install ttkbootstrap tkinterdnd2 You also need a code editor like VS Code or PyCharm. You can download the source or Windows executable: GitHub Repository: https://github.com/rogers-cyber/QuickSort.git Windows EXE Download: GitHub Releases 2️⃣ Setting Up the App We start by importing all required modules and creating the main Tkinter window. import os import sys import shutil import threading import time import traceback from queue import Queue , Empty from tkinter import filedialog , messagebox import tkinter as tk import ttkbootstrap as tb from ttkbootstrap.constants import * from tkinterdnd2 import DND_FILES , TkinterDnD # App configuration APP_NAME = " QuickSort - File Size Organizer " APP_VER

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
3 views

Related Articles