.png?h=e46532624e05d5782cd6b8aebde38257)
This folder contains __init__.py file which means it’s a python package. It also contains all files which are created after running make migration
command .
The folder which contains __init__.py file is considered as Python Package.
This file is used to register sql tables so we could perform CRUD operation from Admin Application. Admin Application is provided by Django to perform CRUD operation.
This file is used to config app.
This file is used to create our own model class later these classes will be
converted into database table by Django for our application.
This is files is used to create tests.
This file is used to create view. We write all the business logic related code in this file.