You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Tortoise only supports code using the stdlib asyncio framework. I have a project that uses the trio async framework and I wanted to use Tortoise for the database functionality but ran into errors from Tortoise using asyncio.
The changes required to support trio would be substituting asyncio with the anyio package. This would most likely require some API changes to support the structured concurrency patterns used in trio/anyio.
I likely won't end up using Tortoise in my trio-based project, at least for now, but I wanted to open this issue to see whether this might be possible to support.
The text was updated successfully, but these errors were encountered:
Currently Tortoise only supports code using the stdlib
asyncio
framework. I have a project that uses thetrio
async framework and I wanted to use Tortoise for the database functionality but ran into errors from Tortoise usingasyncio
.The changes required to support
trio
would be substitutingasyncio
with theanyio
package. This would most likely require some API changes to support the structured concurrency patterns used intrio
/anyio
.I likely won't end up using Tortoise in my
trio
-based project, at least for now, but I wanted to open this issue to see whether this might be possible to support.The text was updated successfully, but these errors were encountered: