Kirill Klenov
Kirill Klenov
I've created a PYPI package: https://pypi.org/project/curio-compat which one is a fork of the repository but contains the latest commits. So now we are able to install curio from pypi for...
No way, now.
Foreign keys are awaitable because you may load them on demand (like peewee does): ```python for user in await User.select(): role = await user.role # load the role (yes the...
That's because `playhouse.shortcuts.model_to_dict()` is synchronous function (it makes sync DB queries). I think it should be rewrited as async, to support async nature of peewee-aio.
I totally agree, will check it later.
@mrjohannchang Thank you