django template inheritance Generally we develop websites to show our products or services to customers all over the web. Our cust...
django debug toolbar - improve application performance
django debug toolbar debugging: It is the process of locating and correcting the errors in a computer program or code. debugging is...
django send one time use account activation email
django one time activation link email After success registration of the user, we will send activation link email to the users email ac...
django form usage and validations
Let's start with an example, If you are applying for a college admission you will fill up the college admission form with your d...
usage of css, javascript, images in django
In the last post we have seen how to use html template in django view . In this tutorial we will learn about usage of static files in dj...
django usage of template and view
django templates & views In the last blog post we have seen how to write models for project . In this blog post we are going lear...
django models and database schema design
Before we start the design our database schema , we have to create our django project . Our project is "Library Management"(For...
django templates and static files
Django template configurations Django templates: Django templates are just HTML files. Django creates HttpResponse for a request b...
django project layout and settings
Let's talk about "Django" project structure in depth. You can see the complete project layout in above image. base/pro...
django first application
Let's start our Django application from the beginning. To start our first application we have to follow the below steps. Before goi...
django request lifecycle
Architecture for django application We can divide the request life cycle of the django application into three layers. 1. Browser 2....
Python Web Development with Django
Python Web Development with Django Why python? Python is a a free and open-source programming language. It supports both function...
Usage of "date" from datetime module with use cases - Python
Date is a reference to a particular day represented within a calendar system. We use " date " class to represent a day in calend...
Usage of "datetime" from datetime module with use cases - Python
datetime can be found in the module datetime. datetime is a python's representation of date and time in a single object. how to create d...
how to use "filter" builtin function in python?
"filter" is a python's built-in function which can be found in module "__builtin__". It takes two arguments, first ...
how to use "reduce" builtin function in python?
reduce is a built-in function in python module "__builtin__". It takes function as first argument and second argument as an sequen...
how to use "map" keyword or function in python?
"map' is a built-in function in python. It takes first argument as a function or a callable object. All other arguments must be se...
Operations and Usage of Sets - Python
Set is a built in data-type(data-structure) in python. It only stores unique elements. It do not contains duplicate elements. We can iterate...