vote up 9 vote down star
2

What is __init__.py for in a python source directory?

flag

70% accept rate
Please edit the title: init.py -> init.py – codeape Jan 15 at 20:15
Sorry, I can't see the difference. <underscore> <underscore> "init.py" <underscore> <underscore>, no? – Mat Jan 15 at 20:19
The underscores are before the py extension. – Epitaph Jan 15 at 20:23
Duh, I've just been sitting here flicking through the history of my original and NXC's changed version and I still couldn't see it! – Mat Jan 15 at 20:25

3 Answers

vote up 15 vote down check

Its part of a package. Here's the documentation.

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. In the simplest case, __init__.py can just be an empty file, but it can also execute initialization code for the package or set the __all__ variable, described later.

link|flag
vote up 5 vote down

The __init__.py file makes Python treat directories containing it as modules.

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.

link|flag
vote up 2 vote down

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.

root\
    stuff\
         other.py

    morestuff\
         another.py

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.