Spaces:
Sleeping
Sleeping
Commit
·
c58d38b
1
Parent(s):
bd47de6
Added basic app
Browse files- app.py +13 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
def main():
|
4 |
+
st.title("New Space for CCS 229")
|
5 |
+
st.caption("A sample space for our CCS 229 Intelligent Systems course.")
|
6 |
+
|
7 |
+
val = st.slider('Sample Slider', min_value=0, max_value=50)
|
8 |
+
|
9 |
+
st.write(f"You have chosen value {val}.")
|
10 |
+
|
11 |
+
|
12 |
+
if __name__ == "__main__":
|
13 |
+
main()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
streamlit==1.42.0
|