-
Добавить psycopg3 пул, также добавить возможность автоматической установки psycopg3 командой
```pip install peewee-async[psycopg3]```, установку aiopg нужно переделать на pip install peewee-async[aio…
-
This project was started to experiment with async ORM interface. Our dev team has been using this in several small to mid-scale projects in production. But actually we didn't have chance to build some…
-
```python
File "/usr/local/lib/python3.7/site-packages/peewee_async.py", line 258, in execute
return (await execute(query))
File "/usr/local/lib/python3.7/site-packages/peewee_async.py", li…
-
Renctly I tried to redeploy my project used with sanic frame ,some errors happened when I do a test under high-concurrency.
info in the log:
```
close cannot be used while an asynchronous query i…
msean updated
6 years ago
-
Peewee's design is based on maximum simplicity concept, there is not so much of magic in implementation and no "black" magic at all, as I can see. And peewee provides the exceptionally clean and power…
-
```
_GatheringFuture exception was never retrieved
future:
Traceback (most recent call last):
File "C:\Users\User\Desktop\git\microservice-users\routes\roles.py", line 160, in m
async with…
-
Is there any way to replicate RetryOperationalError of peewee in peewee_async?
I have tried inheriting from RetryOperationalError and overriding execute (closing and retrying on error), but that do…
-
Hi, I use Python 3.8, peewee_async version is v0.10.0, if asyncio.CancelledError exception occurs when connecting to the database, the connection pool can no longer create new connections available (b…
-
When I am installing redash via chef, I am getting following error any idea?
self.**local.closed = False
==> devtools: File "/opt/redash/virtualenv/local/lib/python2.7/site-packages/peewee.py", li…
-
I have these models:
```python
@manager.register
class Role(AIOModel):
id = fields.AutoField()
name = fields.CharField()
@manager.register
class User(AIOModel):
id = fields.Aut…