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

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.

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

API Reference

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.3.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

pydantic_filters-0.3.3-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pydantic_filters-0.3.3.tar.gz
  • Upload date:
  • Size: 13.2 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.3.tar.gz
Algorithm Hash digest
SHA256 f622ce53605a35c6754b070e9dc9d8e30a6ab382e59807170d88b81bb48eed6b
MD5 c30b3117882eded25428a42dd89483d4
BLAKE2b-256 c6118159fa1ecaf3743ce2f1c090f1a9d2b3aa74f101c78e7f6dbad9eacde35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_filters-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 17988fecb4fc52ccf44a0c7fe7ecaff54cc929f5daaa599e9db26f0f4427416c
MD5 912be75b537995188b3724942e0ca799
BLAKE2b-256 0ffdf9c990f955afdaa0725b612d075ccc5b188e69f75e5fbec9b75ed18d5fed

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