Re: unable to import modules from other folders

2008-06-10 Thread morton . thomas
C:\MyDocs needs to be in the sys.path variable for python to include it in it's search for modules Try this: import sys sys.path.append('C:\MyDocs') If you are packaging your program for reuse or later move that folder bear in mind it will *break* A better method would be to place the module in

unable to import modules from other folders

2008-06-10 Thread moijes12
Hi friends I have a module "bigbee" in folder C:\MyDocs\BigBee and another module "foo" needs to import from this.however, "foo" is in D:\foo. foo.py : from bigbee import * The error i get is: ImportError: No Module bigbee. Please provide a solution. -- http://mail.python.org/mailman/listinfo