Spaces:
Sleeping
Sleeping
first app.py update
Browse files
app.py
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
# Main script that Streamlit runs.
|
| 4 |
+
# Individual pages are in the 'pages' folder.
|
| 5 |
+
st.set_page_config(page_title="Data Processing Interface", layout="wide")
|
| 6 |
+
st.title("Data Processing Interface")
|
| 7 |
+
|
| 8 |
+
# The content of this script can be minimal, as the pages are defined in separate files.
|
| 9 |
+
st.write("Please navigate to the sections using the sidebar.")
|
| 10 |
+
|