How to Create a Custom Django Admin Command to Seed Your Database
In this article I will show you how to implement a custom django-admin command for creating dummy data to test your...
Making Django Forms Crispy With Bootstrap 5
Django forms are a powerful feature of the Django Web Framework. It utilizes Python code to create and manipulate...
Decorators in Python
A decorator is a function that modifies the output of the function it is applied to. In Python, you deploy a...
Uploading Files In Flask Web Framework
Flask is a lightweight web framework that helps you build web apps easily. In this article, we’ll make a simple...
Installing MySQL Community Server on Windows 11
MySQL is a relational database management system (RDBMS). Relational databases are the most widely used databases...
Database Relationships Explained
A relational database is a widely used database in the world, it organizes data inside a table in the form of rows...
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...
Higher Order Functions In Python
Higher order functions are functions that can be passed as an argument to a function or returned from a function as...