#python
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...
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...
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...
Recursion In Python
Recursion is a programming strategy used for breaking complex computation problems into small sub-problems that can...
Setup Windows 11 for Python Development
Python is an interpreted, general purpose, high level programming language. It is a popular language for data...