Meena commited on
Commit
89ab7e2
1 Parent(s): 863ce74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -2,6 +2,8 @@ import pandas as pd
2
  from io import StringIO
3
  import streamlit as st
4
 
 
 
5
  uploaded_file = st.file_uploader("Choose a file")
6
  if uploaded_file is not None:
7
  # Can be used wherever a "file-like" object is accepted:
 
2
  from io import StringIO
3
  import streamlit as st
4
 
5
+ title = st.text_input(label='Enter your query')
6
+ # st.write('The current movie title is', title)
7
  uploaded_file = st.file_uploader("Choose a file")
8
  if uploaded_file is not None:
9
  # Can be used wherever a "file-like" object is accepted: