SlideShare a Scribd company logo
The Django Book—Models
Sharre Chen
http://django-book.readthedocs.org/en/latest/index.html
The “Dumb” Way to Do Database Queries
in Views
Django’s database API
MVC
M(Model): data access logic, is handled by
Django’s database layer
V(View): business logic, is handled by views and
templates.
C(Controller): presentation logic, is handled by the
framework itself by following your URLconf and
calling the appropriate Python function.
MTV
M(Model): data access layer.
T(Template): the presentation layer.
V(View): business logic layer.
Configuring the Database
• In settings.py:
Example for MySQL:
DATABASE_ENGINE = 'mysql'	
DATABASE_NAME = 'mydb'	
DATABASE_USER= 'user'	
DATABASE_PASSWORD = 'password'	
DATABASE_HOST = ‘/var/run/mysql'	
!
Try if setting is correct:	
$ python manage.py shell	
>>> from django.db import connection	
>>> cursor = connection.cursor()
What’s the difference between a project and
an app?
• A project is an instance of a certain set of Django
apps, plus the configuration for those apps.
• An app is a portable set of Django functionality,
usually including models and views, that lives
together in a single Python package.
★if you’re using Django’s database layer (models),
you must create a Django app.
Create an app
create a books app:
$ python manage.py startapp books	
file structure will look like:
Data access with Django
Installing the Model
Edit setting.py file again:
!
!
!
!
Check models’ syntax
checks whether your models’ syntax and logic are
correct:
$ python manage.py validate
check create table sql
If your models are valid, run the following command
for Django to generate CREATE TABLE statements
for your models in the books app (before migration):
$ python manage.py sqlall books
commit the SQL to database
$ python manage.py syncdb	
!
!
★ Note that syncdb does not sync changes
in models or deletions of models.
Basic data access
Try it out:	
$ python manage.py shell
Basic data access
If you want to create an object and save it to
the database in a single step, use the
objects.create() method.
Adding Model String Representations
it difficult to tell the Publisher objects apart:
Inserting and Updating Data
update name:

will result in:
Selecting Objects
if you type command:

This roughly translates to this SQL:	
!
✦ Zen of Python: “Explicit is better than
implicit.”
Filtering Data
filter data:

This roughly translates to this SQL:	
!
Filtering Data: LIKE
filter data:

!
here, the __contains part gets translated by
Django into a SQL LIKE statement:	
!
Retrieving Single Objects
get single data:

will result in:	
!
!
you may write:
Ordering Data
get ordered data:

SQL will be:	
!
To order by multiple fields:	
!
specify reverse ordering:
Ordering Data
Specify a default ordering in model:

Chaining Lookups
get filtered and ordered data:	
!
As SQL:

Slicing Data
get first ordered data:	
!
As SQL:

Slicing Data
but can not do:	
!
!
you can do in another way:

Updating Multiple Objects in One Statement
update a filed:	
!
!
update will return success updated object number:	


Deleting Objects
delete a data:	
!
!
delete all matched data:	


Q&A
Thank You ~ :)

More Related Content

What's hot

Django Mongodb Engine
Django Mongodb EngineDjango Mongodb Engine
Django Mongodb Engine
Flavio Percoco Premoli
 
Django and Mongoengine
Django and MongoengineDjango and Mongoengine
Django and Mongoengine
austinpublic
 
The Django Web Application Framework 2
The Django Web Application Framework 2The Django Web Application Framework 2
The Django Web Application Framework 2
fishwarter
 
Understanding backbonejs
Understanding backbonejsUnderstanding backbonejs
Understanding backbonejs
Nick Lee
 
Javascript first-class citizenery
Javascript first-class citizeneryJavascript first-class citizenery
Javascript first-class citizenery
toddbr
 
Django
DjangoDjango
Django a whirlwind tour
Django   a whirlwind tourDjango   a whirlwind tour
Django a whirlwind tour
Brad Montgomery
 
Create responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJSCreate responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJS
Hannes Hapke
 
