Jordan Eremieff

Results 23 comments of Jordan Eremieff

Here is a really simple example using an sqlite database with [Tortoise ORM](https://tortoise-orm.readthedocs.io/en/latest/): ```python # yourapp.models.py from tortoise.models import Model from tortoise import fields class User(Model): id = fields.IntField(pk=True) name...

@rernst76 A handler pattern and `custom_handlers` argument were introduced starting 0.14.0 which you could try instead of a middleware. The original suggested solution was to modify the main adapter class,...