The dead simple Django REST Framework API generator with role-based permissions
π€ This project was structured by Claude, Anthropic's AI assistant which helped with getting the project to a state where it could be shared - the core design however was not AI generated.
Transform your Django models into fully-featured REST APIs with just a mixin and a method. Zero boilerplate, maximum power.
Features β’ Quick Start β’ Documentation β’ Examples β’ Contributing
Building REST APIs in Django shouldn't require writing hundreds of lines of boilerplate code. TurboDRF revolutionizes Django API development by automatically generating REST APIs from your models with minimal configuration.
Traditional Django REST Framework development requires:
- Writing serializers for every model
- Creating ViewSets with repetitive CRUD logic
- Configuring routers and URL patterns
- Implementing permission classes
- Setting up filters, search, and pagination
- Managing field-level permissions manually
# This is all you need π
class Book(models.Model, TurboDRFMixin):
title = models.CharField(max_length=200)
author = models.ForeignKey(Author, on_delete=models.CASCADE)
price = models.DecimalField(max_digits=10, decimal_places=2)
@classmethod
def turbodrf(cls):
return {
'fields': ['title', 'author__name', 'price']
}
# π₯ Boom! You now have a complete REST API with:
# β
All CRUD endpoints β
Smart pagination β
Advanced filtering
# β
Full-text search β
Multi-field ordering β
Role-based permissions
# β
Nested relationships β
API documentation β
Field-level securitypip install turbodrfOr with poetry:
poetry add turbodrfINSTALLED_APPS = [
# ... your apps
'rest_framework',
'drf_yasg', # for swagger docs
'turbodrf',
]from django.db import models
from turbodrf.mixins import TurboDRFMixin
class Author(models.Model, TurboDRFMixin):
name = models.CharField(max_length=100)
email = models.EmailField()
@classmethod
def turbodrf(cls):
return {
'fields': ['name', 'email']
}
class Book(models.Model, TurboDRFMixin):
title = models.CharField(max_length=200)
author = models.ForeignKey(Author, on_delete=models.CASCADE)
isbn = models.CharField(max_length=13)
price = models.DecimalField(max_digits=10, decimal_places=2)
# Optional: specify searchable fields
searchable_fields = ['title', 'isbn']
@classmethod
def turbodrf(cls):
return {
'fields': {
'list': ['title', 'author__name', 'price'],
'detail': ['title', 'author__name', 'author__email', 'isbn', 'price']
}
}from django.urls import path, include
from turbodrf.router import TurboDRFRouter
router = TurboDRFRouter()
urlpatterns = [
path('api/', include(router.urls)),
]# List all books
GET /api/books/
# Get specific book
GET /api/books/1/
# Create a book
POST /api/books/
# Update a book
PUT /api/books/1/
# Search books
GET /api/books/?search=django
# Filter books
GET /api/books/?author__name=Rowling&price__lt=20
# Order books
GET /api/books/?ordering=-price,title
# Paginate results
GET /api/books/?page=2&page_size=10The turbodrf() classmethod is where the magic happens:
@classmethod
def turbodrf(cls):
return {
# Enable/disable API for this model
'enabled': True,
# Custom endpoint name (default: pluralized model name)
'endpoint': 'books',
# Simple field list (same for list and detail)
'fields': ['title', 'author', 'isbn'],
# OR different fields for list vs detail views
'fields': {
'list': ['title', 'author__name'],
'detail': ['title', 'author__name', 'author__email', 'isbn', 'price']
},
# OR use all fields
'fields': '__all__'
}Note: To disable all permissions for development, set
TURBODRF_DISABLE_PERMISSIONS = Truein your Django settings.
TurboDRF offers two permission modes: Django's default permissions or TurboDRF's advanced role-based permissions.
Use Django's built-in permission system - perfect for simple use cases:
# settings.py
TURBODRF_USE_DEFAULT_PERMISSIONS = True # Enable Django's default permissionsWith default permissions:
- Uses Django's standard
add,change,delete,viewpermissions - Works with Django Admin permissions out of the box
- When a user has write permission for a model, they can write ALL fields
- No field-level permissions (simpler but less granular)
# Grant permissions via Django Admin or programmatically:
from django.contrib.auth.models import User, Permission
user = User.objects.get(username='editor')
permission = Permission.objects.get(codename='change_book')
user.user_permissions.add(permission)
# Or use groups
from django.contrib.auth.models import Group
editors = Group.objects.create(name='Editors')
editors.permissions.add(
Permission.objects.get(codename='view_book'),
Permission.objects.get(codename='change_book')
)
user.groups.add(editors)For fine-grained control with field-level permissions:
# settings.py
TURBODRF_USE_DEFAULT_PERMISSIONS = False # Default - uses TurboDRF permissionsDefine permissions in your settings:
# settings.py
TURBODRF_ROLES = {
'admin': [
# Model-level permissions
'books.book.read', # Can view books
'books.book.create', # Can create books
'books.book.update', # Can update books
'books.book.delete', # Can delete books
# Field-level permissions
'books.book.title.read', # Can see title field
'books.book.title.write', # Can edit title field
'books.book.price.read', # Can see price
'books.book.price.write', # Can edit price
],
'editor': [
'books.book.read',
'books.book.update',
'books.book.title.read',
'books.book.title.write',
# Note: no price.write - editors can see but not change prices
'books.book.price.read',
],
'viewer': [
'books.book.read',
'books.book.title.read',
# Note: no price permissions - viewers can't see prices at all
]
}While currently out of scope, TurboDRF's permission system is designed to support dynamic permissions stored in the database. This would enable:
- Runtime permission changes without code deployment
- User-specific permission overrides
- Permission templates and inheritance
- API-driven permission management
The current static configuration provides excellent performance and simplicity while laying the groundwork for future dynamic permissions.
Add roles to your User model:
# Option 1: Extend existing User model
from django.contrib.auth import get_user_model
User = get_user_model()
def get_user_roles(self):
# Example: use Django groups as roles
return [group.name for group in self.groups.all()]
User.add_to_class('roles', property(get_user_roles))
# Option 2: Custom User model
class User(AbstractUser):
user_roles = models.JSONField(default=list)
@property
def roles(self):
return self.user_roles# Define searchable fields in your model
class Book(models.Model, TurboDRFMixin):
title = models.CharField(max_length=200)
description = models.TextField()
searchable_fields = ['title', 'description']Now you can search:
# Simple search across all searchable fields
GET /api/books/?search=python
# Response
{
"pagination": {
"next": null,
"previous": null,
"current_page": 1,
"total_pages": 1,
"total_items": 3
},
"data": [
{
"id": 1,
"title": "Python Crash Course",
"author": 2,
"author_name": "Eric Matthes",
"price": "39.99",
"published_date": "2023-05-01"
},
{
"id": 3,
"title": "Fluent Python",
"author": 5,
"author_name": "Luciano Ramalho",
"price": "59.99",
"published_date": "2022-03-15"
}
]
}
# Complex filtering
GET /api/books/?price__gte=10&price__lte=50
GET /api/books/?author__name__icontains=smith
GET /api/books/?published_date__year=2023Built-in pagination with customizable page size:
# Default pagination
GET /api/books/?page=2
# Custom page size
GET /api/books/?page=1&page_size=50
# Response format
{
"pagination": {
"next": "http://api.example.com/api/books/?page=3",
"previous": "http://api.example.com/api/books/?page=1",
"current_page": 2,
"total_pages": 10,
"total_items": 193
},
"data": [...]
}Use OPTIONS requests to discover available fields:
OPTIONS /api/books/
# Response
{
"name": "Book",
"model": {
"name": "Book",
"app_label": "books",
"fields": {
"title": {
"type": "CharField",
"required": true,
"read_only": false,
"max_length": 200
},
"author": {
"type": "ForeignKey",
"required": true,
"read_only": false
},
"price": {
"type": "DecimalField",
"required": true,
"read_only": true # Based on user permissions
}
}
},
"actions": {
"list": true,
"retrieve": true,
"create": true,
"update": true,
"partial_update": true,
"destroy": false # Based on user permissions
}
}Access related fields using double underscore notation:
@classmethod
def turbodrf(cls):
return {
'fields': [
'title',
'author__name', # ForeignKey relation
'author__email', # Going deeper
'category__parent__name', # Multiple levels
'tags__name', # Many-to-many
]
}Extend the auto-generated ViewSet:
from turbodrf.views import TurboDRFViewSet
from rest_framework.decorators import action
from rest_framework.response import Response
class CustomBookViewSet(TurboDRFViewSet):
model = Book
@action(detail=True, methods=['post'])
def set_featured(self, request, pk=None):
book = self.get_object()
book.is_featured = True
book.save()
return Response({'status': 'featured'})
@action(detail=False)
def trending(self, request):
queryset = self.get_queryset().filter(
views__gte=1000
).order_by('-views')
page = self.paginate_queryset(queryset)
if page is not None:
serializer = self.get_serializer(page, many=True)
return self.get_paginated_response(serializer.data)
serializer = self.get_serializer(queryset, many=True)
return Response(serializer.data)
# Register custom viewset
router = TurboDRFRouter()
router.register('books', CustomBookViewSet, basename='book')Filter data based on the current user or other request context:
class UserFilteredBookViewSet(TurboDRFViewSet):
model = Book
def get_queryset(self):
queryset = super().get_queryset()
user = self.request.user
if user.is_authenticated:
# Users only see their own books
return queryset.filter(owner=user)
else:
# Anonymous users only see public books
return queryset.filter(is_public=True)class BookManager(models.Manager):
def for_user(self, user):
"""Filter books based on user permissions."""
if user.is_superuser:
return self.all()
elif user.is_authenticated:
# Users see their books + public books
return self.filter(
models.Q(owner=user) | models.Q(is_public=True)
)
else:
return self.filter(is_public=True)
class Book(models.Model, TurboDRFMixin):
title = models.CharField(max_length=200)
owner = models.ForeignKey(User, on_delete=models.CASCADE)
is_public = models.BooleanField(default=False)
objects = BookManager()
@classmethod
def turbodrf(cls):
return {
'fields': ['title', 'owner__username', 'is_public'],
# Custom queryset method (optional)
'get_queryset': lambda viewset: cls.objects.for_user(viewset.request.user)
}class Organization(models.Model, TurboDRFMixin):
name = models.CharField(max_length=100)
members = models.ManyToManyField(User, through='Membership')
@classmethod
def turbodrf(cls):
def get_user_orgs(viewset):
"""Users only see organizations they belong to."""
user = viewset.request.user
if user.is_authenticated:
return cls.objects.filter(members=user)
return cls.objects.none()
return {
'fields': ['name', 'created_at'],
'get_queryset': get_user_orgs
}Combine with Django Guardian or similar for object-level permissions:
from guardian.shortcuts import get_objects_for_user
class DocumentViewSet(TurboDRFViewSet):
model = Document
def get_queryset(self):
queryset = super().get_queryset()
# Only return documents the user has 'view' permission for
return get_objects_for_user(
self.request.user,
'view_document',
queryset
)class TenantFilteredMixin:
"""Mixin for multi-tenant applications."""
def get_queryset(self):
queryset = super().get_queryset()
# Get tenant from user profile or request
tenant = getattr(self.request.user, 'tenant', None)
if tenant:
return queryset.filter(tenant=tenant)
return queryset.none()
class ProjectViewSet(TenantFilteredMixin, TurboDRFViewSet):
model = Project
class Project(models.Model, TurboDRFMixin):
name = models.CharField(max_length=200)
tenant = models.ForeignKey('Tenant', on_delete=models.CASCADE)
@classmethod
def turbodrf(cls):
return {
'fields': ['name', 'created_at', 'status']
}Note: When overriding
get_queryset, ensure you maintain any optimizations (likeselect_related) that TurboDRF applies automatically.
Create your own pagination class:
from turbodrf.views import TurboDRFPagination
class CustomPagination(TurboDRFPagination):
page_size = 50
page_size_query_param = 'per_page'
max_page_size = 200
def get_paginated_response(self, data):
return Response({
'links': {
'next': self.get_next_link(),
'previous': self.get_previous_link()
},
'meta': {
'total': self.page.paginator.count,
'pages': self.page.paginator.num_pages,
'page': self.page.number,
'per_page': self.page_size
},
'results': data
})
# Use in your viewset
class BookViewSet(TurboDRFViewSet):
model = Book
pagination_class = CustomPaginationCustomize OPTIONS responses:
from rest_framework.metadata import SimpleMetadata
class CustomMetadata(SimpleMetadata):
def determine_metadata(self, request, view):
metadata = super().determine_metadata(request, view)
# Add custom metadata
metadata['api_version'] = 'v1'
metadata['documentation'] = 'https://docs.example.com'
# Add role-specific information
if request.user.is_authenticated:
metadata['user_permissions'] = {
'can_create': view.model._meta.app_label + '.add_' + view.model._meta.model_name in request.user.get_all_permissions(),
'can_delete': view.model._meta.app_label + '.delete_' + view.model._meta.model_name in request.user.get_all_permissions(),
}
return metadata
# Apply globally
REST_FRAMEWORK = {
'DEFAULT_METADATA_CLASS': 'myapp.metadata.CustomMetadata',
}TurboDRF automatically generates interactive API documentation using Swagger UI and ReDoc. The documentation shows all available endpoints and fields based on the current user's permissions.
Documentation is enabled by default. The URLs are automatically configured when you include TurboDRF URLs:
# urls.py
from django.urls import path, include
from turbodrf import urls as turbodrf_urls
urlpatterns = [
path('api/', include(turbodrf_urls)),
]This automatically provides:
- Swagger UI at
/api/swagger/ - ReDoc at
/api/redoc/
Important: API documentation should typically be disabled in production environments for security reasons. To disable documentation:
# settings.py
TURBODRF_ENABLE_DOCS = False # Default: TrueWhen disabled:
- Documentation endpoints return 404
- No schema is generated
- API endpoints continue to work normally
- Automatic Generation: Documentation is automatically generated from your models and their
turbodrf()configuration - Permission-Based Filtering: Users only see endpoints and fields they have permission to access
- Real-Time Updates: Documentation updates automatically as you modify your models
- Interactive Testing: Both Swagger UI and ReDoc allow testing API endpoints directly from the browser
You can customize the documentation by creating your own schema view:
# urls.py
from turbodrf.documentation import get_turbodrf_schema_view
# Custom schema configuration
schema_view = get_turbodrf_schema_view(
title="My API",
version="v1",
description="My awesome API powered by TurboDRF",
)
urlpatterns = [
path('api/', include('turbodrf.urls')),
# Override default documentation URLs
path('docs/swagger/', schema_view.with_ui('swagger', cache_timeout=0)),
path('docs/redoc/', schema_view.with_ui('redoc', cache_timeout=0)),
]TurboDRF provides powerful support for handling related models with automatic query optimization.
Access related model fields using double underscore notation:
class Book(TurboDRFMixin, models.Model):
author = models.ForeignKey(Author, on_delete=models.CASCADE)
@classmethod
def turbodrf(cls):
return {
'fields': {
'list': ['id', 'title', 'author__name'], # Shows author's name
'detail': ['id', 'title', 'author__name', 'author__email', 'author__bio']
}
}Response includes flattened fields:
{
"id": 1,
"title": "Django for APIs",
"author": 2,
"author_name": "William S. Vincent",
"author_email": "[email protected]",
"author_bio": "Django expert and author..."
}Update relations by sending the ID:
# Change a book's author
PATCH /api/books/1/
Content-Type: application/json
{"author": 3}Use Django's lookup syntax for filtering:
# Books by specific author
GET /api/books/?author=1
# Books with price between 20 and 50
GET /api/books/?price__gte=20&price__lte=50
# Books published in 2023
GET /api/books/?published_date__year=2023
# Books with "Python" in title (case-insensitive)
GET /api/books/?title__icontains=python-
Reverse Relations: One-to-many fields (like
author.books) are not automatically included in responses. Use filtering instead:# Get all books by author 1 GET /api/books/?author=1
-
Search on Related Fields: The
searchparameter only searches fields defined insearchable_fields. To search related fields, use specific filters:# Instead of: ?search=author_name # Use: ?author__name__icontains=smith
TurboDRF is optimized for speed and efficiency with automatic query optimization.
- select_related() automatically applied for foreign keys to prevent N+1 queries
- Efficient pagination to limit result sets
- Database-level filtering for optimal performance
-
Use Pagination: Always paginate large datasets
GET /api/books/?page_size=50 -
Indexed Fields: Add database indexes to frequently filtered fields
class Book(models.Model): isbn = models.CharField(max_length=13, db_index=True) published_date = models.DateField(db_index=True)
-
Select Only Needed Fields: Configure different field sets for list/detail views
'fields': { 'list': ['id', 'title', 'author__name'], # Minimal fields 'detail': ['id', 'title', 'description', 'author__name', ...] # All fields }
# tests.py
from django.test import TestCase
from django.contrib.auth import get_user_model
from rest_framework.test import APIClient
from myapp.models import Book, Author
User = get_user_model()
class BookAPITestCase(TestCase):
def setUp(self):
self.client = APIClient()
# Create users with different roles
self.admin = User.objects.create_user('admin', roles=['admin'])
self.viewer = User.objects.create_user('viewer', roles=['viewer'])
# Create test data
self.author = Author.objects.create(name='Test Author')
self.book = Book.objects.create(
title='Test Book',
author=self.author,
price=19.99
)
def test_admin_can_see_all_fields(self):
self.client.force_authenticate(user=self.admin)
response = self.client.get('/api/books/1/')
self.assertEqual(response.status_code, 200)
self.assertIn('price', response.data)
def test_viewer_cannot_see_price(self):
self.client.force_authenticate(user=self.viewer)
response = self.client.get('/api/books/1/')
self.assertEqual(response.status_code, 200)
self.assertNotIn('price', response.data)
def test_search_functionality(self):
self.client.force_authenticate(user=self.admin)
response = self.client.get('/api/books/?search=Test')
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['data']), 1)-
Use select_related and prefetch_related: TurboDRF automatically optimizes queries for nested fields
-
Limit fields in list views: Return only essential fields in list endpoints
'fields': { 'list': ['id', 'title'], # Minimal fields 'detail': '__all__' # All fields in detail }
-
Add database indexes: Index your searchable and frequently filtered fields
class Meta: indexes = [ models.Index(fields=['title']), models.Index(fields=['author', 'published_date']), ]
Open to contributors!
# Clone the repo
git clone https://github.com/alexandercollins/turbodrf.git
# Install dependencies
pip install -e ".[dev]"
# Run tests
pytest
## π§ͺ Testing
TurboDRF comes with a comprehensive test suite covering all features.
### Running Tests
```bash
# Run all tests
pytest
# Run with coverage report
pytest --cov=turbodrf --cov-report=html
# Or use the Makefile
make test-cov
# Run specific test file
pytest tests/test_permissions.py
# Run specific test
pytest tests/test_permissions.py::TestTurboDRFPermission::test_admin_has_read_permission
# Run tests in parallel
pytest -n auto
# Run only unit tests
pytest tests/unit/
# Run only integration tests
pytest tests/integration/# Format code
black turbodrf/
# Check code style
flake8 turbodrf/
# Sort imports
isort turbodrf/
# Run all checks
make lintView detailed coverage report:
pytest --cov=turbodrf --cov-report=html
open htmlcov/index.htmlWhile TurboDRF handles most Django field types automatically, there are a few limitations to be aware of:
- JSONField: JSONFields are not filterable through the API due to django-filter limitations. They are included in API responses but cannot be used for filtering queries.
- BinaryField: Binary fields are excluded from filtering for security and performance reasons.
- FilePathField: File path fields are not filterable to prevent directory traversal attacks.
These fields will still be included in your API responses and can be read/written normally - they just cannot be used as filter parameters in API queries.
TurboDRF is MIT licensed. See LICENSE for details.
Built with β€οΈ using:
- Django - The web framework for perfectionists with deadlines
- Django REST Framework - Powerful and flexible toolkit for building Web APIs
- drf-yasg - Yet another Swagger generator
Made with β€οΈ by developers who were tired of writing serializers