Advaned Data Listing Library for FastAPI
Project description
fastapi-listing
An Advanced Data Listing Library for fastapi
The FastAPI Listing Library is a Python library for building fast, extensible, and customizable data listing APIs.
Usage
Configure fastapi-listing
where to look for db session
.
from fastapi import FastAPI
from sqlalchemy.orm import Session
from fastapi_listing.middlewares import DaoSessionBinderMiddleware
def get_db() -> Session:
"""
replicating sessionmaker for any fastapi app.
anyone could be using a different way or opensource packages to produce sessions.
it all comes down to a single result that is yielding a session.
for the sake of simplicity and testing purpose I'm replicating this behaviour in this way.
:return: Session
"""
app = FastAPI()
app.add_middleware(DaoSessionBinderMiddleware, master=get_db, replica=get_db)
How a typical data listing API would look like using fastapi-listing
from fastapi_listing import ListingService, FastapiListing
from fastapi_listing import loader
from app.dao import EmployeeDao # More information is available in docs
@loader.register()
class EmployeeListingService(ListingService):
default_srt_on = "Employee.emp_no" # configure default field to use for sorting data set.
default_dao = EmployeeDao
default_page_size = 2 # default page size. accepts dynamic vals from client
def get_listing(self):
fields_to_read = ["emp_no", "birth_date", "first_name",
"last_name", "gender", "hire_date", "image"]
resp = FastapiListing(self.request, self.dao, fields_to_fetch=fields_to_read
).get_response(self.MetaInfo(self))
return resp
Just call EmployeeListingService(request).get_listing()
from FastAPI routers.
from fastapi import APIRouter
from fastapi_listing.paginator import ListingPage # Automatic Listing api doc Generation. You can use it as adapter to change meta info in page layout.
from app.service import EmployeeListingService
router = APIRouter(prefix="/emps")
@router.get('/', response_model=ListingPage[EmployeeListingDetail])
def get_emps(request: Request):
return EmployeeListingService(request).get_listing()
Use pydantic to avoid writing field_to_fetch
@loader.register()
class EmployeeListingService(ListingService):
default_srt_on = "Employee.emp_no"
default_dao = EmployeeDao
default_page_size = 2
def get_listing(self):
resp = FastapiListing(self.request, self.dao, pydantic_serializer=EmployeeListingDetail
).get_response(self.MetaInfo(self))
Thinking about adding filters???
Don't worry I've got you covered😎 Say you want to add filter for:
- Employees gender - return only employees belonging to 'X' gender where X could be anything.
- Employees DOB - return Employees belonging to a specific range of DOB.
- Employee First Name - return Employees only starting with specific first names.
from fastapi_listing.filters import generic_filters # collection of inbuilt filters
@loader.register()
class EmployeeListingService(ListingService):
filter_mapper = {
"gdr": ("Employee.gender", generic_filters.EqualityFilter),
"bdt": ("Employee.birth_date", generic_filters.MySqlNativeDateFormateRangeFilter),
"fnm": ("Employee.first_name", generic_filters.StringStartsWithFilter),
}
Check out docs for supported list of filters. Additionally, you can create custom filters as well.
Thinking about adding Sorting???
I won't leave you hanging there as well😎
@loader.register()
class EmployeeListingService(ListingService):
sort_mapper = {
"cd": "Employee.emp_no",
"bdt": "Employee.birth_date"
}
Provided features are not meeting your requirements???
It is customizable.😎
You can write custom:
Features
- Easy-to-use API for listing and formatting data
- Built-in support for pagination, sorting and filtering
- Well defined interface for filter, sorter, paginator
- Support Dependency Injection for easy testing
- Room to adapt the existing remote client query param semantics
- Write standardise listing APIs that will be understood by generations of upcoming developers
- Write listing features which is easy on human mind to extend or understand
- Break down the most complex listing data APIs into digestible piece of code
With FastAPI Listing you won't end up like
Documentation
View full documentation at: https://fastapi-listing.readthedocs.io
Feedback, Questions?
Any form of feedback and questions are welcome! Please create an issue here.
Project details
Release history Release notifications | RSS feed
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-listing-0.2.6.tar.gz
.
File metadata
- Download URL: fastapi-listing-0.2.6.tar.gz
- Upload date:
- Size: 33.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e6141f5fd8f07337dfca05f4989abb6473f5cfdde0e9b168cff9835f019b3c9 |
|
MD5 | 57621bd7a22011f1733b251206a3ed35 |
|
BLAKE2b-256 | 8e69d397a3692004bff294ba6e4720c1d993838308f2d021d7320ce63bde37de |
File details
Details for the file fastapi_listing-0.2.6-py3-none-any.whl
.
File metadata
- Download URL: fastapi_listing-0.2.6-py3-none-any.whl
- Upload date:
- Size: 45.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e62cb071c87140c896c4d40229b73a5f437ffa89170c7d5ecf31ead482d5872 |
|
MD5 | a10436ccce9890704724a9db47119807 |
|
BLAKE2b-256 | 0cb4efd18c8773674e4c3b77b2ed607303c9042ffe853ac513c9fd29744d0443 |