Spaces:
Sleeping
Sleeping
palitrajarshi
commited on
Commit
β’
9a3e0c8
1
Parent(s):
0508590
Update pages/CSV_Data_Analyzer.py
Browse files
pages/CSV_Data_Analyzer.py
CHANGED
@@ -1,6 +1,12 @@
|
|
1 |
import streamlit as st
|
2 |
from utils1 import query_agent
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# Applying Styling
|
5 |
st.markdown("""
|
6 |
<style>
|
@@ -14,11 +20,6 @@ div.stButton > button:hover {
|
|
14 |
}
|
15 |
</style>""", unsafe_allow_html=True)
|
16 |
|
17 |
-
|
18 |
-
st.set_page_config(page_title="Spreadsheet Analyzer")
|
19 |
-
st.title("Let's do some analysis on your CSV...π€ ")
|
20 |
-
st.subheader("Please upload your CSV file here:")
|
21 |
-
|
22 |
# Capture the CSV file
|
23 |
data = st.file_uploader("Upload CSV file",type="csv")
|
24 |
|
|
|
1 |
import streamlit as st
|
2 |
from utils1 import query_agent
|
3 |
|
4 |
+
st.set_page_config(page_title="Spreadsheet Analyzer")
|
5 |
+
st.title("Let's do some analysis on your CSV...π€ ")
|
6 |
+
st.subheader("Please upload your CSV file here:")
|
7 |
+
|
8 |
+
st.sidebar.title("π")
|
9 |
+
|
10 |
# Applying Styling
|
11 |
st.markdown("""
|
12 |
<style>
|
|
|
20 |
}
|
21 |
</style>""", unsafe_allow_html=True)
|
22 |
|
|
|
|
|
|
|
|
|
|
|
23 |
# Capture the CSV file
|
24 |
data = st.file_uploader("Upload CSV file",type="csv")
|
25 |
|