
To create the application’s GUI, you’ll use Qt Designer.


It’ll contain the following files and modules: The ui/ subdirectory will provide a package to store GUI-related code. views.py provides the application’s GUI and related functionalities.rename.py provides the file renaming functionalities.app.py provides the PyQt skeleton application._init_.py enables rprename/ as a Python package.Then you have the rprename/ directory that will hold a Python package with the following modules: rprenamer.py provides an entry-point script to run the application.requirements.txt provides the list of external dependencies for the project.Having a README.md file for your project is considered a best practice in programming, especially if you’re planning to release it as an open source solution. README.md provides a general project description and instructions on installing and running the application.Here, rprename_project/ is the project’s root directory, where you’ll create the following files:
