I have started work on a local app for myself that runs through the browser. Having recently gone through the django tutorial I'm thinking that it might be better to use django rather than just plain python.
There's one problem, I have at least 20 models and each will have many functions. Quite simply it's going to create one huge models file and probably huge views too, how do I split them up?
The models are all related so I cant's simply make them into separate apps can I?