Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
# Set the page title
|
| 4 |
+
st.set_page_config(page_title="Mechanical Engineer Certificate Guide")
|
| 5 |
+
|
| 6 |
+
# Heading
|
| 7 |
+
st.title("Certificate Guide for Mechanical Engineers")
|
| 8 |
+
|
| 9 |
+
st.write("""
|
| 10 |
+
Select your branch of interest in Mechanical Engineering,
|
| 11 |
+
and find the certificates that are valuable in today's market!
|
| 12 |
+
""")
|
| 13 |
+
|
| 14 |
+
# Branch options
|
| 15 |
+
branches = {
|
| 16 |
+
"QA/QC (Quality Assurance / Quality Control)": [
|
| 17 |
+
"CSWIP (Certified Welding Inspector)",
|
| 18 |
+
"API 570 (Piping Inspector)",
|
| 19 |
+
"API 653 (Tank Inspection Certification)",
|
| 20 |
+
"NDT Level II or III (Non-Destructive Testing)",
|
| 21 |
+
"ISO 9001:2015 Lead Auditor"
|
| 22 |
+
],
|
| 23 |
+
"Design Engineering": [
|
| 24 |
+
"Certified SolidWorks Professional (CSWP)",
|
| 25 |
+
"Certified Professional in Creo (PTC Certification)",
|
| 26 |
+
"AutoDesk Certified Professional (AutoCAD, Inventor)",
|
| 27 |
+
"GD&T Certification (ASME Y14.5)",
|
| 28 |
+
"ANSYS Certification (Simulation and FEA)"
|
| 29 |
+
],
|
| 30 |
+
"Management / Project Management": [
|
| 31 |
+
"PMP (Project Management Professional)",
|
| 32 |
+
"Six Sigma Green Belt / Black Belt",
|
| 33 |
+
"Primavera P6 Certification",
|
| 34 |
+
"Certified ScrumMaster (CSM)",
|
| 35 |
+
"Lean Management Certification"
|
| 36 |
+
],
|
| 37 |
+
"Maintenance Engineering": [
|
| 38 |
+
"CMRP (Certified Maintenance and Reliability Professional)",
|
| 39 |
+
"Certified Plant Maintenance Manager (CPMM)",
|
| 40 |
+
"SAP PM Module Certification",
|
| 41 |
+
"Root Cause Analysis (RCA) Certification"
|
| 42 |
+
],
|
| 43 |
+
"Health, Safety, and Environment (HSE)": [
|
| 44 |
+
"NEBOSH International General Certificate (IGC)",
|
| 45 |
+
"IOSH Managing Safely",
|
| 46 |
+
"OSHA 30-Hour Certification",
|
| 47 |
+
"ISO 45001 Lead Auditor"
|
| 48 |
+
]
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
# User selection
|
| 52 |
+
selected_branch = st.selectbox("Select Mechanical Engineering Branch", list(branches.keys()))
|
| 53 |
+
|
| 54 |
+
# Show certificates
|
| 55 |
+
st.subheader(f"Recommended Certificates for {selected_branch}:")
|
| 56 |
+
for cert in branches[selected_branch]:
|
| 57 |
+
st.write(f"- {cert}")
|
| 58 |
+
|
| 59 |
+
# Footer
|
| 60 |
+
st.markdown("---")
|
| 61 |
+
st.caption("App created to guide Mechanical Engineers in choosing certifications that are valuable globally.")
|