-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc_page.py
29 lines (22 loc) · 912 Bytes
/
doc_page.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
import streamlit as st
# import webbrowser
url = 'https://github.com/Hafiz408/My-Doctor'
def doc():
st.balloons()
st.title("Hello guys !!")
st.write("")
st.write("""
#
##### " My Doctor " is a web app created using streamlit library in python. It diagnosis the disease based on the symptoms and provides us with it's description and precautions. It uses Random Forest classifier to build the model and predicts the output.
#
##### It also offers another feature i.e. the Explore page where we can see various visuals about the diseases , symptoms and severity of them.
#
""")
cols=st.columns([3,2])
cols[0].write("""
Click the below link, for the Github repo.
https://github.com/Hafiz408/My-Doctor
""")
# github = cols[1].button("Here.")
# if github:
# webbrowser.open_new_tab(url)