Skip to content

Vinay7820/Python-Django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python-Django

Webpage which performs basic CRUD Operation using Python Django Framework.

Django is a free and open-source web framework, written in Python, which follows the model-view-template (MVT) architectural pattern.

Controller : A controller is the heart of the system, it steers everything. For a web framework, this means handling requests and responses, setting up database connections and loading add-ons. For this, Django reads a settings file so that it knows what to load and set up. And Django reads a URL config file that tells it what to do with the incoming requests from browsers.

Model : The model layer in Django means the database plus the Python code that directly uses it. It models reality. You capture whatever your website needs in database tables. Django helps you write Python classes (called models) that tie 1:1 to the database tables.

View : The view layer is the user interface. Django splits this up in the actual HTML pages and the Python code (called views) that renders them. And it also has an automatic web admin interface for editing the models.

About

Basic CRUD Operation using Django Framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published