In-depth changes to Drupal 8 javascript
In-depth changes to Drupal 8 javascriptIn-depth changes to Drupal 8 javascript
In-depth changes to Drupal 8 javascript
Théodore Biadala
 
Viking academy backbone.js
Viking academy  backbone.jsViking academy  backbone.js
Viking academy backbone.js
Bert Wijnants
 
Intro To Mvc Development In Php
Intro To Mvc Development In PhpIntro To Mvc Development In Php
Intro To Mvc Development In Php
funkatron
 
Django Heresies
Django HeresiesDjango Heresies
Django Heresies
Simon Willison
 
Django for mobile applications
Django for mobile applicationsDjango for mobile applications
Django for mobile applications
Hassan Abid
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS Architecture
Eyal Vardi
 
Django design-patterns
Django design-patternsDjango design-patterns
Django design-patterns
Agiliq Info Solutions India Pvt Ltd
 
Building Pluggable Web Applications using Django
Building Pluggable Web Applications using DjangoBuilding Pluggable Web Applications using Django
Building Pluggable Web Applications using Django
Lakshman Prasad
 
Two scoops of django 1.6 - Ch7, Ch8
Two scoops of django 1.6  - Ch7, Ch8Two scoops of django 1.6  - Ch7, Ch8
Two scoops of django 1.6 - Ch7, Ch8
flywindy
 
Hybrid Web Applications
Hybrid Web ApplicationsHybrid Web Applications
Hybrid Web Applications
James Da Costa
 
Kiss PageObjects [01-2017]
Kiss PageObjects [01-2017]Kiss PageObjects [01-2017]
Kiss PageObjects [01-2017]
Iakiv Kramarenko
 
Improving the performance of Odoo deployments
Improving the performance of Odoo deploymentsImproving the performance of Odoo deployments
Improving the performance of Odoo deployments
Odoo
 

What's hot (20)

Django Mongodb Engine
Django Mongodb EngineDjango Mongodb Engine
Django Mongodb Engine
 
Django and Mongoengine
Django and MongoengineDjango and Mongoengine
Django and Mongoengine
 
The Django Web Application Framework 2
The Django Web Application Framework 2The Django Web Application Framework 2
The Django Web Application Framework 2
 
Understanding backbonejs
Understanding backbonejsUnderstanding backbonejs
Understanding backbonejs
 
Javascript first-class citizenery
Javascript first-class citizeneryJavascript first-class citizenery
Javascript first-class citizenery
 
Django
DjangoDjango
Django
 
Django a whirlwind tour
Django   a whirlwind tourDjango   a whirlwind tour
Django a whirlwind tour
 
Create responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJSCreate responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJS
 
In-depth changes to Drupal 8 javascript
In-depth changes to Drupal 8 javascriptIn-depth changes to Drupal 8 javascript
In-depth changes to Drupal 8 javascript
 
Viking academy backbone.js
Viking academy  backbone.jsViking academy  backbone.js
Viking academy backbone.js
 
Intro To Mvc Development In Php
Intro To Mvc Development In PhpIntro To Mvc Development In Php
Intro To Mvc Development In Php
 
Django Heresies
Django HeresiesDjango Heresies
Django Heresies
 
Django for mobile applications
Django for mobile applicationsDjango for mobile applications
Django for mobile applications
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS Architecture
 
Django design-patterns
Django design-patternsDjango design-patterns
Django design-patterns
 
Building Pluggable Web Applications using Django
Building Pluggable Web Applications using DjangoBuilding Pluggable Web Applications using Django
Building Pluggable Web Applications using Django
 
Two scoops of django 1.6 - Ch7, Ch8
Two scoops of django 1.6  - Ch7, Ch8Two scoops of django 1.6  - Ch7, Ch8
Two scoops of django 1.6 - Ch7, Ch8
 
Hybrid Web Applications
Hybrid Web ApplicationsHybrid Web Applications
Hybrid Web Applications
 
Kiss PageObjects [01-2017]
Kiss PageObjects [01-2017]Kiss PageObjects [01-2017]
Kiss PageObjects [01-2017]
 
