On Wed, Aug 18, 2010 at 9:40 AM, abhijeet thatte <abhijeet.tha...@gmail.com>wrote:
> Hi, > > Thanks for the reply. But I guess it does not support nested file paths. > If user gives 'abcd' then I need to import "*/Do/Stuff/abcd*". Out of > which only *"abcd" is taken run time. Do and Stuff are fixed. * > *I got an error "*ImportError: Import by filename is not supported.". Any > solution?? > > For complex importing, you can use imp module, http://docs.python.org/library/imp.html Like this: module_desc = imp.find_module(name, [base_path]) module = imp.load_module(full_name, *module_desc) -- With best regards, Daniel Kluev
-- http://mail.python.org/mailman/listinfo/python-list