On Jun 6, 10:32 am, bukzor <[EMAIL PROTECTED]> wrote: > In summary: are there any good (or official) guidelines for how to > organize and separate python functions and classes into modules?
Hey bukzor, Are you familiar with the concept of packages in Python? http://docs.python.org/tut/node8.html#SECTION008400000000000000000 That should allow you to keep all of your scriptlets as separate files while still having the advantage of keeping them in a single namespace for importing. (But if you know this already, don't mind me....) -- http://mail.python.org/mailman/listinfo/python-list