What’s the difference between a module and package in Python?
See also: What's the difference between "package" and "module"? (for other languages)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A module is a single file (or files) that are imported under one import and used.
e.g.
A package is a collection of modules in directories that give a package hierarchy.
Documentation for modules
Introduction to packages