I've already broken down models.py into separate model files.
One of model file is getting huge, and I want to break it apart, but don't know how.
One way I can think of is, break methods into several classes (as mixins) and inherit them. but not sure if it's the best way to go about it.
- Edit,
This is different question than possible duplicates.
When a single model (such as Book) gets large, how do you split it up?
possible duplicates doesn't ask the question nor answer it.