Python Forum
Best way to create Apps in django API - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Best way to create Apps in django API (/thread-12917.html)



Best way to create Apps in django API - Norvegat - Sep-18-2018

Which is the best way to create an API website using django, i found in github some sources that merge all objects in one app, and others each objects with its own app.
I'm asking about who is the best way, for example in e-commerce web site they have some objects like Products, Carts, Orders, Users, Billing...
Do you create app for each objects (products, carts, orders...) or create all objects in one app.

This is an example of each objects with its own app.
https://github.com/mirumee/saleor

And this merges all objects in one app.
https://github.com/damnee562/shopping-cart