Skip to main content

Recently Updated Pages

Django - Comments

Python Django Tutorial

Before starting, note that the Django Comments framework is deprecated, since the 1.5 version. No...

Updated 2 years ago by Admin

Django - Caching

Python Django Tutorial

To cache something is to save the result of an expensive calculation, so that you don’t perform i...

Updated 2 years ago by Admin

Django - Sessions

Python Django Tutorial

As discussed earlier, we can use client side cookies to store a lot of useful data for the web ap...

Updated 2 years ago by Admin

Django - Cookies Handling

Python Django Tutorial

Sometimes you might want to store some data on a per-site-visitor basis as per the requirements o...

Updated 2 years ago by Admin

Django - Apache Setup

Python Django Tutorial

So far, in our examples, we have used the Django dev web server. But this server is just for test...

Updated 2 years ago by Admin

Django - File Uploading

Python Django Tutorial

It is generally useful for a web app to be able to upload files (profile picture, songs, pdf, wor...

Updated 2 years ago by Admin

Django - Form Processing

Python Django Tutorial

Creating forms in Django, is really similar to creating a model. Here again, we just need to inhe...

Updated 2 years ago by Admin

Django - Generic Views

Python Django Tutorial

In some cases, writing views, as we have seen earlier is really heavy. Imagine you need a static ...

Updated 2 years ago by Admin

Django - Sending E-mails

Python Django Tutorial

Django comes with a ready and easy-to-use light engine to send e-mail. Similar to Python you just...

Updated 2 years ago by Admin

Django - Page Redirection

Python Django Tutorial

Page redirection is needed for many reasons in web application. You might want to redirect a user...

Updated 2 years ago by Admin

Django - Models

Python Django Tutorial

A model is a class that represents table or collection in our DB, and where every attribute of th...

Updated 2 years ago by Admin

Django - Template System

Python Django Tutorial

Django makes it possible to separate python and HTML, the python goes in views and HTML goes in t...

Updated 2 years ago by Admin

Django - URL Mapping

Python Django Tutorial

Now that we have a working view as explained in the previous chapters. We want to access that vie...

Updated 2 years ago by Admin

Django - Creating Views

Python Django Tutorial

A view function, or “view” for short, is simply a Python function that takes a web request and re...

Updated 2 years ago by Admin

Django - Admin Interface

Python Django Tutorial

Django provides a ready-to-use user interface for administrative activities. We all know how an a...

Updated 2 years ago by Admin

Django - Apps Life Cycle

Python Django Tutorial

A project is a sum of many applications. Every application has an objective and can be reused int...

Updated 2 years ago by Admin

Django - Creating a Project

Python Django Tutorial

Now that we have installed Django, let's start using it. In Django, every web app you want to cre...

Updated 2 years ago by Admin

Django - Environment

Python Django Tutorial

Django development environment consists of installing and setting up Python, Django, and a Databa...

Updated 2 years ago by Admin

Django - Overview

Python Django Tutorial

As you already know, Django is a Python web framework. And like most modern framework, Django sup...

Updated 2 years ago by Admin

Django - Basics

Python Django Tutorial

Before you proceed, make sure that you understand the basics of procedural and object-oriented pr...

Updated 2 years ago by Admin