Hello I\'m trying to port a legacy application to python with sqlalchemy.
The application\'s existing database has about 300 tables and in every table there is a col
You could define your Table this way:
mymetadata = MetaData() Base = declarative_base(metadata=mymetadata) class Accnt(Base): __tablename__ = 'accnt' code = Column(String(20)) def_ = Column(String(50))