Niharmahesh commited on
Commit
9c97ffe
·
verified ·
1 Parent(s): 629a81f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -6
app.py CHANGED
@@ -197,15 +197,19 @@ def display_apps():
197
 
198
  def display_certifications():
199
  st.markdown('## Certifications')
 
200
  certifications = [
201
- {"path": 'mlds-pyt.png', "title": "Python for Data Science and Machine Learning Bootcamp"},
202
- {"path": 'sql_basic certificate (1).png', "title": "HackerRank SQL (Basic)"},
203
- {"path": 'aws.png', "title": "AWS Cloud Practitioner Udemy Course by Stephane Maarek"},
204
- {"path": 'AWS Certified Cloud Practitioner certificate.png', "title": "AWS Certified Cloud Practitioner"}
205
  ]
206
 
207
- for certification in certifications:
208
- st.image(certification["path"], caption=certification["title"], width=150)
 
 
 
209
 
210
  def display_social_media():
211
  st.markdown('## Social Media')
 
197
 
198
  def display_certifications():
199
  st.markdown('## Certifications')
200
+
201
  certifications = [
202
+ {"title": "Python for Data Science and Machine Learning Bootcamp", "issuer": "Udemy", "date": "2023", "skills": "Python, Data Science, Machine Learning"},
203
+ {"title": "HackerRank SQL (Basic)", "issuer": "HackerRank", "date": "2023", "skills": "SQL, Database Management"},
204
+ {"title": "AWS Cloud Practitioner", "issuer": "Udemy", "date": "2023", "skills": "Cloud Computing, AWS Services"},
205
+ {"title": "AWS Certified Cloud Practitioner", "issuer": "Amazon Web Services", "date": "2023", "skills": "Cloud Architecture, AWS Best Practices"}
206
  ]
207
 
208
+ for cert in certifications:
209
+ with st.expander(cert["title"]):
210
+ st.write(f"**Issuer:** {cert['issuer']}")
211
+ st.write(f"**Date:** {cert['date']}")
212
+ st.write(f"**Skills:** {cert['skills']}")
213
 
214
  def display_social_media():
215
  st.markdown('## Social Media')