How do you organize python code for larger projects?
For NodeJS, I find it more intuitive to split up code into submodules with imports and exports.
For python, its less intuitive to me and I end up with a ton of code in a single file. But I would prefer to have smaller files with clear separation of concerns.


