File size: 486 Bytes
39debef
 
8ed86f2
 
 
 
 
 
 
 
 
 
 
 
39debef
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st

st.set_page_config(
    page_title="Piping & Instrumentation Diagram (P&ID) Object Detection ",
    page_icon="πŸš€",
    layout="wide",
    initial_sidebar_state="expanded",
    menu_items={
        'Get Help': 'https://www.extremelycoolapp.com/help',
        'Report a bug': "https://www.extremelycoolapp.com/bug",
        'About': "# This is a header. This is an *extremely* cool app!"
    }
)

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)