Je n'ai pu assembler aucune colonne de clé primaire pour la table mappée Sqlalchemy

1. Make sure all your tables have a primary key and you set the __table__ = 'name'
2. execute the following underneath declared table models
with Session(engine) as session:
        Base.metadata.create_all(engine)
        session.commit()
Splendid Seahorse