Skip to main content

A declarative and intuitive way to describe data filtering and sorting in your application.

Project description

pydantic-filters

Testing Coverage pypi license versions

Documentation: https://so-saf.github.io/pydantic-filters/

Source Code: https://github.com/so-saf/pydantic-filters


Describe the filters, not implement them! A declarative and intuitive way to describe data filtering and sorting in your application.

Features

  • Filtering by the models themselves as well as by related.
  • Built-in pagination and sorting.
  • Lots of settings and possible customizations.
  • The only required dependency is Pydantic. You can use the basic features without being attached to specific frameworks, or use one of the supported plugins and drivers:
    • Plugins:
      • FastAPI >= 0.100.0
    • Drivers:
      • SQLAlchemy >= 2

Installation

pip install pydantic-filters

A Simple Example

BaseFilter is just a pydantic model, it should be treated similarly

Let's imagine you have a simple user service with the following SQLAlchemy model:

from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column


class Base(DeclarativeBase):
    pass


class User(Base):
    __tablename__ = "users"
    id: Mapped[int] = mapped_column(primary_key=True)
    name: Mapped[str]
    age: Mapped[int]

Describe how you would like to filter users using BaseFilter.

from typing import List
from pydantic_filters import BaseFilter


class UserFilter(BaseFilter):
    id: List[int]
    name: List[str]
    name__ilike: str
    age__lt: int
    age__gt: int

BaseFilter is just a pydantic model, it should be treated similarly

Next, you need to apply a filter to some query:

from sqlalchemy import select
from pydantic_filters.drivers.sqlalchemy import append_filter_to_statement

statement = select(User)
filter_ = UserFilter(name__ilike="kate", age__lt=23)

stmt = append_filter_to_statement(
    statement=statement, model=User, filter_=filter_,
)

And get something like:

SELECT users.id, users.name, users.age 
FROM users 
WHERE users.name ILIKE 'kate' AND users.age < 23

The filter can be used in conjunction with one of the supported web frameworks:

from typing import Annotated
from fastapi import FastAPI, APIRouter
from pydantic_filters.plugins.fastapi import FilterDepends


router = APIRouter()


@router.get("/")
async def get_multiple(
    filter_: Annotated[UserFilter, FilterDepends(UserFilter)],
):
    ...


app = FastAPI(title="User Service")
app.include_router(router, prefix="/users", tags=["User"])

fastapi-simple-example.png

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

pydantic_filters-0.3.4.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

pydantic_filters-0.3.4-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_filters-0.3.4.tar.gz.

File metadata

  • Download URL: pydantic_filters-0.3.4.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.6

File hashes

Hashes for pydantic_filters-0.3.4.tar.gz
Algorithm Hash digest
SHA256 4fc6adf212850e8352e5cc90eb6051830e3217127ff0591a862127149e05331c
MD5 4d3d2ff1366e7b9724c541e4471af9cb
BLAKE2b-256 2d1ba3b86e1c8d49af7febb7b0bc0b5734c137cf5528c6d59f688561c7fc89b3

See more details on using hashes here.

File details

Details for the file pydantic_filters-0.3.4-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_filters-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c9d66334eb1248ccf7f4410b9e33fd4acde36b230c8cc5d618a87dfa5422416b
MD5 3fc63f3dfa20bf0b8c8e3dbd64486704
BLAKE2b-256 9d19866cc4e7eabc7911cb63fcb3f271ff95a47d56628d7cc0d64072cb3f2d74

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