July 24, 2007
4:49 p.m.
Jim Fulton wrote:
Does anyone know if there are existing rules for package names? I can't find them if there are. ...
Well, there is PEP 8, which has this to say on the subject: "Package and Module Names "Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged." Steve