Aufruffunktion, deren Name in einer Variablen ist

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