> I would like to organize them into directory structure in > which there is a 'main' directory, and under it directories for > specific sub-tasks, or sub-experiments, I'm running (let's call them > 'A', 'B', 'C'). > Is there a neat clean way of achieving the code organization? >
This is a kind of a frequently asked question at c.l.p and every programmer I guess has to go through this problem. If you look around c.l.p you will find that one of the good ways to solve this problem with the python interpretor <2.5 is: >>> import sys >>> sys.path.append(os.path.abspath(os.pardir)) But, if you are using Python 2.5, you are saved. Straight from the documentation: <snip> Starting with Python 2.5, in addition to the implicit relative imports described above, you can write explicit relative imports with the from module import name form of import statement. These explicit relative imports use leading dots to indicate the current and parent packages involved in the relative import. From the surround module for example, you might use: from . import echo from .. import Formats from ..Filters import equalizer </snip> HTH. -- O.R.Senthil Kumaran http://uthcode.sarovar.org -- http://mail.python.org/mailman/listinfo/python-list