class Programmer:
def __init__(self):
self.name = "Marcos Antonio Urbanski"
self.role = ["Backend Developer"]
self.stack = ["Python", "Django", "Linux", "CI/CD"]
self.mission = "Build clean, scalable, and meaningful solutions π"
self.intro()
def intro(self):
print(f"### Hi there, I'm {self.name} π")
print(f"I'm a {' | '.join(self.role)}")
print("βοΈ Passionate about Python, Automation, and Clean Code")
print("π¦ Current project: A private video-course platform with Django")
print("π Visit: www.urbpy.com.br")
print("π‘ Let's build something amazing together!")
# Launch
urbans = Programmer()




