Matt Westcott
Matt Westcott
Hi @lowercase00, thanks for the kind remarks. I used it in a prototype for a startup a couple of years ago, but I haven't been working on it since. It...
Hey, thanks for the question. I'm not using Django at the moment, so it's not in my immediate plans. What changes would be required to support it?
Hi @maciejkula, thanks for this great project and for LightFM too. I have a couple of questions connected to this discussion. First, as I understand it one of the benefits...
Thanks for your efforts @Fogapod. I think there will be many new users here, since [aioredis](https://github.com/aio-libs/aioredis) seems to have been abandoned. Let's hope this project can become a good replacement.
Potential fix: https://github.com/NoneGG/aredis/pull/170
@NoneGG I've also run into this exact problem
Sorry for the lack of small reproducible example, it's quite a deep bug. I've tested https://github.com/NoneGG/aredis/pull/172 locally against my project's integration test suite and it seems to solve the problem.
Databases passes kwargs on to aiosqlite, which passes them on to sqlite3, so I believe the following works: ```python import sqlite3 class Connection(sqlite3.Connection): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.execute('pragma...