Package
A folder of related modules you can import; also a library you install with pip.
# install once at the terminal: pip install requests
import requests # a third-party package
from urllib import request # a standard-library package
Where this shows up in real Python
Almost every real project pulls in packages — for HTTP, data, or web apps — installed with pip and listed in requirements.txt.
Commonly used Package tools
pip install name— install a package from PyPIimport name— use an installed packagefrom pkg import module— import a package’s modulepip show name— see a package’s details
Official documentation: Python Tutorial: Packages