Fastapi Crudrouter Versions Save

A dynamic FastAPI router that automatically creates CRUD routes for your models

v0.8.6

1 year ago

πŸŽ‰ Highlights

With the release of v0.8.6 fastapi-crudrouter now officially supports both Python 3.11 and has dropped official support for Python 3.6 . Keep an eye of for the next release (v.0.9) which will contain support for async SQLAlchemy (https://github.com/awtkns/fastapi-crudrouter/issues/122).

Big thanks to all contributors that made this possible!

✨ Features

πŸ› Bugs

πŸ’› New Contributors

Full Changelog: https://github.com/awtkns/fastapi-crudrouter/compare/v0.8.5...v0.8.6

v0.8.5

2 years ago

πŸŽ‰ Highlights

With the release of v0.8.5 fastapi-crudrouter now officially supports both Python 3.10 and typed python. This release also includes significant improvements to the documentation, test suite, and developer experience.

Keep an eye of for the next release which will contain support for async SQLAlchemy (#122).

Big thanks to all contributors that made this possible!

✨ Features

  • Typed python support #132 #111
  • Python 3.10 support #114
  • Test suite now runs against multiple databases #86
  • Documentation improvements #79 #91 #117 #123 #124 #125 @andrewthetechie
  • More informative exceptions #94 #137
  • General test suite improvements #96 #97

πŸ› Bug Fixes

  • OrderBy not working correctly with Microsoft SQL Server #88
  • 404 response not documented in OpenAPI spec #104 @sondrelg
  • DatabasesCRUDRouter not functioning for inserts and deletes with AsyncPG #98

Full Changelog: https://github.com/awtkns/fastapi-crudrouter/compare/v0.8.0...v0.8.5

v0.8.0

2 years ago

πŸŽ‰ Highlights

With the release of v0.6.0 fastapi-crudrouter now supports Gino as an async backend! When generating routes, GinoCRUDRouter will automatically tie into your database using your Gino models. To use it, simply pass your Gino database model, a database reference, and your pydantic.

GinoCRUDRouter(
    schema=MyPydanticModel,
    db_model=MyModel, 
    db=db
)

Check out the docs for more details on how to use the GinoCRUDRouter.

✨ Features

  • Full Gino Support @Turall #78
  • Documentation improvements #69 #75

πŸ› Bug Fixes

  • All Path Prefixes are now correctly lowercase #64 #65

v0.7.0

3 years ago

πŸŽ‰ Highlights

With the release of v0.7.0 fastapi-crudrouter now provides the ability to set custom dependencies on a per route basis; a much requested feature. Prior to this release, it was only possible to set dependencies for all the routes at once.

MemoryCRUDRouter(
    schema=MySchema,
    create_route=[Depends(user)],
    delete_all_route=[Depends(admin)]
)

Shown above is a brief example on how limiting each route to specific access rights would work using this new feature. Check out the docs for more details.

✨ Features

  • Custom Dependencies Per Route #37 #59 #60 @DorskFR @jm-moreau
  • Ability to Provide a List of Custom Tags for OpenAPI #57 @jm-moreau
  • Improved Documentation #52
  • Dark Mode for Documentation

v0.6.0

3 years ago

πŸŽ‰ Highlights

With the release of v0.6.0 fastapi-crudrouter now supports ormar as an async backend! When generating routes, the OrmarCRUDRouter will automatically tie into your database using your ormar models. To use it, simply pass your ormar database model as the schema.

OrmarCRUDRouter(
    schema=MyPydanticModel, 
    paginate=25
)

Check out the docs for more details on how to use the OrmarCRUDRouter.

✨ Features

  • Full Ormar Support @collerek #46
  • Better handling of database errors in the update route @sorXCode #48
  • Improved typing #46 #43
  • Black, Flake8 and Mypy linting #46
  • Additional Tests for nested models #40

πŸ› Bug Fixes

  • Pagination issues when max limit was set to null @ethanhaid #42

v0.5.0

3 years ago

πŸŽ‰ Highlights

With the release of v0.5.0 all CRUDRouters now supports pagination. All "get all" routes now accept skip and limit query parameters allowing you to easily paginate your routes. By default, no limit is set on the number of items returned by your routes. Should you wish to limit the number of items that a client can request, it can be done as shown below.

CRUDRouter(
    schema=MyPydanticModel, 
    paginate=25
)

Check out the docs on pagination for more information!

✨ Features

  • Pagination Support #34
  • Ability to set custom update schemas @andreipopovici #31 #27
  • Better documentation of past releases #36

πŸ› Bug Fixes

  • Prefixing not available for versions of fastapi below v0.62.0 #29 #30
  • Fixed an Import Issue SQLAlchemy and Integrity Errors @andreipopovici #33

v0.4.0

3 years ago

✨Features

  • Full support for tortoise-orm #24
  • Dynamic pk/id types for get_one, delete_one, and update_one routes #26

πŸ› Bug Fixes

  • Fixed the summary for the delete one route #16
  • Fixed import errors when certain packages are not installed #21
  • Improved SQLA type hinting

v0.3.0

3 years ago

πŸŽ‰ Initial Release πŸŽ‰

Tired of rewriting the same generic CRUD routes? Need to rapidly prototype a feature for a presentation or a hackathon? Thankfully, fastapi-crudrouter has your back. As an extension to the APIRouter included with FastAPI, the FastAPI CRUDRouter will automatically generate and document your CRUD routes for you.

Documentation: https://fastapi-crudrouter.awtkns.com

Source Code: https://github.com/awtkns/fastapi-crudrouter

Installation

pip install fastapi_crudrouter

Usage

Below is a simple example of what the CRUDRouter can do. In just ten lines of code, you can generate all the crud routes you need for any model. A full list of the routes generated can be found here.

from pydantic import BaseModel
from fastapi import FastAPI
from fastapi_crudrouter import MemoryCRUDRouter as CRUDRouter

class Potato(BaseModel):
    id: int
    color: str
    mass: float

app = FastAPI()
app.include_router(CRUDRouter(model=Potato))

Features

  • Automatic pydantic model based route generation and documentation (Docs)
  • Ability to customize any of the generated routes (Docs)
  • Authorization and FastAPI dependency support (Docs)
  • Support for both async and non-async relational databases using SQLAlchemy (Docs)
  • Extensive documentation.
  • And much more 😎