Building an Excel file dump service in Django

Namaste Everyone. I recently wrote an excel dump service as part of my work and wants to share that experience with you. Initially, I irritated a lot because creating excel in Python is fairly easy but downloading it from JavaScript as an Ajax response is very painful. You should know how to set the right […]

Building High Performance Django Systems

The main motto of Django web framework is: The web framework for perfectionists with deadlines It is true. Django always gives a polished product within the time. Today all Django developers are racing to finish the project development with Python as their favorite choice. But evil of wrong development practices can slow down the project […]

A primer on Database Transactions and Asynchronous Requests in Django

Hello, Namaste.  Today we are going to  look at few Django web framework cookies that makes our life more sweeter.  Let us learn few things which helps us implement the functionality when situation demands. The topics are following: Implementing Database transactions in  Django  Making asynchronous HTTP requests from Django code 1) Django DB Transactions I […]

Implementing activity streams in Django web framework

    What is an activity stream? It is a sequential chain of all activities done by the users in a website.Like Twitter showing our own feeds ,listing activities of developers on Gitlab dashboard or showing activities of connections on LinkedIn.Whatever you may call it,It is an activity stream. For ex: This is the activity […]