My class objects need to see the get_all_attributes, get_values, etc. methods.

    1 answer 1

    I figured it out

    @property def entity(self): return Entity(self) 

    And then you can use

     p.entity.get_values() p.entity.get_all_attributes()