How can I get all property names of a python class including those properties inherited from super classes?
class A(object): def getX(self
You can use dir():
dir()
for attr_name in dir(B): attr = getattr(B, attr_name) if isinstance(attr, property): print attr