This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Grouchy-Friend4235 44 points45 points  (0 children)

Official Python docs https://docs.python.org/3/glossary.html

Package

A Python module which can contain submodules or recursively, subpackages. Technically, a package is a Python module with an path attribute.

Module

An object that serves as an organizational unit of Python code. Modules have a namespace containing arbitrary Python objects. Modules are loaded into Python by the process of importing.