class Bio(dict):
pass
def get_bio():
return Bio({
"π Name": "Hi, I'm Micheal Shokunbi (Mightysho)",
"π» Role": "Software Engineer | Backend & API Integration Specialist",
"π Passion": "Building scalable solutions, solving real-world problems, and driving innovation in technology",
"π Education": [
"Bachelor Degree (B.Sc) in Computer Science (Top-Up Programme) - Anchor University, Lagos",
"Higher National Diploma (HND) in Computer Engineering - Yaba College of Technology, Lagos",
"National Diploma (ND) in Computer Engineering - Yaba College of Technology, Lagos"
],
"π Core Skills": [
"RESTful APIs",
"Backend Development",
"Git & Version Control",
"Database Management",
"System Troubleshooting"
],
"π Collaboration": "Open to collaborating with global and multinational tech companies",
"π« Contact": {
"LinkedIn": "/michealshokunbi",
"Email": "michealshokunbi.official@gmail.com"
}
})
def main():
bio = get_bio()
for key, value in bio.items():
if isinstance(value, list):
print(f"{key}:")
for item in value:
print(f" - {item}")
elif isinstance(value, dict):
print(f"{key}:")
for sub_key, sub_value in value.items():
print(f" {sub_key}: {sub_value}")
else:
print(f"{key}: {value}")
if __name__ == "__main__":
main()
Tools that I use on a daily basis, or that I've used or worked (either much or a bit) with on the past