sqlalchemy-stubs icon indicating copy to clipboard operation
sqlalchemy-stubs copied to clipboard

Mypy plugin and stubs for SQLAlchemy

Results 96 sqlalchemy-stubs issues
Sort by recently updated
recently updated
newest added

https://docs.sqlalchemy.org/en/14/orm/extensions/declarative/ > Changed in version 1.4: The vast majority of the Declarative extension is now integrated into the SQLAlchemy ORM and is importable from the sqlalchemy.orm namespace. Using the old...

``` error: Unexpected keyword argument "overlaps" for "RelationshipProperty" [call-arg] ``` I get this error when running typing on code that includes the `overlaps` keyword on a relationship.

for this sort of code: ```` user = UserModel.query.filter_by(username="awesomeuser").first() db.session.delete(user) # type: ignore, until now db.session.commit() ```` not sure if it's a new issue in some version of sqlalchemy. i'm...

Looking for up to date type information for SQLAlchemy -- it looks like this project is morbidly out of date. Is there a working / published fork that is maintained?...