The topic page for Models has a paragraph which says:
Once you have defined your models, you need to tell Django you’re going to use those models. Do this by editing your settings file and changing the INSTALLED_APPS setting to add the name of the module that contains your models.py .
While it is technically correct that a package is a special type of module, might it be more helpful to say “… name of the package that contains …”?
If folks agree, I’d be happy to create a ticket and a PR.
That’s a little vague, isn’t it? Let me elaborate with some more explicit rationale. In my experience, the percentage of Python programmers who are consciously aware that packages are also modules is not that high. This is partly due, perhaps, to the fact that in quite a few places (including the PEPs) the official Python documentation refers to “modules and packages” as well as “modules or packages” as if “modules” by itself would not also include packages. Because of this, in combination with the fact that the Django tutorial uses “package” (not “package module” or “module”) when describing the directory containing a Django application, I wouldn’t be surprised if more than one reader might stumble when reading the paragraph quoted above, wondering which “module” the documentation could be referring to. I don’t see any downsides to using the more specific term here, but if there are any, I’m confident that someone will point them out.