KEMBAR78
Django & React | PDF
1. What is the Django?
2. Where did Django Come From?
3. 5 Best Python Frameworks
4. What does Django Code Look Like?
5. What is MTV?
6. Workshop
Django
What is The Django?
Django is a high-level Python web framework that enables rapid development of secure
and maintainable websites…
Where did Django Come From?
Django was initially developed between 2003 and 2005 by a web team who were
responsible for creating and maintaining newspaper websites
5 Best Python Frameworks
Django
Flask
Web2Py
Pyramid
Bottle
...
What does Django code look like?
When a request is received the application works out what is needed based on the URL
and possibly information in POST data or GET data
What is MTV?
Models: Models are Python objects that define the structure of an application's data, and
provide mechanisms to manage (add, modify, delete) and query records in the database.
Templates: A template is a text file defining the structure or layout of a file (such as an
HTML page), with placeholders used to represent actual content.
View: A view is a request handler function, which receives HTTP requests and returns
HTTP responses. Views access the data needed to satisfy requests via models, and
delegate the formatting of the response to templates.
Hello World

Django & React

  • 3.
    1. What isthe Django? 2. Where did Django Come From? 3. 5 Best Python Frameworks 4. What does Django Code Look Like? 5. What is MTV? 6. Workshop Django
  • 4.
    What is TheDjango? Django is a high-level Python web framework that enables rapid development of secure and maintainable websites…
  • 5.
    Where did DjangoCome From? Django was initially developed between 2003 and 2005 by a web team who were responsible for creating and maintaining newspaper websites
  • 6.
    5 Best PythonFrameworks Django Flask Web2Py Pyramid Bottle ...
  • 7.
    What does Djangocode look like? When a request is received the application works out what is needed based on the URL and possibly information in POST data or GET data
  • 9.
    What is MTV? Models:Models are Python objects that define the structure of an application's data, and provide mechanisms to manage (add, modify, delete) and query records in the database. Templates: A template is a text file defining the structure or layout of a file (such as an HTML page), with placeholders used to represent actual content. View: A view is a request handler function, which receives HTTP requests and returns HTTP responses. Views access the data needed to satisfy requests via models, and delegate the formatting of the response to templates.
  • 10.