Say I got a list of dictionaries like so:
[
dict(name='Person', title='Person class'),
dict(name='Employee', title='Employee class')
]
And I want to create to classes; one named Person with an attribute title set to 'Person class' and another class called Employee with title set to 'Employee class'. The name of the class can be whatever, but the name of the attributes the class will have are known, in this case title.
What I want to end up with is a new list of dynamically created classes;
classes = [Person, Employee]
As if the class had been defined manually:
class Person:
title = 'Person class'
which can be instantiated like so :
>>> x = classes[0]()
>>> print x.title
"Person class"
And as if that wasn't bad enough I'd like to assign a method defined in a different class to the dynamically created classes:
class X:
def sum(self, a, b):
print self
return a+b
>>> x = X()
>>> x.sum(1,2)
__main__.x
3
>>> classes[0].sum = X.sum
>>> classes[0].sum(1,2)
__main__.Person
3
I know the above doesn't work - and perhaps it doesn't even make sense. But can it be done shomehow - assigning a method defined in a class to a different class?