Why Django channels? Because Django does not allow us to create applications with real-time communication natively. …
- Install a caching system, be it redis, memcached, etc.
- Set …
In this post I will explain how Graphene allows you to speed up the process of creating a GraphQL API if you are using …
One of the best features of django is that it has the django admin panel, a ready-to-use administration panel, with …
To use the cache in django, just follow three simple steps:
In addition to creating asynchronous tasks, celery also allows you to create periodic tasks, which are executed from …
Celery, in combination with Django serve to solve a problem: the lack of asynchrony in our application. Sending an …
Almost all complex Django applications need views for Login, Logout, reboot and password change, as well as user …
Do you need to get the data associated with a postal code in Mexico for your Django application? I wrote a small library …
The other day I was testing a library called htmx, which promises to make web creation much easier, yes, another …
JWTs (JSON Web Tokens) have become extremely popular, some even consider them a replacement for the classic tokens used …