Featured

Five Simple Steps to Install Django in Ubuntu

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. In this blog post, i have … Continue reading Five Simple Steps to Install Django in Ubuntu

Which Version of Django Support what Version of Python ?

This small blog post is only published to make Django developers aware about Django-Python Versioning. Django VersionSupported Python Versions2.1, 2.23.5, 3.6, 3.72.03.4, 3.5, 3.6, 3.71.112.7, 3.4, 3.5, 3.6, 3.7 It is always recommended to use latest version of Django and it's supported Python versions. ** Django 1.11 will be the last version of Django to … Continue reading Which Version of Django Support what Version of Python ?

Top Django Interview Questions

  This time, i had compiled some Django Interview Questions.  This List might come handy to both Interviewer and Interviewee.  How do you create new project in Django ? How do you create new app in Django ? Explain MVT architecture of Django ? What are Middlewares ? How do you create custom Middleware ? What … Continue reading Top Django Interview Questions

How to Rename Remote GIT branch

If you had named a git branch incorrectly and had pushed the branch to remote repository. Follow the steps listed below to rename the remote branch: Rename the local branch.  If you are on the branch then, git branch -m <new-name> If you are not on the branch then, git branch -m <old-name> <new-name>    Delete … Continue reading How to Rename Remote GIT branch

How to send messages using Python

In this tutorial, we will learn to send message using Python. We can use this approach in building new Python applications. Tools we will be needing : Python - Version 2 or 3. Virtual Environment  - To create isolated Python environments Twilio Trial Account. Twilio Python helper library. Twilio API : We will be using Twilio … Continue reading How to send messages using Python

Create Pycharm Launcher in Ubuntu

Quick way to create Pycharm launcher.  Start Pycharm using the ./pycharm.sh file located under bin folder. Once the Pycharm application loads, navigate to tools menu and select "Create Desktop Entry.." This type of window will open up.  Check the box if you want the launcher for all users. If you Check the box i.e "Create … Continue reading Create Pycharm Launcher in Ubuntu

Fetch upcoming 10 events of user using google calendar API in Python

  * Python command-line application that makes requests to the Google Calendar API to fetch upcoming 10 events. The entire feature can be achieve in three steps. Setting up Google Calendar API. Installing google client library. Creating python script. Let's Get Started : Setting up Google Calendar API. Go to google console. Create or select … Continue reading Fetch upcoming 10 events of user using google calendar API in Python

Deploy Django Project Using NGINX and Gunicorn

Meet Django Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. In this guide, we … Continue reading Deploy Django Project Using NGINX and Gunicorn

How to create Auto Destroying Messages in Django ?

Auto Destroying Message Auto Destroy Message after Reading Auto Destroy functionality comes handy when you want to share critical data with someone like user credentials. AIM Create Mission Impossible like auto deletion message. Maintain high level of encryption. No loop holes so handle DB attack also. Features Creates Encrypted Messages. Unique hashed URL is provided … Continue reading How to create Auto Destroying Messages in Django ?