response pagination using django restframework
Project description
example:
class TestAPI(APIView):
@staticmethod
def get(request):
tests = Test.objects.all() # filter or order by or anything else
pagination = PaginationObject(objects=tests, page=1, numbers_in_page=10,
serializer=TestSerializer)
return Response(pagination.serializer_data(), status=status.HTTP_200_OK)
to get all objects in one page :
pagination = PaginationObject(objects=tests, page=1, numbers_in_page=-1,
serializer=TestSerializer)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file djangorestframework_pagination-1.2.tar.gz
.
File metadata
- Download URL: djangorestframework_pagination-1.2.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3f1b4a2b3185a6615ce164238e6f1a2d5e54991b653e1a534d4f1609e262947 |
|
MD5 | 0d2665982ea59879a852fa18f81ec779 |
|
BLAKE2b-256 | 16bb020e227dec54e612418698bfae48aee8b66fab414d616047cfb7d325362f |
File details
Details for the file djangorestframework_pagination-1.2-py3-none-any.whl
.
File metadata
- Download URL: djangorestframework_pagination-1.2-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b286067b7972e6249301b08b370412d03531f374899fef207e46b220fbb54a93 |
|
MD5 | 4b4a5cb175a8664a43af6afbd15c56b4 |
|
BLAKE2b-256 | 73808583c112c8b99437845d4c22c7378ce03cc0d159085162c57498a1e6da82 |