Skip to main content

Pagination using Pydantic. Easy to use, lightweight, and easy to integrate with existing projects.

Project description

Logo

Pagination using Pydantic. Easy to use, lightweight, and easy to integrate with existing projects ✨

Continuous Integration Package version Supported Python versions Pydantic v2

Requirements

A recent and currently supported version of Python (right now, Python supports versions 3.9 and above).

As Pagidantic is based on Pydantic, it requires them. They will be automatically installed when you install Pagidantic.

Notes: we support only Pydantic v2. If you are using Pydantic v1, you can install it using pip install pagidantic==1.1.0

Installation

You can add Pagidantic in a few easy steps. First of all, install the dependency:

$ pip install pagidantic

---> 100%

Successfully installed pagidantic

Usage

from pagidantic import pagidantic

# Generate a list here: https://json-generator.com/
object_list = [...]  # list of objects


pagination = pagidantic(object_list, page_limit=2, start_page=0)

# get current returned page
def get_current_page():
    return pagination.response


# get next pageg
def get_next_page():
    return pagination.get_next()


# get previous page
def get_previous_page():
    return pagination.get_previous()


# get page by number
def get_page_by_number():
    return pagination.get_page_response(page_number=0)


# get total pages
def get_total_pages():
    return pagination.total_pages


# Count total objects
def count_total_objects():
    return pagination.total

Development 🚧

Setup environment 📦

You should create a virtual environment and activate it:

python -m venv venv/
source venv/bin/activate

And then install the development dependencies:

# Install dependencies
pip install -e .[test,lint]

Run tests 🌝

You can run all the tests with:

bash scripts/test.sh

Format the code 🍂

Execute the following command to apply pre-commit formatting:

bash scripts/format.sh

Execute the following command to apply mypy type checking:

bash scripts/lint.sh

License

This project is licensed under the terms of the MIT license.

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

pagidantic-2.0.0.tar.gz (29.4 kB view hashes)

Uploaded Source

Built Distribution

pagidantic-2.0.0-py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 3

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