
Getting started with Django | Django
Before you can use Django, you’ll need to install it. Our complete installation guide covers all the possibilities; this guide will get you to a simple, minimal installation that’ll work while you walk …
Writing your first Django app, part 1 | Django documentation
12 hours ago · This tutorial is written for Django 5.2, which supports Python 3.10 and later. If the Django version doesn’t match, you can refer to the tutorial for your version of Django by using …
Using Django | Django documentation
Using Django ¶ Introductions to all the key parts of Django you’ll need to know:
Working with forms | Django documentation
Django’s login form is returned using the POST method, in which the browser bundles up the form data, encodes it for transmission, sends it to the server, and then receives back its response.
How to install Django
If you want to use Django on a production site, use Apache with mod_wsgi. mod_wsgi operates in one of two modes: embedded mode or daemon mode. In embedded mode, mod_wsgi is …
Models | Django documentation
Model inheritance in Django works almost identically to the way normal class inheritance works in Python, but the basics at the beginning of the page should still be followed.
How to configure and use logging | Django documentation
Although Django’s logging configuration works out of the box, you can control exactly how your logs are sent to various destinations - to log files, external services, email and so on - with …
The Django template language | Django documentation
If you’re looking for a more technical perspective on how it works and how to extend it, see The Django template language: for Python programmers. Django’s template language is designed …
How to create custom template tags and filters - Django
The Django developers have experimented with writing small frameworks on top of this parsing system, using techniques such as EBNF grammars, but those experiments made the template …
Django settings | Django documentation
If you’re using components of Django “standalone” – for example, writing a Python script which loads some Django templates and renders them, or uses the ORM to fetch some data – …