|
| 1 | +# importing libraries |
| 2 | +import numpy as np |
| 3 | +import pandas as pd |
| 4 | +import streamlit as st |
| 5 | +import streamlit.components.v1 as components |
| 6 | +from PIL import Image |
| 7 | + |
| 8 | +st.title("My Certificates") |
| 9 | +st.subheader("By Mithun G") |
| 10 | +st.subheader("All certificates and badges received are displayed here") |
| 11 | +st.markdown('<p>Have completed the courses and received certificates from various platforms</p>',unsafe_allow_html=True) |
| 12 | +text_to_marked = """<p>Certifications and badges received are:</p> |
| 13 | + <ul> |
| 14 | + <li>Coursera - Google Crash Course on Python |
| 15 | + <li>Coursera - Google Data Analytics |
| 16 | + <li>IBM - Machine Learning with Python |
| 17 | + <li>LinkedIn Learning - Data Science Essentials Part - 1 |
| 18 | + <li>LinkedIn Learning - Statistics Foundations(4 parts) |
| 19 | + <li>Kaggle - Micro Courses |
| 20 | + </ul>""" |
| 21 | +st.markdown(text_to_marked,unsafe_allow_html=True) |
| 22 | +st.text("---------------------------------------------------------------------------------------") |
| 23 | +st.text("Certificate Image:") |
| 24 | +st.sidebar.header("Select the Certificate platform to view") |
| 25 | +selected = st.sidebar.selectbox('Platforms:', ['None','Coursera','IBM','LinkedIn Learning','Kaggle']) |
| 26 | + |
| 27 | +if 'None' in selected: |
| 28 | + st.markdown("<h4>To view the certificates, select one from the slider</h4>",unsafe_allow_html=True) |
| 29 | + |
| 30 | +if 'Coursera' in selected: |
| 31 | + new_select = st.sidebar.selectbox('Course:',['Google Crash Course on Python','Google Data Analytics']) |
| 32 | + if 'Google Crash Course on Python' in new_select: |
| 33 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/blob/main/Coursera/Google%20Crash%20Course%20Certificate.pdf'>GitHub Link</a>",unsafe_allow_html=True) |
| 34 | + st.markdown("<a href='coursera.org/verify/T7F6DP9J67B8'>Credentials</a>",unsafe_allow_html=True) |
| 35 | + google = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Coursera\\google-image.png") |
| 36 | + st.image(google,caption="Crash Course on Python") |
| 37 | + if 'Google Data Analytics' in new_select: |
| 38 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/tree/main/Google%20Data%20Analytics'>GitHub Link</a>",unsafe_allow_html=True) |
| 39 | + st.markdown("<a href='http://coursera.org/verify/87PUUMFWYUQU'>Credentials</a>",unsafe_allow_html=True) |
| 40 | + google_1 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Google Data Analytics\\data analytics image\\0001.jpg") |
| 41 | + google_2 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Google Data Analytics\\data analytics image\\0002.jpg") |
| 42 | + st.image(google_1,caption="Foundations: Data, Data, Everywhere") |
| 43 | + st.image(google_2,caption="Ask Questions to make Data Driven decisions") |
| 44 | + |
| 45 | +if 'IBM' in selected: |
| 46 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/tree/main/IBM%20ML'>GitHub Link</a>",unsafe_allow_html=True) |
| 47 | + st.markdown("<a href='https://courses.cognitiveclass.ai/certificates/7639240d52d34dd98446654a7809f46b'>Credentials</a>",unsafe_allow_html=True) |
| 48 | + ibm = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\IBM ML\\Machine Learning with Python\\ML-image.png") |
| 49 | + st.image(ibm,caption="Machine Learning with Python - IBM") |
| 50 | + |
| 51 | +if 'LinkedIn Learning' in selected: |
| 52 | + new_select_2 = st.sidebar.selectbox('Course:',['Data Science Essentials - Part 1','Statistics Foundations']) |
| 53 | + if 'Data Science Essentials - Part 1' in new_select_2: |
| 54 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/tree/main/Linkedin%20Learning/Data%20Science%20Essential%20Training%20Part%201'>GitHub Link</a>",unsafe_allow_html=True) |
| 55 | + st.markdown("<a href='https://www.linkedin.com/learning/certificates/033d39c77d09348ebb5cc3c489bf5395573f14361f39b9e3a7a374d94cc8871b?trk=share_certificate'>Credentials</a>",unsafe_allow_html=True) |
| 56 | + ll1 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Linkedin Learning\\Data Science Essential Training Part 1\\essential-image.png") |
| 57 | + st.image(ll1,caption="Data Science Essentials - Part 1") |
| 58 | + if 'Statistics Foundations' in new_select_2: |
| 59 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/tree/main/Linkedin%20Learning/Statistics%20Foundations'>GitHub Link</a>",unsafe_allow_html=True) |
| 60 | + st.markdown("<a href='https://www.linkedin.com/learning/certificates/7e4ba218edbcf2c807633e35f81272ccf801ea1883ef3191b13d6311fdf03e98?trk=share_certificate'>Credentials</a>",unsafe_allow_html=True) |
| 61 | + ll2 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Linkedin Learning\\Statistics Foundations\\1.jpg") |
| 62 | + ll3 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Linkedin Learning\\Statistics Foundations\\2.jpg") |
| 63 | + ll4 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Linkedin Learning\\Statistics Foundations\\3.jpg") |
| 64 | + st.image(ll2,caption="Statistics Foundations:1") |
| 65 | + st.image(ll3,caption="Statistics Foundations:2") |
| 66 | + st.image(ll4,caption="Statistics Foundations:3") |
| 67 | + |
| 68 | +if 'Kaggle' in selected: |
| 69 | + st.markdown("<a href='https://github.com/Mithun162001/My-Certificates/tree/main/Kaggle'>GitHub Link</a>",unsafe_allow_html=True) |
| 70 | + st.markdown("<a href='https://www.kaggle.com/learn/certification/mithun162001/python'>Credentials</a>",unsafe_allow_html=True) |
| 71 | + kaggle_1 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Kaggle\\Kaggle Python Certficate.png") |
| 72 | + kaggle_2 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Kaggle\\Kaggle Pandas Certficate.png") |
| 73 | + kaggle_3 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Kaggle\\Mithun G - Data Visualization.png") |
| 74 | + kaggle_4 = Image.open("C:\\Users\\mithun\\OneDrive\\Desktop\\My-Certificates\\Kaggle\\Kaggle - Intro to Machine Learning.png") |
| 75 | + |
| 76 | + st.image(kaggle_1, caption="Python") |
| 77 | + st.image(kaggle_2, caption='Pandas') |
| 78 | + st.image(kaggle_3, caption='Data visualization') |
| 79 | + st.image(kaggle_4, caption='Intro to Machine Learning') |
| 80 | + |
0 commit comments