I am new to both Pyramid and SQLAlchemy. I am working on a Python Pyramid project with SQLAlchemy. I have a simple model set up below. How would I go about being able to use
You can have a base module in package model
app\ models\ base.py schema1.py schema2.py views\ ...
declare Base in base.py, then import it to other schemas
Base