├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── drf_link_header_pagination └── __init__.py ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── mocks.py ├── test_link_header_cursor_pagination.py ├── test_link_header_json_key_cursor_pagination.py ├── test_link_header_limit_offset_pagination.py └── test_link_header_pagination.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/README.md -------------------------------------------------------------------------------- /drf_link_header_pagination/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/drf_link_header_pagination/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/mocks.py -------------------------------------------------------------------------------- /tests/test_link_header_cursor_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/test_link_header_cursor_pagination.py -------------------------------------------------------------------------------- /tests/test_link_header_json_key_cursor_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/test_link_header_json_key_cursor_pagination.py -------------------------------------------------------------------------------- /tests/test_link_header_limit_offset_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/test_link_header_limit_offset_pagination.py -------------------------------------------------------------------------------- /tests/test_link_header_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tests/test_link_header_pagination.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbeadle/django-rest-framework-link-header-pagination/HEAD/tox.ini --------------------------------------------------------------------------------