new_space_test / app.py
hydraadra112's picture
Added basic app
c58d38b
raw
history blame contribute delete
318 Bytes
import streamlit as st
def main():
st.title("New Space for CCS 229")
st.caption("A sample space for our CCS 229 Intelligent Systems course.")
val = st.slider('Sample Slider', min_value=0, max_value=50)
st.write(f"You have chosen value {val}.")
if __name__ == "__main__":
main()