-
Notifications
You must be signed in to change notification settings - Fork 1
/
Home.py
39 lines (25 loc) · 1 KB
/
Home.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
import streamlit as st
from streamlit.logger import get_logger
from PIL import Image
import time, requests
LOGGER = get_logger(__name__)
def run():
st.set_page_config(
page_title="Melanee",
page_icon="👋",
)
image = Image.open('MELANEE WEB APPS.png')
st.image(image, use_column_width=True)
st.write("# Welcome to Melanee's projects! 👋")
st.sidebar.success("Select an app above.")
st.markdown(
"""
Source code of this website is shared on [Melanee'GitHub](https://github.com/Melanee-Melanee/Melanee-Deployments)
### My apps:
[DNA Count](https://melanee-melanee-melanee-deployments-home-r1hhhp.streamlit.app/dna-app)
[Diabet Estimation](https://melanee-melanee-melanee-deployments-home-r1hhhp.streamlit.app/Diabet)
[Heart Failure Prediction](https://melanee-melanee-melanee-deployments-home-r1hhhp.streamlit.app/Heart_Failure)
"""
)
if __name__ == "__main__":
run()