Give AlbumentationsX a star on GitHub — it powers this leaderboard

Star on GitHub

sqlalchemy-stubs

SQLAlchemy stubs and mypy plugin

Rank: #2288Downloads: 2,875,665 (30 days)Stars: 583Forks: 97

Description

Experimental SQLAlchemy type stubs and mypy plugin

This package contains type stubs and mypy plugin to provide more precise static types and type inference for SQLAlchemy framework. SQLAlchemy uses dynamic Python features that are hard to understand by static type checkers, this is why the plugin is needed in addition to type stubs.

Currently, some basic use cases like inferring model field types are supported. The final goal is to be able to get precise types for most common patterns.

Installation

pip install sqlalchemy-stubs

Important: you need to enable the plugin in your mypy config file:

[mypy]
plugins = sqlmypy