sqlalchemy.sql schema Example Code

schema is a callable within the sqlalchemy.sql module of the SQLAlchemy project.

ClauseElement, Select, column, expression, extract, functions, operators, select, sqltypes, and table are several other callables with code examples from the same sqlalchemy.sql package.

Example 1 from GINO

GINO (project documentation and PyPI package information) is an object-relational mapper (ORM) built on SQLAlchemy that is non-blocking and therefore designed to work properly with asynchronously-run code, for example, an application written with asyncio.

GINO is open sourced under the BSD License.

GINO / src/gino / engine.py