1 / 22

Best Python Django Tutorial For Beginners – With Project Structure

Python Django Tutorial- What is Django,How to Install, History & Features of Django,Python Django Admin Interface,How to Create Application & Simple Project

aakashdata
Download Presentation

Best Python Django Tutorial For Beginners – With Project Structure

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Table of Content: Table of Content: 2 1. Objective 3 2. Python Django Tutorial – What is Django? 4 3. Python Django Tutorial – Install Django 4 4. Python Django Tutorial – Serving a Request for a Website 5 5. Python Django Tutorial – History 6 6. Python Django Tutorial – MVT Pattern 6 7. Python Django Tutorial – Features of Django a. Scalability b. Portability c. Security d. Versatility e. Packages f. Ease of Use 8 9 9 9 9 9 10 8. Prerequisites to Creating a Project in Django a. Starting Project b. Running the Server c. Setting up a database d. Web Server 10 10 10 12 12 9. Django Project Structure a. manage.py b. Project folder c. db.sqlite3 12 13 13 14 10. Creating an Application 15 11. Python Django Admin Interface 16 12. How to Create Simple Project in Django? a. Mapping to a URL 18 19 13. Conclusion 21

  2. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training 1. Objective In this Python Django tutorial for beginners, we will see how to install Django Python. Moreover, we will study the history of Python Django and MVT Pattern. Along with this, we will cover Python Django features and how to create an application in Python Django. At last, we will cover the structure of the project in Python Django. So, let’s start the Python Django Tutorial.

  3. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training 2. Python Django Tutorial – What is Django? Django is a high-level ​Python​ framework. It is free and open-source, written in Python itself, and follows the model-view-template architectural pattern. We can use it to develop quality web applications faster and easier. Since developing for the web needs a set of similar components, you can use a framework. This way, you don’t have to reinvent the wheel. These tasks include authentication, forms, uploading files, management panels, and so. 3. Python Django Tutorial – Install Django To work with Django on your system, C:\Users\lifei>pip install Django

  4. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Collecting Django Let’s Explore Unique Features of Python Programming Language Downloading https://files.pythonhosted.org/packages/ab/15/cfde97943f0db45e4f999c60b 696fbb4df59e82bbccc686770f4e44c9094/Django-2.0.7-py3-none-any.whl (7.1MB) 100% |​████████████████████████████████​| 7.1MB 610kB/s Requirement already satisfied: pytz in c:\users\lifei\appdata\local\programs\python\python36\lib\site-packages (from django) (2018.5) Installing collected packages: django Successfully installed django-2.0.7 4. Python Django Tutorial – Serving a Request for a Website Let’s first find out, in layman’s terms, what happens when your server receives a request for a website. The request is passed to Django and that tries to analyze this request. The urlresolver tries to match the URL against a list of patterns. It performs this match from top to bottom. If it can find a match, it passes the request to the view, which is the associated function. The function view can check if the request is allowed. It also generates a response, and then Django sends it to the user’s web browser.

  5. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training 5. Python Django Tutorial – History ● Adrian Holovaty and Simon Willison created Django in the fall of 2003 at the Lawrence Journal-World newspaper ● Django publicly released under a BSD license in July 2005; named after guitarist Django Reinhardt ● Today, Django is an open-source project with contributors around the world 6. Python Django Tutorial – MVT Pattern MVC stands for ​Model-View-Controller​. We use this when we want to develop applications with user interfaces. MVT stands for ​Model-View-Template​. A template is an HTML file mixed with DTL (​Django Template Language​). Django takes care of the Controller part, which is the software code and controls the interaction between the other two parts- Model and View. When a user requests for a resource, Django acts as a controller and checks if it is available. If the URL maps, View interacts with the Model and renders a Template. Python Django sends back a Template to the user as a response. Read about Python Decision Making Statements with Syntax and Examples

  6. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Best Python Django Tutorial For Beginners The model helps us handle database. View executes business logic and interacts with Model to carry data. It also renders Template. Template handles the user interface and is a presentation layer. The Model class holds essential fields and methods. For each model class, we have a table in the database. Model is a subclass of django.db.models.Model. Each field here denotes a database field. With Django, we have a database-abstraction API that lets us perform CRUD (Create-Retrieve-Update-Delete)​operations on mapped tables.

  7. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training 7. Python Django Tutorial – Features of Django When working with Python Django, you can expect the following Django Features-

  8. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training a. Scalability When you need to scale your system, you can simply add more web nodes to your Django. That is, you can scale it horizontally. Two products that use Django’s scalability are Disqus and Instagram. Do you know the Errors and Exceptions in Python Programming b. Portability The portability of Python makes for a portable Django too. Various platforms include Windows, ​Linux​, and MacOS. c. Security Python Django ensures some arrangements for security too. One of these is that it stores hashed passwords in cookies. d. Versatility Python Django will work with formats like HTML,​ JSON, XML​, among others. It also supports many different client-side frameworks. So, we can use it to build anything including regular websites and social networks. e. Packages Django Programming has the foundation of thousands of additional packages.

  9. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training f. Ease of Use Features like the built-in admin interface make it easy to build with Django. It is also fully functional and finds it easy to switch databases. 8. Prerequisites to Creating a Project in Django In this Python Django Tutorial, we will study the prerequisites to create a project in Python Django. a. Starting Project Use the following command in the command prompt to begin your project- C:\Users\lifei\Desktop>django-admin startproject project0 Then move to this folder. C:\Users\lifei\Desktop>cd project0 C:\Users\lifei\Desktop\project0> b. Running the Server You could apply these migrations before you start your server- C:\Users\lifei\Desktop\project0>python manage.py migrate

  10. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Now, start the server- C:\Users\lifei\Desktop\project0>python manage.py runserver Performing system checks… Have a look at Python Function Arguments with Types, Syntax, and Examples System check identified no issues (0 silenced). July 08, 2018 – 21:51:39 Django version 2.0.7, using settings ‘project0.settings’ Starting development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK. If you see something like this, it means you have successfully installed Django:

  11. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Python Django Tutorial – Prerequisites to Creating a Project c. Setting up a database For our project, we have set up MySQL: ​http://www.mysql.com/ Python also supports other database products like Oracle, SQLite 3, MongoDB​, PostgreSQL, and GoogleAppEngine Datastore. d. Web Server While Django has its own lightweight web server, you can also use your own- like Apache. 9. Django Project Structure This is what your project directory will look like: Do you know the difference Between Python Generator vs Iterator

  12. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training a. manage.py This script lets us interact with our project using the command line. Facilities include starting up the server and syncing to the database. b. Project folder This holds the packages for our project-

  13. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training ● __init__.py- A ​Python package​. ● settings.py- This holds website settings like database configuration details. ● urls.py- This holds links in your project and the function(s). ● wsgi.py- This deploys our project over WSGI and helps the app communicate with the web server. WSGI stands for Web Server Gateway Interface. ● __pycache__- This directory holds files like __init__.cpython-36.pyc, settings.cpython-36.pyc, urls.cpython-36.pyc, and wsgi.cpython-36.pyc. In settings.py, DEBUG is set to True. This is okay at the time of deployment, but you should set it to False when working with a live project. This is because this gives out information about errors in your project. Read about Python Modules vs Packages Another construct you will find in this file is- 1. DATABASES = ​{ 2. 'default'​: ​{ 3. 'ENGINE'​: ​'django.db.backends.sqlite3'​, 4. 'NAME'​: os.path.​join​(​BASE_DIR, ​'db.sqlite3'​)​, 5. } 6. } c. db.sqlite3 This is the database file for your project and has the extension .sqlite3.

  14. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training 10. Creating an Application Let’s learn how to create an application in Django by this python Django Tutorial. Projects are modular. A contact form is one such application, and you can borrow it from one project for another. You can start an application this way: C:\Users\lifei\Desktop\project0>python manage.py startapp app0 This creates the following contents in the directory project0:

  15. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training ● Migrations- This holds another __init__.py file. ● __init__.py- This is a Python package. ● admin.py- This lets us make the app modifiable in the admin interface. ● apps.py- This holds the names of all your applications. ● models.py- This holds all application models. ● tests.py- This holds unit tests for the project. ● views.py- This holds the application views for the project. Let’s prepare our self with Top 35 Python Interview Questions and Answers In your settings.py, you can add your app name in the INSTALLED_APPS construct- 1. INSTALLED_APPS = ​[ 2. 'django.contrib.admin'​, 3. 'django.contrib.auth'​, 4. 'django.contrib.contenttypes'​, 5. 'django.contrib.sessions'​, 6. 'django.contrib.messages'​, 7. 'django.contrib.staticfiles'​, 8. 'app0' 9. ] 11. Python Django Admin Interface Here, in this Python Django Tutorial, we are going to see how to use Django Admin Interface?

  16. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Using the Django admin interface, you can perform CRUD operations on the model. This interface depends on the django.countrib model; it is enabled by default. You can find it as ‘django.contrib.admin’, in INSTALLED_APPS in settings.py. To access this interface, you can try one of two methods- ● 127.0.0.1:8000/admin ● localhost:8000/admin You get something like this: Python Django Tutorial – Admin Interface Do you know What is Serialization in Python with Example a. Creating a Superuser

  17. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training To create a superuser, you can push in the following command- python manage.py createsuperuser Once you’re done creating a superuser, use this username and password to login to the dashboard. 12. How to Create Simple Project in Django? We can create a simple view using the following code- 1. >>> from django.http import HttpResponse 2. >>> def ​hello​(​request​)​: 3. return ​HttpResponse​(​"Hello"​)

  18. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training We save this file as views.py in the inner project0 directory. This is how we can import it- 1. >>> os.​chdir​(​'C:\\Users\\lifei\\Desktop\\project0'​) 2. >>> from project0.views import hello a. Mapping to a URL Now in the inner project0 directory, you have a file urls.py. It looks something like this- “””project0 URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.0/topics/http/urls/ Examples: Function views ● Add an import: from my_app import views ● Add a URL to urlpatterns: path(”, views.home, name=’home’) Class-based views ● Add an import: from other_app.views import Home ● Add a URL to urlpatterns: path(”, Home.as_view(), name=’home’)

  19. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Including another URLconf ● Import the include() function: from django.urls import include, path ● Add a URL to urlpatterns: path(‘blog/’, include(‘blog.urls’)) “”” Follow this link to know about Python Flask: A Web Framework for Python 1. >>> from django.contrib import admin 2. >>> from django.urls import path 3. >>> urlpatterns = ​[ 4.​path​(​'admin/'​, admin.site.urls​)​, 5. ] In this, the urlpatterns tuple maps URLs to views. Add this line of import to urls.py: from project0.views import hello And then add this value to your urlpatterns tuple: 1. path​(​'hello/'​,hello​)​,

  20. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Now, go to the following address- ​http://127.0.0.1:8000/hello/ So, this was all about Python Django Tutorial. Hope you like our explanation. 13. Conclusion

  21. DataFlair Web Services Pvt. Ltd. Call : +91-84510-97879, +91-91111-33369 ​https://data-flair.training Hence, in this Python Django Tutorial, we get started with Django, a very common framework with Python. Here, we studied History & Features of Django. In addition, we cover the MVT Pattern, Prerequisites to create a Project, and many more. Still, you have a query regarding Python Django Tutorial, leave comments below.

More Related