Adding Dynamically Named Methods to Python Classes

Adding Dynamically Named Methods to Python Classes

I recently wanted to dynamically add methods to a Python class based on a list of relationships. The model class, Animal, was related to a number of description classes like Color and Sound. For a given animal, I wanted to be able to easily get the values for its...