}

Articles tagged "django"

14 min readIntermediate

Django REST Framework Tutorial 2026: JWT Auth, Permissions, Filtering, and Tests

Django REST Framework tutorial 2026: build a production API with JWT authentication (SimpleJWT), object-level permissions, DjangoFilterBackend filtering, pagination, and pytest-django tests.

4 min readBeginner

Fix: AttributeError - Token Has No Attribute 'objects' [Django REST Framework]

Fix "AttributeError: type object 'Token' has no attribute 'objects'" in Django REST Framework. Add rest_framework.authtoken to INSTALLED_APPS.

1 min readBeginner

How to use postgresql jsonb type with django

Learn how to use PostgreSQL JSONB column by following this tutorial that explain how to use schemaless with django and postgresql

2 min readBeginner

Django: TEST_DATABASE_PREFIX TypeError Fix

In this article we explain how to fix the error

1 min read

Django 2.0: No attribute lru_cache Error

Django 2.0 installation throws -> AttributeError: 'module' object has no attribute 'lru_cache'. This means that you are using and old version of python. Read more for details

4 min readBeginner

How to serve Django application using uWSGI with Nginx

A tutorial that shows how to setup a Django app using uWSGI with Nginx.