File Renamer

I built the File Renamer GUI with the Kivy GUI framework. It's a simple app that takes in a few inputs (a prefix, a list of file extensions, and a folder) and uses them to rename all affected files (prefix_1.ext, prefix_2.ext, etc.)
The app is conveniently packaged to an executable with PyInstaller, enabling it to be run with a simple double-click. This means the end user doesn't need to install Python, create a virtual environment, update dependencies, or run from the command line. The app's code can be found at this GitHub repository. In the future, I plan to share blog posts on how to write Kivy applications and how to package applications with PyInstaller. Stay tuned for updates to this page with that info.