What is __init__.py for in a python source directory?
|
2
|
|||||||||
|
|
|
Its part of a package. Here's the documentation.
|
||
|
|
|
|
The Furthermore, this is the first file to be loaded in a module, so you can use it to execute code that you want to run each time a module is loaded, or specify the submodules to be exported. |
||
|
|
|
|
It facilitates importing other python files. When you placed this file in a directory (say stuff)containing other py files, then you can do something like import stuff.other.
Without this init.py inside the directory stuff, you couldn't import other.py, because Python doesn't know where the source code for stuff is and unable to recognize it as a package. |
||
|
|