Improving the performance of Odoo deployments
Improving the performance of Odoo deploymentsImproving the performance of Odoo deployments
Improving the performance of Odoo deployments
 

Viewers also liked

Puzzle
PuzzlePuzzle
Muhammad abbas ansari
Muhammad abbas ansariMuhammad abbas ansari
Muhammad abbas ansari
MUHAMMAD ABBAS ANSARI
 
sreeram cv 2016
sreeram cv 2016sreeram cv 2016
sreeram cv 2016
Sreeram N
 
LFZH Final Report
LFZH Final ReportLFZH Final Report
LFZH Final Report
Jillian Sommer
 
Plano de ensino 2016 adm da produção e operações 1
Plano de ensino 2016 adm da produção e operações 1Plano de ensino 2016 adm da produção e operações 1
Plano de ensino 2016 adm da produção e operações 1
Cristiano Ferreira Cesarino
 
Programma sinergia
Programma sinergiaProgramma sinergia
Programma sinergia
katia durì
 
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
Cristiano Ferreira Cesarino
 
Mat ii aula captulo 1.3 parte 1
Mat ii aula captulo 1.3  parte 1Mat ii aula captulo 1.3  parte 1
Mat ii aula captulo 1.3 parte 1
Cristiano Ferreira Cesarino
 
Plano de ensino 2016 adm financeira e orçamentária II plano
Plano de ensino 2016 adm financeira e orçamentária II planoPlano de ensino 2016 adm financeira e orçamentária II plano
Plano de ensino 2016 adm financeira e orçamentária II plano
Cristiano Ferreira Cesarino
 
Materiais ii unidade 1.3 2º parte
Materiais ii unidade 1.3  2º parteMateriais ii unidade 1.3  2º parte
Materiais ii unidade 1.3 2º parte
Cristiano Ferreira Cesarino
 
Administração financeira e orçamentária ii aula 03
Administração financeira e orçamentária ii aula 03Administração financeira e orçamentária ii aula 03
Administração financeira e orçamentária ii aula 03
Cristiano Ferreira Cesarino
 
Ppt green revolution
Ppt  green revolutionPpt  green revolution
Ppt green revolution
sainasrasheed
 
Material Administração da Produção e Operações I
Material Administração da Produção e Operações I Material Administração da Produção e Operações I
Material Administração da Produção e Operações I
Cristiano Ferreira Cesarino
 
Logística empresarial
Logística empresarialLogística empresarial
Logística empresarial
Cristiano Ferreira Cesarino
 

Viewers also liked (14)

Puzzle
PuzzlePuzzle
Puzzle
 
Muhammad abbas ansari
Muhammad abbas ansariMuhammad abbas ansari
Muhammad abbas ansari
 
sreeram cv 2016
sreeram cv 2016sreeram cv 2016
sreeram cv 2016
 
LFZH Final Report
LFZH Final ReportLFZH Final Report
LFZH Final Report
 
Plano de ensino 2016 adm da produção e operações 1
Plano de ensino 2016 adm da produção e operações 1Plano de ensino 2016 adm da produção e operações 1
Plano de ensino 2016 adm da produção e operações 1
 
Programma sinergia
Programma sinergiaProgramma sinergia
Programma sinergia
 
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
Plano de ensino 2016 adm da produção e operações 2 (salvo automaticamente)
 
Mat ii aula captulo 1.3 parte 1
Mat ii aula captulo 1.3  parte 1Mat ii aula captulo 1.3  parte 1
Mat ii aula captulo 1.3 parte 1
 
Plano de ensino 2016 adm financeira e orçamentária II plano
Plano de ensino 2016 adm financeira e orçamentária II planoPlano de ensino 2016 adm financeira e orçamentária II plano
Plano de ensino 2016 adm financeira e orçamentária II plano
 
Materiais ii unidade 1.3 2º parte
Materiais ii unidade 1.3  2º parteMateriais ii unidade 1.3  2º parte
Materiais ii unidade 1.3 2º parte
 
Administração financeira e orçamentária ii aula 03
Administração financeira e orçamentária ii aula 03Administração financeira e orçamentária ii aula 03
Administração financeira e orçamentária ii aula 03
 
