I am trying to tinker with the MVC pattern and I have a problem when trying to design the MVC structure. I need a model for products, however as I need to manage more and different data, I can help but wanting to create more models. Would be correct having the following structure or I am not using the design pattern correctly?
/ app.py controller.py view.py models/ model1.py model2.py
Or should I just have one model.py
and add in there all the classes that I need?
Thank you.