Skip to main content

Easy pagination for Pyramid applications

Project description

Easy pagination for Pyramid applications! It currently has built-in support for paginating:

  • Iterable types (lists, tuples)

  • SQLAlchemy Query objects

But can support pagination over any data type via extensions.

Project

TL;DR

Install with:

$ pip install pyramid_pagination

Use default pagination with:

from pyramid_pagination import paginate

@paginate
def view(request): return range(30)

Then a request without parameters results in:

{
  "result": [0, 1, 2, ... , 22, 23, 24],
  "page": {
    "offset": 0,
    "limit": 25,
    "count": 30,
    "attribute": "result"
  }
}

Paginating with some defaults changed and adding some attribute-based sort methods:

from pyramid_pagination import paginate

@paginate(limit_default=2, comparers=['name', 'value'])
def view(request):
  return [
    dict(name='alph', value=1),
    dict(name='beta', value=2),
    dict(name='zeta', value=3),
    dict(name='alph', value=4),
  ]

Then a request with parameters ?page.offset=1&page.limit=3&page.sort=name-,value results in:

{
  "result": [
    {"name": "beta", "value": 2},
    {"name": "alph", "value": 1},
    {"name": "alph", "value": 4}
  ],
  "page": {
    "offset": 1,
    "limit": 3,
    "count": 4,
    "sort": "name-,value",
    "attribute": "result"
  }
}

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

pyramid_pagination-0.1.5.tar.gz (17.2 kB view hashes)

Uploaded Source

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