Using SQLAlchemy, I am trying to print out all of the attributes of each model that I have in a manner similar to:
SELECT * from table;
How
Building on Rodney L's answer:
model = MYMODEL columns = [m.key for m in model.__table__.columns]