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.6.tar.gz
(17.3 kB
view details)
File details
Details for the file pyramid_pagination-0.1.6.tar.gz
.
File metadata
- Download URL: pyramid_pagination-0.1.6.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 769ca15c1310521d9da4bf9a38feba317eda0f594ae565656879fa537d693222 |
|
MD5 | 20f24d4faafe91b52688f874f62c0cff |
|
BLAKE2b-256 | 68f21ebf9d557e4f000e02640d7455849c7ab86e55d1b510087f32a0dab61842 |