Metadata-Version: 2.4
Name: litestar-pagination
Version: 0.2.0
Summary: Cursor pagination for Litestar
Project-URL: homepage, https://github.com/ZYLVEXT/litestar-pagination
Project-URL: documentation, https://zylvext.github.io/litestar-pagination/
Project-URL: source, https://github.com/ZYLVEXT/litestar-pagination
Project-URL: tracker, https://github.com/ZYLVEXT/litestar-pagination/issues
Author-email: Vladislav Shepilov <shepilov.v@protonmail.com>
Maintainer-email: Vladislav Shepilov <shepilov.v@protonmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: advanced-alchemy,cursor,keyset,litestar,pagination,sqlalchemy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: <3.15.0,>=3.12.0
Requires-Dist: litestar<3.0,>=2.24.0
Provides-Extra: advanced-alchemy
Requires-Dist: advanced-alchemy<2.0,>=1.11.0; extra == 'advanced-alchemy'
Requires-Dist: sqlakeyset<3.0,>=2.0.1775222100; extra == 'advanced-alchemy'
Requires-Dist: sqlalchemy<3.0,>=2.0; extra == 'advanced-alchemy'
Provides-Extra: all
Requires-Dist: advanced-alchemy<2.0,>=1.11.0; extra == 'all'
Requires-Dist: sqlakeyset<3.0,>=2.0.1775222100; extra == 'all'
Requires-Dist: sqlalchemy<3.0,>=2.0; extra == 'all'
Provides-Extra: sqlalchemy
Requires-Dist: sqlakeyset<3.0,>=2.0.1775222100; extra == 'sqlalchemy'
Requires-Dist: sqlalchemy<3.0,>=2.0; extra == 'sqlalchemy'
Description-Content-Type: text/markdown

# litestar-pagination

Cursor/keyset pagination for Litestar, with SQLAlchemy and Advanced Alchemy integration.

The package supports rich bidirectional `CursorPage` responses and Litestar's native
forward-only `CursorPagination` through `AbstractAsyncCursorPaginator` and
`AbstractSyncCursorPaginator` implementations.

See the [documentation](https://zylvext.github.io/litestar-pagination/) for installation,
quickstarts, navigation, totals, and Advanced Alchemy examples. The detailed contract is in
[PRD.md](PRD.md).
