-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamlit_app.py
167 lines (151 loc) · 6.92 KB
/
streamlit_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import streamlit as st
from streamlit_elements import elements, mui, dashboard
import base64
from io import BytesIO
def image_to_base64(img_path):
with open(img_path, "rb") as img_file:
return base64.b64encode(img_file.read()).decode("utf-8")
# Load and convert images to base64
protein_calc_img = image_to_base64("./img/st_protein_calc.png")
lottery_heatmap_img = image_to_base64("./img/st_lottery_heatmap.png")
market_matrix_img = image_to_base64("./img/st_market_matrix.png")
csv_explorer_img = image_to_base64("./img/st_csv_explorer.png")
gfc_explorer_img = image_to_base64("./img/st_gfc_explorer.png")
address_autofill_img = image_to_base64("./img/st_address_autofill.png")
st.title("Streamlit Doodles")
with st.container():
st.write(
"This is a simple Streamlit app to showcase a number of other Streamlit apps that I've built with Cursor.ai"
)
st.write("More about me at [scottgoley.com](https://scottgoley.com/)")
st.write("---")
with elements("dashboard"):
layout = [
# Parameters: element_identifier, x_pos, y_pos, width, height, [item properties...]
dashboard.Item("app1", 0, 0, 2, 3),
dashboard.Item("app2", 2, 0, 2, 3),
dashboard.Item("app3", 0, 2, 2, 3),
dashboard.Item("app4", 2, 2, 2, 3),
dashboard.Item("app5", 0, 4, 2, 3),
dashboard.Item("app6", 2, 4, 2, 3),
]
with dashboard.Grid(layout):
with mui.Card(key="app1", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{protein_calc_img}",
alt="Protein Calculator thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 1: Protein Calculator", variant="h6"),
mui.Typography(
"This app allows you to calculate your target daily protein intake as well as understand the foods, quantities, and costs associated with meeting that target.",
sx={"mb": 2},
),
mui.Button(
"Launch Protein Calculator",
href="https://sg-protein-calc.streamlit.app/",
target="_blank",
),
)
with mui.Card(key="app2", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{lottery_heatmap_img}",
alt="Lottery Heatmap thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 2: Lottery Heatmap", variant="h6"),
mui.Typography(
"This app allows you to explore the historical data of either the Powerball or Mega Millions lottery.",
sx={"mb": 2},
),
mui.Button(
"Launch Lottery Heatmap",
href="https://sg-lottery-heatmap.streamlit.app/",
target="_blank",
),
)
with mui.Card(key="app3", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{market_matrix_img}",
alt="CSV Explorer thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 3: Market Matrix", variant="h6"),
mui.Typography(
"""This app illustrates the performance of the S&P 500
over the long term and the convergence to its long term
return regardless of starting period.""",
sx={"mb": 2},
),
mui.Button(
"Launch Market Matrix",
href="https://sg-market-matrix.streamlit.app/",
target="_blank",
),
)
with mui.Card(key="app4", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{csv_explorer_img}",
alt="CSV Explorer thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 4: CSV Explorer", variant="h6"),
mui.Typography(
"This app allows you to explore a CSV file with autogenerated filters based on the upload's content.",
sx={"mb": 2},
),
mui.Button(
"Launch CSV Explorer",
href="https://sg-csv-explorer.streamlit.app/",
target="_blank",
),
)
with mui.Card(key="app5", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{gfc_explorer_img}",
alt="GFC Explorer thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 5: GFC Explorer", variant="h6"),
mui.Typography(
"This app allows you to explore the Home Price Index dataset from The Federal Housing Finance Agency see that data visualized a few different ways.",
sx={"mb": 2},
),
mui.Button(
"Launch GFC Explorer",
href="https://sg-gfc-explorer.streamlit.app/",
target="_blank",
),
)
with mui.Card(key="app6", sx={"height": "100%"}):
mui.CardMedia(
component="img",
height="140",
image=f"data:image/png;base64,{address_autofill_img}",
alt="Address Autofill thumbnail",
)
mui.CardContent(
mui.Typography("Streamlit App 6: Address Autofill", variant="h6"),
mui.Typography(
"This app allows you to input an address with suggestions and get a map of the selected location.",
sx={"mb": 2},
),
mui.Button(
"Launch Address Autofill",
href="https://sg-address-autofill.streamlit.app/",
target="_blank",
),
)
def handle_layout_change(updated_layout):
print(updated_layout)
st.write("---")