A session is usually obtained using sessionmaker, which creates a Session class unique to your application. Most commonly, the Session class is bound to an engine, allowing instances to use the engine implicitly.
from sqlalchemy.orm import sessionmaker
# Initial configuration arguments
Session ...