Job queues with Django, Celery & Redis
Job queues are an essential part of modern web applications as they allow for the execution of long-running or resource-intensive tasks asynchronously. Django, being a popular web framework, has several libraries that make it easy to implement job queues in your application. In this tutorial,...
Python & Golang comparison
Python and Go (also known as Golang) are two popular programming languages that have gained significant popularity in recent years. Python has been around since the late 1980s, while Go was developed by Google in 2007. Although both languages are used for backend development, they...
Distribute a Python package with public PyPi
Distributing a Python package on PyPI (Python Package Index) is an important step in making your package widely available to other developers. PyPI is a repository of Python software packages that are publicly available for download and installation. Here’s a step-by-step guide on how to...
Top Python Web Frameworks
Python is a powerful and versatile programming language that is used extensively in web development. It has a vast range of frameworks available that can make web development quicker, easier, and more efficient. In this article, we’ll take a look at some of the most...
Job Queues with Flask, Redis and Docker
First, let us set up a bare-bone Flask project. Make sure that python 3 is installed in your system as it is the only dependency needed to create a flask project. In case you need to install python, here are the official tutorials for almost...