Metadata-Version: 2.1
Name: drf-insights-pagination
Version: 1.0.0
Summary: Provides pagination class that adheres to Insights IPP-12.
Home-page: https://gitlab.com/cloudigrade/libraries/drf-insights-pagination
Author: Cloudigrade Team
Author-email: doppler-dev@redhat.com
License: GPLv3
Description: # DRF Insights Pagination
        
        A simple library to add a paginator to DRF that follows Insights IPP-12.
        
        ### Installation and Usage
        
        Install the library
        
        ```
        pip install drf-insights-pagination
        ```
        
        Change your pagination class, and optionally `APP_PATH` in your settings
        
        ```
        REST_FRAMEWORK = {
            'DEFAULT_PAGINATION_CLASS': 'drf_insights_pagination.pagination.InsightsPagination',
        }
        INSIGHTS_PAGINATION_APP_PATH = '/api/application'
        ```
        
        
Keywords: djangorestframework drf pagination insights ipp-12
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
