A package to simplify filtering and sorting in FastAPI
Project description
Introduction
fastapi-query-tools
is a Python library designed to simplify filtering and sorting in FastAPI applications.
It provides a set of utility functions and data models to help you filter, sort, and order your data to be returned to your clients.
fastapi-query-tools
is built on top of the popular fastapi
library. It is currently designed to work with SQLAlchemy
, but support for other databases may be added in the future.
It is compatible with Python 3.10 and higher.
Features:
- Simplifies filtering and sorting in FastAPI applications.
- Supports a query, a sort by, and an order by system.
- Works with
SQLAlchemy
. - Compatible with Python 3.10 and higher.
Installation
pip install fastapi-query-tools
Quickstart
All you need to do is to add the Filter
dependency to the endpoint params and call filter_and_sort
function
on data you want to filter and/or sort.
from fastapi import FastAPI, Depends
from sqlalchemy import select
# import all you need from fastapi-query-tools
from fastapi_query_tools import Filter, filter_and_sort
app = FastAPI() # create FastAPI app
@app.get('/items')
async def get_items(*, db: Session = Depends(get_db), filter: Filter) -> List[ItemOut]:
stmt = select(Item)
query = filter_and_sort(stmt, filter)
return db.execute(query).scalars().all() # filter and sort data and return
Example Request
curl -X 'GET' \
'http://localhost:8000/api/items?q=item&sort_by=name&order=desc' \
-H 'accept: application/json' \
Where q
is a query, sort_by
is a field (column) to sort by, and order
(asc, desc) is an order of sorting.
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
Built Distribution
File details
Details for the file fastapi_query_tools-1.0.0.tar.gz
.
File metadata
- Download URL: fastapi_query_tools-1.0.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00b14caefbf016ac90dee077d51e066bc7c13944e0c75f6220bf5ffe81b4db4b |
|
MD5 | 0c1363d2e9b18ed4bd7dc55f370cc2b2 |
|
BLAKE2b-256 | 657ec7674c7405dd0a638f072f6f455deeb0c2707af489275a82ccec6b609781 |
File details
Details for the file fastapi_query_tools-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: fastapi_query_tools-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0143d6067e2e1e37f489c67c677af4d6fdd6faeeac25ace96ceb4d137ec2a90e |
|
MD5 | a1665ef2eb86d956579f85edc0ad42a4 |
|
BLAKE2b-256 | 097233d08c087c8a9fd3d028ef638cd7fb81da2f399211e155157caf7d62b402 |