📁 projects.py
# My Projects
# Just a small display of some of my projects - feel free to check out my
# Github to view more!
class Projects:
author = "Circu1t"
def __init__(self):
self.projects = {
"Password Manager": "🔗 View Project",
"File Organiser": "🔗 View Project",
"Finance Manager": "🔗 Coming Soon"
}
def show(self):
for name, status in self.projects.items():
print(f"{'{'}name{'}'}: {'{'}status{'}'}")
Projects().show()