Skip to main content

fastapi-filters

Project description

logo

license test codecov downloads pypi black

Introduction

fastapi-filters is a library that provides filtering/sorting feature for FastAPI applications.


Installation

pip install fastapi-filters

Quickstart

To create filters you need either define them manually using create_filters function or automatically generate them based on model using create_filters_from_model function.

from typing import List

from fastapi import FastAPI, Depends
from pydantic import BaseModel, Field

# import all you need from fastapi-filters
from fastapi_filters import create_filters, create_filters_from_model, FilterValues

app = FastAPI()  # create FastAPI app


class UserOut(BaseModel):  # define your model
    name: str = Field(..., example="Steve")
    surname: str = Field(..., example="Rogers")
    age: int = Field(..., example=102)


@app.get("/users")
async def get_users_manual_filters(
    # manually define filters
    filters: FilterValues = Depends(create_filters(name=str, surname=str, age=int)),
) -> List[UserOut]:
    pass


@app.get("/users")
async def get_users_auto_filters(
    # or automatically generate filters from pydantic model
    filters: FilterValues = Depends(create_filters_from_model(UserOut)),
) -> List[UserOut]:
    pass

Currently, fastapi-filters supports SQLAlchemy integration.

from fastapi_filters.ext.sqlalchemy import apply_filters


@app.get("/users")
async def get_users(
    db: AsyncSession = Depends(get_db),
    filters: FilterValues = Depends(create_filters_from_model(UserOut)),
) -> List[UserOut]:
    query = apply_filters(select(UserOut), filters)
    return (await db.scalars(query)).all()

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

fastapi_filters-0.2.0.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

fastapi_filters-0.2.0-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_filters-0.2.0.tar.gz.

File metadata

  • Download URL: fastapi_filters-0.2.0.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.7 Darwin/22.6.0

File hashes

Hashes for fastapi_filters-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2b4e5a13c82dcbf6102eaa399e45a989042c4d654d40e43199253b157e97709d
MD5 8785a05dc8e9710f02ce2fe64b620437
BLAKE2b-256 f664bef3b8b352220de6dbb488d3e3cc17f4c4e371a57dbf42da6c99f4a37b92

See more details on using hashes here.

File details

Details for the file fastapi_filters-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: fastapi_filters-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.7 Darwin/22.6.0

File hashes

Hashes for fastapi_filters-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c55621f47d3642b32c362e031905d3f32172030d89159a03809f0dde6641ae2d
MD5 ea4774c80bce985bccda00450f0f5c66
BLAKE2b-256 eda282f037fa68b7bc4e2c98de362cff2c486d9ac5bfb8ae22e493f08e28c316

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