> > Yes, in the above post I meant to say package where I said module. > Right now all my functions are in the __init__.py script, and I would > consider separating them out into sub-packages, if it had any rhyme or > reason, but right now that escapes me. That's mostly what I'm trying > to ask for. > > Thanks, > --Buck > <http://mail.python.org/mailman/listinfo/python-list> >
Have you thought about creating a number of new module files in your package, and importing them into __init__.py? If you do that you could hide the fact that the functions are in distinct files from outside of the package. - Casey
-- http://mail.python.org/mailman/listinfo/python-list