Skip to main content

Small, but usefull library for interaction with Ormar ORM

Project description

FASTAPI-ORMAR-UTILITIES

Small package for better interaction with Ormar ORM.

This package makes your views cleaner

Features:

  • Fully async
  • Compatible with FastAPI
  • In my opinion Ormar is the best ORM for FastAPI
  • Support select_related() method
  • Handle Not found exceptions

Install with pip

pip install fastapi-ormar-utilities[all]

Example usage:

from fastapi import APIRouter, Depends
from fastapi_ormar_utilities import Base

from .models import Item # import Ormar model
from .schemas import ItemCreate # import Pydantic model

router = APIRouter()

class ItemService(Base):
    model = Item

@router.get('/')
async def get_items(
    service: ItemService = Depends()
):
    return await service.fetch_all()

@router.get('/')
async def get_items_with_related(
    service: ItemService = Depends()
):
    # if you want to add related field to the query
    return await service.fetch_all(related_field='some_field')

@router.post('/')
async def create_item(
    item_data: ItemCreate,
    service: ItemService = Depends()
):
    return await service.create(item_data)

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-ormar-utilities-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

fastapi_ormar_utilities-0.1.0-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

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