Spaces:
Sleeping
Sleeping
File size: 948 Bytes
962e128 8569c62 962e128 8569c62 962e128 8569c62 962e128 8569c62 962e128 129281c 8569c62 129281c 962e128 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import streamlit as st
from config import DEFAULT_ICON
from shared_page import common_page_config
from dbt_data_client import run_dbt_build, get_current_tables, execute_db_command_df
def get_page():
page_title = "Data Loader - dbt"
st.set_page_config(page_title=page_title, page_icon=DEFAULT_ICON, layout="wide")
common_page_config()
st.title(page_title)
if st.button("Refresh Data"):
run_dbt_build()
current_tables_list = get_current_tables()
if selected_table := st.selectbox("Describe a table:", current_tables_list, index=0):
describe_df = execute_db_command_df(f"DESCRIBE {selected_table}")
st.dataframe(
describe_df,
hide_index=True,
use_container_width=True,
)
if st.checkbox("Explore data"):
st.dataframe(execute_db_command_df(f"SELECT * FROM {selected_table} LIMIT 50"))
if __name__ == "__main__":
get_page()
|