Spaces:
Sleeping
Sleeping
File size: 372 Bytes
911d489 |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
# Main script that Streamlit runs.
# Individual pages are in the 'pages' folder.
st.set_page_config(page_title="Data Processing Interface", layout="wide")
st.title("Data Processing Interface")
# The content of this script can be minimal, as the pages are defined in separate files.
st.write("Please navigate to the sections using the sidebar.")
|