Answer the question
In order to leave comments, you need to log in
How does __init__.py work?
Quoting the documentation: https://docs.python.org/3/tutorial/modules.html#pa...
The __init__.py files are required to make Python treat the directories as containing packages; this is done to prevent directories with a common name, such as string, from unintentionally hiding valid modules that occur later on the module search path
package1/
sub_package1/
module1.py
sub_package2/
module2.py
Answer the question
In order to leave comments, you need to log in
1. Python can search for modules in several folders in order of priority (including paths in PYTHON_PATH).
2. Imagine that on one of the paths you have this:
and on the other, like this:
3. You import the string module, but the directory with the string folder is processed first. And you have, for example, not a Python code at all, but some kind of documentation. You actually want to import string.py from the second folder, but the interpreter will think that you need to take the directory, and will give an error (saying that they say this is not a valid package or something like that).
4. To prevent this from happening, the developers decided that you should explicitly mark that you want the folder to be considered a package. This is the same as marking files with python code with the .py extension - you don't expect the interpreter to treat .txt files as python modules, do you? The same goes for the folder.
Well, yes, as Vyacheslav already mentioned , __init__.py does not have to be empty at all, for example, there may be re-exports.
After re-reading the comments, I think that the correct answer is:
yes, because the developers decided to do just that, they decided to make this file a package marker ... and now everyone is used to
it just like curly braces, begin / end, semicolons in other languages. .. without which the python does, but what prevents other languages? for the same reason
If there is no __init__.py in the folder, then it is not a package.
Roughly speaking, __init__.py is needed in order to be able to load exactly the package and the package operation model to function.
import package1
from package1.sub_package1 import *
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question