Skip to content

Pagination using Pydantic. Easy to use, lightweight, and easy to integrate with existing projects ๐Ÿ’ก

License

Notifications You must be signed in to change notification settings

yezz123/pagidantic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

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.

About

Pagination using Pydantic. Easy to use, lightweight, and easy to integrate with existing projects ๐Ÿ’ก

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published