Need to import stuff

Daniel Kluev dan.kluev at gmail.com
Wed Aug 18 00:39:06 EDT 2010


On Wed, Aug 18, 2010 at 9:40 AM, abhijeet thatte
<abhijeet.thatte at 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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20100818/472d1e62/attachment.html>


More information about the Python-list mailing list