In this article, we are going to build a dockerized Django application with Redis, celery, and Postgres to handle asynchronous tasks. Basically, the main idea here is to configure Django with docker containers, especially with Redis and celery.
How to send multiple forms with Ajax (FormData) in Django
In this article, I am going to show you how to send multiple forms in Django using Ajax and FormData. Normally, it’s also possible to send forms only with Ajax by defining data inside the function. However, with FormData it becomes much simpler and faster to handle the form submission.
Upload Multiple Images to a Django Model without plugins
In this article, I am going to show you how to add multiple images to a Django model without any plugins. It’s better to keep the project simple and avoid any extra plugins which can cause unexpected errors during production or disable some of the functionalities.
Adding backend to CodePen snippet using Python/Django | Question-Answering Application
A few days ago, I used a simple UI “search-box” design to create a Question-Answering Application. Even this kind of small designs can be turned into an application.
Creating Real-Time API with Beautiful Soup and Django REST Framework
In this post, we will use Beautiful Soup and Django REST Framework to create real-time API by crawling data. At the end of this tutorial, you’ll be able to turn any website into an API.