Skip to content

Instantly share code, notes, and snippets.

@HyperiONI
HyperiONI / seed_pagination.py
Created January 28, 2025 01:48 — forked from bendavis78/seed_pagination.py
Example implementation of randomized pagination in django and django-rest-framework
"""
Adds a `seed` paramter to DRF's `next` and `prev` pagination urls
"""
from rest_framework import serializers
from rest_framework import pagination
from rest_framework.templatetags.rest_framework import replace_query_param
from . import utils