Modules, Packages and Imports
How to compartmentalize larger applications into functional blocks.
Modules
Modules are simply ".py" files that contain python definitions and functions. Those functions c...
Packages
Packages are usually a nested array of modules grouped together that represent an entire applicat...
Imports
Ok so you have your code in separate files. You may have even installed a few packages to exten...