Re: Difference between 'imp' and 'importlib'

2012-04-20 Thread Eric Snow
On Fri, Apr 20, 2012 at 1:30 AM, Frank Millman wrote: > Hi all > > I need the ability to execute a function by parsing a string containing the > full path to the function. The string is multi-dotted. The last element is > the function name, the second-last is the name of the module containing the

Difference between 'imp' and 'importlib'

2012-04-20 Thread Frank Millman
Hi all I need the ability to execute a function by parsing a string containing the full path to the function. The string is multi-dotted. The last element is the function name, the second-last is the name of the module containing the function, and the balance is the path to the module. I have