I have a flask application with a background process I have spawned away from the GUI. I have a db session created in association with the Flask app. Because I want to have the freedom to write tables to the db that are not necessarily to be referenced by GUI code, I am not creating the overhead of a class.
The code that creates a table is as follows:
admin_df.to_sql(df_name, con=db.engine, if_exists="replace")
How would I now delete this table?