Meena's picture
Update app.py
f331cd8
raw
history blame
550 Bytes
import pandas as pd
import torch
from io import StringIO
import streamlit as st
from app.tapas import execute_query
query = st.text_input(label='Enter your query')
# st.write('The current movie title is', title)
uploaded_file = st.file_uploader("Choose a file")
if uploaded_file is not None:
dataframe = pd.read_csv(uploaded_file)
query_result = execute_query(query, dataframe)
st.write(query_result)
expander = st.expander("View Table")
expander.write(dataframe)
# st.table(dataframe)