I\'m starting a Python project and expect to have 20 or more classes in it. As is good practice I want to put them in a separate file each. However, the project directory qu
simple answer is to create an empty file called __init__.py in the new folder you made. Then in your top level .py file include with something like:
__init__.py
import mynewsubfolder.mynewclass