Ppt green revolution
Ppt  green revolutionPpt  green revolution
Ppt green revolution
 
Material Administração da Produção e Operações I
Material Administração da Produção e Operações I Material Administração da Produção e Operações I
Material Administração da Produção e Operações I
 
Logística empresarial
Logística empresarialLogística empresarial
Logística empresarial
 

Similar to The Django Book - Chapter 5: Models

A gentle intro to the Django Framework
A gentle intro to the Django FrameworkA gentle intro to the Django Framework
A gentle intro to the Django Framework
Ricardo Soares
 
The Django Book chapter 5 Models
The Django Book chapter 5 ModelsThe Django Book chapter 5 Models
The Django Book chapter 5 Models
Vincent Chien
 
Session 2 django material for training at baabtra models
Session 2 django material for training at baabtra modelsSession 2 django material for training at baabtra models
Session 2 django material for training at baabtra models
baabtra.com - No. 1 supplier of quality freshers
 
Data Migrations in the App Engine Datastore
Data Migrations in the App Engine DatastoreData Migrations in the App Engine Datastore
Data Migrations in the App Engine Datastore
Ryan Morlok
 
Data access
Data accessData access
Data access
Joshua Yoon
 
django_introduction20141030
django_introduction20141030django_introduction20141030
django_introduction20141030
Kevin Wu
 
SQL to NoSQL: Top 6 Questions
SQL to NoSQL: Top 6 QuestionsSQL to NoSQL: Top 6 Questions
SQL to NoSQL: Top 6 Questions
Mike Broberg
 
4 jdbc step1
4 jdbc step14 jdbc step1
4 jdbc step1
myrajendra
 
Planbox Backbone MVC
Planbox Backbone MVCPlanbox Backbone MVC
Planbox Backbone MVC
Acquisio
 
Linq to sql
Linq to sqlLinq to sql
Linq to sql
Muhammad Younis
 
PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#
Michael Heron
 
Jsp project module
Jsp project moduleJsp project module
ADO.NET by ASP.NET Development Company in india
ADO.NET by ASP.NET  Development Company in indiaADO.NET by ASP.NET  Development Company in india
ADO.NET by ASP.NET Development Company in india
iFour Institute - Sustainable Learning
 
Web development with django - Basics Presentation
Web development with django - Basics PresentationWeb development with django - Basics Presentation
Web development with django - Basics Presentation
Shrinath Shenoy
 
Schema webinar
Schema webinarSchema webinar
Schema webinar
Gary Sherman
 
Zend Framework And Doctrine
Zend Framework And DoctrineZend Framework And Doctrine
Zend Framework And Doctrine
isaaczfoster
 
SharePoint Saturday Atlanta 2015
SharePoint Saturday Atlanta 2015SharePoint Saturday Atlanta 2015
SharePoint Saturday Atlanta 2015
Pushkar Chivate
 
How do i connect to that
How do i connect to thatHow do i connect to that
How do i connect to that
Becky Bertram
 
Why is data independence (still) so important? Optiq and Apache Drill.
Why is data independence (still) so important? Optiq and Apache Drill.Why is data independence (still) so important? Optiq and Apache Drill.
Why is data independence (still) so important? Optiq and Apache Drill.
Julian Hyde
 
elm-d3 @ NYC D3.js Meetup (30 June, 2014)
elm-d3 @ NYC D3.js Meetup (30 June, 2014)elm-d3 @ NYC D3.js Meetup (30 June, 2014)
elm-d3 @ NYC D3.js Meetup (30 June, 2014)
Spiros
 

Similar to The Django Book - Chapter 5: Models (20)

A gentle intro to the Django Framework
A gentle intro to the Django FrameworkA gentle intro to the Django Framework
A gentle intro to the Django Framework
 
The Django Book chapter 5 Models
The Django Book chapter 5 ModelsThe Django Book chapter 5 Models
The Django Book chapter 5 Models
 
Session 2 django material for training at baabtra models
Session 2 django material for training at baabtra modelsSession 2 django material for training at baabtra models
Session 2 django material for training at baabtra models
 
