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 quickly becomes swamped with files (or will when I do this).
If I put a file to import in a folder I can no longer import it. How do I import a file from another folder and will I need to reference to the class it contains differently now that it’s in a folder?
Thanks in advance
Create an
__init__.pyfile in your projects folder, and it will be treated like a module by Python.Classes in your package directory can then be imported using syntax like:
Within
__init__.py, you may create an__all__array that definesfrom package import *behavior:And here is way more information than you even want to know about packages in Python
Generally speaking, a good way to learn about how to organize a lot of code is to pick a popular Python package and see how they did it. I’d check out Django and Twisted, for starters.