Spaces:
Runtime error
Runtime error
ascari-maximilian
commited on
Commit
•
c3c01b8
1
Parent(s):
db2e027
Update app.py
Browse files
app.py
CHANGED
@@ -17,9 +17,9 @@ file = st.file_uploader('Upload a csv file here')
|
|
17 |
if file is not None:
|
18 |
query = st.text_input('Query')
|
19 |
data = pd.read_csv(file)
|
20 |
-
|
21 |
-
|
22 |
-
'''
|
23 |
st.subheader('Data')
|
24 |
st.table(data.head())
|
25 |
if query:
|
|
|
17 |
if file is not None:
|
18 |
query = st.text_input('Query')
|
19 |
data = pd.read_csv(file)
|
20 |
+
st.write(pipe(table=data))
|
21 |
+
#print(data)
|
22 |
+
'''
|
23 |
st.subheader('Data')
|
24 |
st.table(data.head())
|
25 |
if query:
|