An open API service indexing awesome lists of open source software.

https://github.com/vanng822/pypagination

Pagination in CPython
https://github.com/vanng822/pypagination

Last synced: about 2 months ago
JSON representation

Pagination in CPython

Awesome Lists containing this project

README

        

pypagination
============

Pagination in CPython

[![build status](https://secure.travis-ci.org/vanng822/pypagination.png)](http://travis-ci.org/vanng822/pypagination)

# Example
import pagination
# total 1000 items in result
p = pagination.Paginator(1000,
prelink= '/test?go=3',
current = 1,
pageLinks = 5,
rowsPerPage = 10,
)
print p.render()
# OR
print p.render(pattern="item")
# OR for pagination data
print p.getPaginationData()