Husband, dad, dabbler in things...
too many hobbies, bug bounty, iOS app development, building tools in python, cloud technologies, bootrunning, photography...
check out https://bootrunner.com and https://www.moorspots.com
import this
class Person:
"""Who am I, what am I doing here?"""
def __init__(self, name):
self.name = name
@property
def whoami(self):
"""Maybe the answer is here?"""
print(f"Hi, I'm {self.name}!")
if __name__ == "__main__":
me = Person("thiezn")
print(me.whoami)