Hi, the differences between Python modules and packages can be explained in the following way:
- On one hand, packages hold the file __init__.py for every user-oriented code. But this does not apply to modules in runtime for any user-specific codes.
- On the other hand, a module is a file containing Python code in run time for a user-specific code. Every Python module consists of a unit namespace, with the locally extracted variables.
Hope, it was helpful. Kyle Hostile, Mbicycle