Función de llamar cuyo nombre está en una variable

module = __import__('foo')
func = getattr(module, 'bar')
func()
Bright Badger