What is Django ?
- A Python-based web framework designed for rapid development of efficient web applications.
- It is also referred as "batteries included" framework because it provides built-in features for various aspects of web development these features include the Django admin interface, default data base management system (SQLite 3) and other streamlining development processes.
Why Django and not any other framework ?
- First reason is Rapid Development; Django enables the creation of fully-fledged web applications in a short time.
- Second reason is Database Flexibility; while SQLite 3 is the default database, Django allows easy switching to other databases like PostgreSQL, MySQL, and others.
- Third reason is Built-in Admin Interface; it simplifies administrative tasks related to website management.
Django Architecture
- Django follows the MVT Architecture, which stands for Model-View-Template, separating the logic of your application into three different components.
- The Model in Django represents the data structure of our application, essentially defining the schema of our database tables and encapsulating the logic for interacting with the database.
- The View is simply a Python function or class that receives HTTP requests and returns HTTP responses. It is responsible for processing incoming requests, interacting with the database through models, and preparing data to be rendered in a response.
- Templates in Django are the HTML files that contain the structure of our application's user interface. They also include placeholders and template tags, which are replaced with dynamic content when rendered by Django.
Internal Working
- The diagram illustrates Django's MVT architecture where the core project's urls.py directs requests to each app's urls.py. Inside each app, views.py processes the requests, interacts with models.py to manage data, and then renders responses using templates.
Before we start the project it is always suggested that run your project in virutal environment so that all the necessary dependencies needed for project is itself to project environment and not in the whole system.
Python Virtual Environment.
- Installation of Python3 virutal environment.
sudo apt install python3-virtualenv
- Create virtual environment in python3.
#virtualenv -p python3 <environment-name> virtualenv -p python3 ecom </environment-name>
- Activate the created environment.
#source <environment-name>/bin/activate source ecom/bin/activate </environment-name>
- Deactivating the environment.
deactivate
Django Installation in Environment.
- Django Installation in created python environment.
python -m pip install django #Tip: Type `django-admin` on terminal you will see all the django commands. django-admin
Django Project and App creation.
In Django we wiill first create a Project inside it we creates App.
- Creation of Django-Project.
#django-admin startproject <project-name> django-admin startproject core . </project-name>
- Creation of app inside the project.
#python manage.py startapp <app-name> python manage.py startapp store </app-name>
- After this we will install in our project.
#Go to <project-name>/settings.py inside check for Installed_Apps in which write your app name. INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', #custom-app 'Store' ] </project-name>
- In core/urls.py we will add include so that we can add new urls in it.
from django.contrib import admin from django.urls import path,include urlpatterns = [ path('admin/', admin.site.urls), path(' ', include('store.urls')), ]
- Here in store we will create an function in views.py which is used for handling user requests in the form of html file.
from django.shortcuts import render def home(request): return render(request, 'home.html', {})
- In the store app, we'll create a templates folder with an HTML file to verify that the request is being served correctly.
- Now in store we will create urls.py which is going to maps URLs to view functions in views.py to handle requests and return responses.
from django.urls import path from . import views urlpatterns = [ path(' ',views.home, name='home') ]
- Run the server in the terminal to check the output of the HTML file on port 8000.
python manage.py runserver
Connect with me :
- LinkedIn :https://www.linkedin.com/in/rohitrajputops/
- GitHub : https://github.com/rohit-rajput1
- Twitter : https://twitter.com/rohitrajput31
- Instagram : https://www.instagram.com/rohitrajput_36/
The above is the detailed content of Getting Started with Django: Basic Setup and Overview. For more information, please follow other related articles on the PHP Chinese website!

Python and C each have their own advantages, and the choice should be based on project requirements. 1) Python is suitable for rapid development and data processing due to its concise syntax and dynamic typing. 2)C is suitable for high performance and system programming due to its static typing and manual memory management.

Choosing Python or C depends on project requirements: 1) If you need rapid development, data processing and prototype design, choose Python; 2) If you need high performance, low latency and close hardware control, choose C.

By investing 2 hours of Python learning every day, you can effectively improve your programming skills. 1. Learn new knowledge: read documents or watch tutorials. 2. Practice: Write code and complete exercises. 3. Review: Consolidate the content you have learned. 4. Project practice: Apply what you have learned in actual projects. Such a structured learning plan can help you systematically master Python and achieve career goals.

Methods to learn Python efficiently within two hours include: 1. Review the basic knowledge and ensure that you are familiar with Python installation and basic syntax; 2. Understand the core concepts of Python, such as variables, lists, functions, etc.; 3. Master basic and advanced usage by using examples; 4. Learn common errors and debugging techniques; 5. Apply performance optimization and best practices, such as using list comprehensions and following the PEP8 style guide.

Python is suitable for beginners and data science, and C is suitable for system programming and game development. 1. Python is simple and easy to use, suitable for data science and web development. 2.C provides high performance and control, suitable for game development and system programming. The choice should be based on project needs and personal interests.

Python is more suitable for data science and rapid development, while C is more suitable for high performance and system programming. 1. Python syntax is concise and easy to learn, suitable for data processing and scientific computing. 2.C has complex syntax but excellent performance and is often used in game development and system programming.

It is feasible to invest two hours a day to learn Python. 1. Learn new knowledge: Learn new concepts in one hour, such as lists and dictionaries. 2. Practice and exercises: Use one hour to perform programming exercises, such as writing small programs. Through reasonable planning and perseverance, you can master the core concepts of Python in a short time.

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.