| 123456789 | from rest_framework.pagination import PageNumberPaginationfrom rest_framework.utils.urls import replace_query_param, remove_query_paramfrom rest_framework.exceptions import APIExceptionclass MyPageNumberPagination(PageNumberPagination):    page_size = 11    page_size_query_param = "max_page"    max_page_size = 1000    page_query_param = 'page'
 |