Importance of logging in python

August 2, 2017

Not in the mood of writing much today so will probably leave the link which I found useful and will definitely help us if we want to know more about logging.

Read More

Serialization in Django: How to serialize models with Foreign keys

July 21, 2017

Serialization is one of the main processes of creating APIs. We want to share data between different types of frontends (Web, Android, IOS) in a way that is easily accessible by them all. Serialization is the process of converting different data into a well-defined format and send it as the API response.

Read More

A word about subprocess module for running bash commands in Python

June 21, 2017

It has been a few days since I have been working on the GSoC project. Although I haven’t been able to write about all the things going on that side. From now on probably I will talk about it more often. Yesterday I managed to upload the code on our local experimental server and show the results to the mentor.

Read More

How to create a session variable in Django

August 3, 2016

Long time ago browser developers recognized that we need to store the data produced during a user session so that we can refer to that data in the future. The user actions can lead to some calculations and after doing this cumbersome calculations we don’t want to do the calculations again and again.

Read More