Starting a Django Project in Pycharm

In this tutorial, you will would learn to quickly install django, start a django project and run your project on a server. Django is one of the most popular open source web development Framework written in Python.
It is a high-level Python Web framework … Read more

Similar

Type Check Your Django App

Recently, I gave a talk, Type Check your Django app at two conferences - Euro Python 2021 and PyCon India 2021. The talk was about adding Python gradual typing to Django using third-party package Django-stubs focussed heavily around Django Models. The blo... (more…)

Read more »

Django Models Simple Guide

One of the advantages of Django is ORM. Instead of writing raw SQL to fetch and display values we can use Django ORM. It’s simple and easy way to get value from database and then display it in a web page. (more…)

Read more »