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 can I do this?
| |||
|
feedback
|
|
You could add a function to your class that looks something like this:
This looks for any properties in the class and then creates a dictionary with an entry for each property with the current instance's value. | |||||||
feedback
|
|
The properties are part of the class, not the instance. So you need to look at So the properties would be
| |||
|
feedback
|
|
For an object f, this gives the list of members that are properties:
| |||||
|
feedback
|
|
| |||
feedback
|