Articles tagged "django"
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.
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.
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
Django: TEST_DATABASE_PREFIX TypeError Fix
In this article we explain how to fix the error
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
How to serve Django application using uWSGI with Nginx
A tutorial that shows how to setup a Django app using uWSGI with Nginx.