Data Migrations in the App Engine Datastore
Data Migrations in the App Engine DatastoreData Migrations in the App Engine Datastore
Data Migrations in the App Engine Datastore
 
Data access
Data accessData access
Data access
 
django_introduction20141030
django_introduction20141030django_introduction20141030
django_introduction20141030
 
SQL to NoSQL: Top 6 Questions
SQL to NoSQL: Top 6 QuestionsSQL to NoSQL: Top 6 Questions
SQL to NoSQL: Top 6 Questions
 
4 jdbc step1
4 jdbc step14 jdbc step1
4 jdbc step1
 
Planbox Backbone MVC
Planbox Backbone MVCPlanbox Backbone MVC
Planbox Backbone MVC
 
Linq to sql
Linq to sqlLinq to sql
Linq to sql
 
PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#
 
Jsp project module
Jsp project moduleJsp project module
Jsp project module
 
ADO.NET by ASP.NET Development Company in india
ADO.NET by ASP.NET  Development Company in indiaADO.NET by ASP.NET  Development Company in india
ADO.NET by ASP.NET Development Company in india
 
Web development with django - Basics Presentation
Web development with django - Basics PresentationWeb development with django - Basics Presentation
Web development with django - Basics Presentation
 
Schema webinar
Schema webinarSchema webinar
Schema webinar
 
Zend Framework And Doctrine
Zend Framework And DoctrineZend Framework And Doctrine
Zend Framework And Doctrine
 
SharePoint Saturday Atlanta 2015
SharePoint Saturday Atlanta 2015SharePoint Saturday Atlanta 2015
SharePoint Saturday Atlanta 2015
 
How do i connect to that
How do i connect to thatHow do i connect to that
How do i connect to that
 
Why is data independence (still) so important? Optiq and Apache Drill.
Why is data independence (still) so important? Optiq and Apache Drill.Why is data independence (still) so important? Optiq and Apache Drill.
Why is data independence (still) so important? Optiq and Apache Drill.
 
elm-d3 @ NYC D3.js Meetup (30 June, 2014)
elm-d3 @ NYC D3.js Meetup (30 June, 2014)elm-d3 @ NYC D3.js Meetup (30 June, 2014)
elm-d3 @ NYC D3.js Meetup (30 June, 2014)
 

Recently uploaded

Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
Gino153088
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
RamonNovais6
 
BRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdfBRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdf
LAXMAREDDY22
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
IJECEIAES
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
UReason
 
Welding Metallurgy Ferrous Materials.pdf
Welding Metallurgy Ferrous Materials.pdfWelding Metallurgy Ferrous Materials.pdf
Welding Metallurgy Ferrous Materials.pdf
AjmalKhan50578
 
Introduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptxIntroduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptx
MiscAnnoy1
 
john krisinger-the science and history of the alcoholic beverage.pptx
john krisinger-the science and history of the alcoholic beverage.pptxjohn krisinger-the science and history of the alcoholic beverage.pptx
john krisinger-the science and history of the alcoholic beverage.pptx
Madan Karki
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
SakkaravarthiShanmug
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
abbyasa1014
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
Certificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi AhmedCertificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi Ahmed
Mahmoud Morsy
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Hematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood CountHematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood Count
shahdabdulbaset
 

Recently uploaded (20)

Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
 
BRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdfBRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdf
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
 
Welding Metallurgy Ferrous Materials.pdf
Welding Metallurgy Ferrous Materials.pdfWelding Metallurgy Ferrous Materials.pdf
Welding Metallurgy Ferrous Materials.pdf
 
Introduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptxIntroduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptx
 
john krisinger-the science and history of the alcoholic beverage.pptx
john krisinger-the science and history of the alcoholic beverage.pptxjohn krisinger-the science and history of the alcoholic beverage.pptx
john krisinger-the science and history of the alcoholic beverage.pptx
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
Certificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi AhmedCertificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi Ahmed
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Hematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood CountHematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood Count
 

The Django Book - Chapter 5: Models