Update app.py
Browse files
app.py
CHANGED
@@ -155,11 +155,16 @@ st.sidebar.title("🔍 Data Fields")
|
|
155 |
for field, description in data_fields.items():
|
156 |
st.sidebar.markdown(f"{field}: {description}")
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
164 |
|
165 |
st.stop()
|
|
|
155 |
for field, description in data_fields.items():
|
156 |
st.sidebar.markdown(f"{field}: {description}")
|
157 |
|
158 |
+
import streamlit as st
|
159 |
+
|
160 |
+
# Main content of your Streamlit app goes here
|
161 |
+
|
162 |
+
# Copyright statement at the bottom
|
163 |
+
st.markdown(
|
164 |
+
"""
|
165 |
+
Developed by [Rasmo Wanyama](https://www.linkedin.com/in/rasmo-/).
|
166 |
+
""",
|
167 |
+
unsafe_allow_html=True
|
168 |
+
)
|
169 |
|
170 |
st.stop()
|