I can see first-class member variables using self.__dict__, but I\'d like also to see a dictionary of properties, as defined with the @property decorator. How
self.__dict__
dir(obj) gives a list of all attributes of obj, including methods and attributes.
dir(obj)
obj