gino
gino copied to clipboard
GINO Is Not ORM - a Python asyncio ORM on SQLAlchemy core.
Hello! **Is your feature request related to a problem? Please describe.** I would like to utilize `hide_parameters` argument from the SQLAlchemy [engine](https://docs.sqlalchemy.org/en/13/core/engines.html?highlight=hide_parameters#dbengine-logging), but it seems like it's not possible right...
### Discussed in https://github.com/python-gino/gino/discussions/787 Originally posted by **conguerorKK** July 13, 2021 Greetings, I've 3 tables: "tasks", "services" and "assoc_tasks_services". They contain data like this: tasks: task_id | user_id | price...
Since Python 3.5 reached its [end of life](https://www.python.org/downloads/release/python-3510/) in September 2020, I would recommend phasing it out like this: 1. In v1.1, a `DeprecationWarning` should be included and prompted in...
Greetings, I have a use case where I need to set the variable for each session or connection. and I am able to accomplish it using the asyncpg directly ```python...
It's a very generic question, so i leave it open for comments and suggestions. Many web frameworks propose a customizable "admin" interface, eg. Flask-admin, Django admin, etc. So, with a...
As per our discussion, I have started to add typing support with `json_support.py` file, and here are the notes we have on the way: * As we have the version...
**Describe the bug** In using gino I tried to use the reflect, but it fails. I speculate this is because it runs as a default sqlalchemy function rather than a...
My PyCharm IDE does not show any suggesstion which I see in documentation page of Gino. Anyone can help me to config IDE or any ways to fix it, please?...
**Is your feature request related to a problem? Please describe.** The only way to create tables described is with `db.gino.create_all(...)` or it's alias `db.gino.create(...)`. But in case one needs to...
Sometimes there is need to retrieve some server updated fields in the in-memory instance: ```python user = await User.create() print(user.updated_at) # updated_at_1 await user.update(balance=User.balance + 100).apply() print(user.updated_at) # updated_at_2, and...