7 lines
177 B
Python
7 lines
177 B
Python
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()
|