Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2021-07-06 | 783 Bytes | |
v0.8.0 - Gino Backend.tar.gz | 2021-07-06 | 193.6 kB | |
v0.8.0 - Gino Backend.zip | 2021-07-06 | 226.5 kB | |
Totals: 3 Items | 420.9 kB | 0 |
🎉 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.
:::python
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]