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...