Skip to main content

Falcon pagination helper

Project description

https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square https://travis-ci.org/Darkheir/falcon-pagination-hook.svg?branch=master https://codecov.io/gh/Darkheir/falcon-pagination-hook/branch/master/graph/badge.svg Codacy Badge Updates

A small falcon hook to parse pagination elements from the request.

For now it parses an Offset based pagination.

Usage

The easiest way to use this hook is the following:

@falcon.before(PaginationFromRequestHook())
def on_get(self, req, resp, user):
    # Here req['context']['pagination'] is set
    # with 2 keys: 'offset' and 'limit'

The Hook will look in the query parameters for 2 keys:

  • offset: The pagination offset

  • limit: The pagination limit

It will create a pagination dict into the request context accessible at req.context['pagination']. This pagination dict will contain 2 values:

  • offset: The offset from the request or 0 if it doesn’t exists

  • limit: The limit to apply. If no limit is found the default one is applied (20). If the value is bigger than the max value (100) then the default limit is also applied.

Configuration options

A few parameters can be passed to the hook:

  • default_limit : The limit to apply if none is found in the request query or if the limit is out of bound. Default to 20

  • max_limit: Maximum allowed limit. Default to 100

  • offset_key: Name of the request parameter holding the offset value. Default to ‘offset’

  • limit_key: Name of the request parameter holding the limit value. Default to ‘limit’

Here’s an example setting a default limit to 10, a maximum limit to 500 the offset key to ‘page_offset’ and the limit key to ‘result_limit’:

@falcon.before(PaginationFromRequestHook(
    default_limit=10,
    max_limit=500,
    offset_key='page_offset',
    limit_key='result_limit'
))
def on_get(self, req, resp, user):
    # Get request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

falcon_pagination-0.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

falcon_pagination-0.0.1-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page