Spaces:
Sleeping
Sleeping
Daniel Cerda Escobar
commited on
Commit
·
8ed86f2
1
Parent(s):
39debef
Update app file
Browse files
app.py
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
x = st.slider('Select a value')
|
4 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="Piping & Instrumentation Diagram (P&ID) Object Detection ",
|
5 |
+
page_icon="🚀",
|
6 |
+
layout="wide",
|
7 |
+
initial_sidebar_state="expanded",
|
8 |
+
menu_items={
|
9 |
+
'Get Help': 'https://www.extremelycoolapp.com/help',
|
10 |
+
'Report a bug': "https://www.extremelycoolapp.com/bug",
|
11 |
+
'About': "# This is a header. This is an *extremely* cool app!"
|
12 |
+
}
|
13 |
+
)
|
14 |
+
|
15 |
x = st.slider('Select a value')
|
16 |
st.write(x, 'squared is', x * x)
|