gino icon indicating copy to clipboard operation
gino copied to clipboard

GINO Is Not ORM - a Python asyncio ORM on SQLAlchemy core.

Results 60 gino issues
Sort by recently updated
recently updated
newest added

**Describe the bug** A TypeError when passed integer to `literal()` **To Reproduce** ```python import os import asyncio from gino import Gino from sqlalchemy import Integer db = Gino() async def...

bug

**Is your feature request related to a problem? Please describe.** SQLAlchemy was launched on March 2021 **Describe the solution you'd like** Gino should be able to support 1.4 version of...

feature request

**Describe the bug** I'm trying to use gino in postgres with simple model with enum column type. It seems like enum is not fully supported and it behaves really strange...

bug

We are trying to deploy a FastAPI + starlette + gino-starlette + async psql microservice in AWS lambda using mangum handler, seems init_db is not allowing the lambda to start,...

question

TypeError while trying to initialize Gino db with MySQL **To Reproduce** ```python from gino_starlette import Gino DATABASE_URL = f"mysql+aiomysql://{DATABASE_USER}:{DATABASE_PASSWORD}@{DATABASE_HOST}:{DATABASE_PORT}/{DATABASE_NAME}" db = Gino( dsn=DATABASE_URL, echo=True ) ``` **Actual result** ``` Cannot...

bug

Gino 1.1b2 doesn't work on Python 3.10.2 and aiomysql **To Reproduce** ```python from gino_starlette import Gino DATABASE_URL = f"mysql+aiomysql://{DATABASE_USER}:{DATABASE_PASSWORD}@{DATABASE_HOST}:{DATABASE_PORT}/{DATABASE_NAME}" db = Gino( dsn=DATABASE_URL, echo=True ) ``` **Actual result** ``` TypeError:...

bug

* GINO version: 1.0.1 * Python version: 3.8.2 * asyncpg version: 0.20.1 * aiocontextvars version: * PostgreSQL version: 12.3 ### Description I am trying to create tests for a fast_api...

Able to setup a new poetry project and install gino[starlette] but then following the next step to install fastapi, uvicorn & gunicorn results in an error: ``` $ poetry add...

bug

The messages might need adjustment, but the test is working. This PR is intended to resolve #731.

Rationale: This is basically a poka-yoke design, for 1. Disabling constraints without names 2. Generating constraints with names in alembic migrations - Alembic will not generate names for constraints defined...

feature request