Creating a custom user model in Django
Creating a custom user model in Django using AbstractBaseUser is a common practice when building Django Rest Framework (DRF) applications. This approach allows you to have full control over the…
Creating a custom user model in Django using AbstractBaseUser is a common practice when building Django Rest Framework (DRF) applications. This approach allows you to have full control over the…
Using Django and InfluxDB to save sensor data is a powerful combination, as InfluxDB is a time-series database that’s well-suited for storing and querying time-series data like sensor readings. Here’s…
Django Rest Framework (DRF) is a powerful toolkit for building Web APIs in Django. JWT (JSON Web Tokens) is a popular authentication method for securing RESTful APIs. Here, I’ll provide…