Função de chamada cujo nome está em uma variável

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