rianders commited on
Commit
911d489
1 Parent(s): 5c8cbfc

first app.py update

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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
+