Skip to main content

Posts

Featured

Image renameing tool from alphabetical order to numerical order

Here you can slect a particular image or whole folder to rename them in numerical order from alphabetical order. Source code: import os import tkinter as tk from tkinter import filedialog , messagebox , ttk class PhotoRenamer :     def _init_ ( self , root ):         self . root = root         self . root .title( "Student Photo Serial Renamer (2026)" )         self . root .geometry( "600x400" )                 self . selected_files = [] # Stores full paths of images to rename         self . start_num_var = tk . StringVar ( value = "1" )                 self . create_widgets ()     def create_widgets ( self ):         main_frame = ttk . Frame ( self . root , padding = "20" )         main_frame . pack ( fill = "both" , expand = True )      ...

Latest Posts

Image resizer tool

Find out passwords of the wifi's and connected to your pc earlier

Make your own AI assistant by python

Build your shooting game using python