Función de llamadas de Python desde la cadena
result = getattr(model_or_object, 'function')('arguments')
Talented Tern
result = getattr(model_or_object, 'function')('arguments')
import foo
method_to_call = getattr(foo, 'bar')
result = method_to_call()
module = __import__('foo')
func = getattr(module, 'bar')
func()
getattr(obj, 'func')('foo', 'bar', 'args')