Python Programming Articles

#django

Fri 17 March 2023

Django, The Break Down

Django is a web framework written in python. It is a full featured framework used by many large companies, some of which are fortune 500 companies. Django is a framework that lets you build web apps as quickly as possible. In this article, I would break down django and explain …
Read more →
Tue 17 January 2023

Configure Django And MySQL Database

In this post, I will show you how to set up Django with MySQL database. This tutorial assumes you already have MySQL installed on your computer. Django comes with a default SQLite database that does not require any setup. SQLite databases are not good for large scale applications therefore, it …
Read more →
Wed 12 October 2022

Back-end Development: Flask vs Django

What is a server? A server is a computer in any location on the planet that provides computational logic and operations remotely to multiple devices. What is back-end development? This is the process of developing software handles data of a web application. Without the back-end a website is just static …
Read more →