Django – RSS
Django RSS comes with a syndication feed generating framework. With it you can create RSS or Atom feeds just by subclassing django.contrib.syndication.views.Feed class. Let's create a feed for the latest comments…
Django RSS comes with a syndication feed generating framework. With it you can create RSS or Atom feeds just by subclassing django.contrib.syndication.views.Feed class. Let's create a feed for the latest comments…
Before starting, note that the Django Comments framework is deprecated, since the 1.5 version. Now you can use external feature for doing so, but if you still want to use…
In this Django caching chapter, we will discuss how to cache something is to save the result of an expensive calculation, so that you don’t perform it the next time…
As discussed earlier of Django Sessions, we can use client side cookies to store a lot of useful data for the web app. We have seen before that we can…
In this Django Cookies handling chapter, we will discuss about Sometimes you might want to store some data on a per-site-visitor basis as per the requirements of your web application.…
So far, in our examples of Django Apache Setup, we have used the Django dev web server. But this server is just for testing and is not fit for production…
It is generally useful for a web app to be able to Django file uploading (profile picture, songs, pdf, words.....). Let's discuss how to upload files in this chapter. Uploading…
Creating forms in Django, is really similar to creating a model in Django Form Processing. Here again, we just need to inherit from Django class and the class attributes will…
In some cases, writing Django Generic views, as we have seen earlier is really heavy. Imagine you need a static page or a listing page. Django offers an easy way…
In this Django Sending E-mails chapter, we will discuss Django comes with a ready and easy-to-use light engine to send e-mail. Similar to Python you just need an import of…