19 lines
428 B
Python
19 lines
428 B
Python
|
from app import db
|
||
|
from pandas import DataFrame, read_sql, wide_to_long
|
||
|
|
||
|
|
||
|
def create_dataframe(query) -> DataFrame:
|
||
|
df = read_sql(sql=query, con=db.engine)
|
||
|
return df
|
||
|
|
||
|
|
||
|
def render_table(df) -> str:
|
||
|
table = df.to_html(classes=["table-bordered", "table-striped", "table-hover"])
|
||
|
return table
|
||
|
|
||
|
|
||
|
def create_table(query) -> str:
|
||
|
df = create_dataframe(query)
|
||
|
html_table = render_table(df)
|
||
|
return html_table
|