fastapi-crudrouter
fastapi-crudrouter copied to clipboard
A dynamic FastAPI router that automatically creates CRUD routes for your models
I would like to use this router with [Ormar](https://github.com/collerek/ormar/), because with Ormar I can very easily generate different Pydantic schemes of a model. Unfortunately, currently only the Ormar model can...
So. I have a ORM which I'd like to use, and to intigrate. It's a homegrown ORM for the fun of it, but I like my work, so I wanna...
Hi, Is it possible to have an trailing / for the GET and POST endpoints? We have used that for all our endpoints and would like to do the same...
Hello, First off, absolutely love this library. Fantastic work @awtkns. I was wondering if there is any sort of known solution for implementing tags on a per-route basis? I am...
I found an issue when Tortoise's PydanticModel is used, where the related models are not being populated. Due to Tortoise's async nature and Pydantic lack of asyncio support, some methods...
After #104, using the schemathesis tests are still failing when validating the generated openapi spec. The goal of this issue would be to resolve these failing tests (as detailed in...
Hello!, I have simple model with a nullable field: ``` from tortoise import fields, models class Scan(models.Model): id = fields.IntField(pk=True) scan_data = fields.JSONField() time_stamp = fields.DatetimeField(auto_now=True, null=True) class Meta: table...
Hello, First of all, I am not an expert of FastAPI... so it might not be related at all to fastapi-crudrouter. I have Pydantic class which holds file metadata: ```...