Meena's picture
Update app.py
89ab7e2
raw
history blame
No virus
374 Bytes
import pandas as pd
from io import StringIO
import streamlit as st
title = 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:
# Can be used wherever a "file-like" object is accepted:
dataframe = pd.read_csv(uploaded_file)
st.table(dataframe)