I have a ton of models. I mean a ton. Is it possible to reorganize these models into a more convenient format using the new Python package?
IE: Current -
myproject/ web/ models.py
IE: new -
myproject/ web/ models/ __init__.py events.py registrations.py lessons.py
... and just import them all into my __init__.py file? I'm kind of new to Python packages, will this essentially act the same as having one models.py file?
source share