from sqlalchemy import Table, MetaData, text from .db import engine, Base tbl = Table('Poems', MetaData(), autoload_with=engine) tbl.drop(engine, checkfirst=False) a = input()