You can use the @property decorator.
class foo(object):
bar = "bar"
@property
def baz(self):
return "baz"
You can use the @property decorator.
class foo(object):
bar = "bar"
@property
def baz(self):
return "baz"