Skip to main content

Paginator for SQLAlchemy ORM

Project description

PyPI Version

SQLAlchemy-Paginator

This module helps you to manage large data with pagination.

How this module work?

This module sqlalchemy_paginator.Paginator take an SQLAlchemy query - e.g.: Session.query(MyModel) and on calling page for specific page number it will fetch only required records from database instead of fetching all the records.

This class will also optimized the query for fetching total number of records from database against given query_set. Optimization will be applied only on the query that will be used for fetching total number of records. You can also provide the separate query in optional_count_query_set argument for fetching total number of records.

Usage

You can use this paginator module in python scripting code and in web based application code as well.

Example1

> from sqlalchemy_paginator import Paginator
> query = session.query(MyModel)
> paginator = Paginator(query, 5)
> for page in paginator:
>     print "page number of current page in iterator", page.number
>     print "this is a list that contains the records of current page", page.object_list

Example2

> from sqlalchemy_paginator import Paginator
> query = session.query(MyModel)
> paginator = Paginator(query, 5)
> page = paginator.page(page_number)
> print "to get total number of records against given query", page.paginator.count
> print "to get total number of pages", page.paginator.total_pages
> print "to get range of pages in list", page.paginator.pages_range
> print "to get index of the first object on this page", page.start_index
> print "to get index of the last object on this page", page.end_index
> if page.has_previous():
>     print "to get previous page number", page.previous_page_number
> if page.has_next():
>     print "to get next page number", page.next_page_number

How to install?

When pip is available, the distribution can be downloaded from PyPI and installed in single step

> pip install SQLAlchemy-Paginator

or you can use easy_install

> easy_install SQLAlchemy-Paginator

You can find more document in sqlalchemy_paginator/paginator.py module and a complete example in the tests/sqlalchemy_paginator_tests.py file of this Python module.

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

SQLAlchemy-Paginator-0.2.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

SQLAlchemy_Paginator-0.2-py2-none-any.whl (6.4 kB view details)

Uploaded Python 2

File details

Details for the file SQLAlchemy-Paginator-0.2.tar.gz.

File metadata

  • Download URL: SQLAlchemy-Paginator-0.2.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for SQLAlchemy-Paginator-0.2.tar.gz
Algorithm Hash digest
SHA256 fabb8fd28904a161252f2afa733e2a10ca0ded4556b36f93f481f605c5fa8948
MD5 e3f33587c04e62265cc2c814ebf994dd
BLAKE2b-256 d79218aeeba448c13900caaabd229324d0e8ca0556177c669dc235c97e042cbd

See more details on using hashes here.

File details

Details for the file SQLAlchemy_Paginator-0.2-py2-none-any.whl.

File metadata

  • Download URL: SQLAlchemy_Paginator-0.2-py2-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for SQLAlchemy_Paginator-0.2-py2-none-any.whl
Algorithm Hash digest
SHA256 9c3690d24a20867ab4151ca3d52e60dc3f085fbe13729e09687aaa1ac66d85c8
MD5 ab774562a1243b64e8207f1797c9b83d
BLAKE2b-256 45782ee5916d671d6e8c6ac5cbe84feba953e2c72a81bb699440974334c25fa0

See more details on using hashes here.

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