This example shows how to create a table, insert data, and select from the database using SQLAlchemy Core. For information re: the SQLAlchemy ORM, see here.
First, we'll need to connect to our database.
from sqlalchemy import create_engine
engine = create_engine('sqlite://')
The engine is ...