Funkcja wywoływania, której nazwa jest w zmiennej

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