sqlalchemy.sql ClauseElement Example Code

ClauseElement is a class within the sqlalchemy.sql module of the SQLAlchemy project.

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

Example 1 from databases

databases (project homepage and PyPI page provides asyncio support with an SQLALchemy Core interface for common relational databases such as MySQL, PostgreSQL and SQLite. This is handy for integrating with asynchronous I/O web frameworks like Sanic. The project is open sourced under the BSD 3-Clause "New" or "Revised" License.

databases / databases / interfaces.py

Example 2 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 / crud.py