Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been reading about the function of __init__.py file. It is said that we need an empty __init__.py file in the folder which contains modules, so that these modules can be imported. However, I tried adding a folder path to PYTHONPATH (Environment Variable in Windows 7). Although this folder does not contain an __init__.py file, I can still import the modules from that folder. Could you please explain how these modules can be imported without the existence of an __init__.py?

Thanks,

Best regards

share|improve this question

3 Answers

up vote 5 down vote accepted

__init__.py turns a folder into a package. This is useful to create a sort of hierarchy of modules, where you can have import-statements like this:

import mymodule.cool.stuff

This is not possible without packages.

share|improve this answer
Ok, suppose there is a folder: "A". And "A" has an __init__.py. But "A" is not in the PYTHONPATH. Can I import a module from "A" folder? Does Python search all folders in my computer to know if they have "__init__.py"s in them? I mean how does python know the path to "A"? – alwbtc May 6 '11 at 11:11
2  
@steve: You still have to add the path to the package to your PYTHONPATH. Python does not search your entire computer for folders containing __init__.py. – Björn Pollex May 6 '11 at 11:15

Yes, this works, as you can tell. The reason for the empty __init__.py file is to mark sub-folders as folders containing modules.

So a folder in PYTHONPATH is ok to have modules in it, but any subfolders of those folders have to have a __init__.py file in them to be able to import modules from them.

share|improve this answer
__init__.py does not have to be empty. – Ignacio Vazquez-Abrams May 6 '11 at 11:09
@Ignacio: Neither does it have to have something in it if its only task is to mark a folder as having modules. The OP mentioned empty __init__.py files. – quamrana May 6 '11 at 11:17

If a directory (folder) contains a __init__.py file then it becomes a package. What you thought you read was not strictly correct, as you found. A package can be imported as if it was a module by itself, and any code in __init__.py is run, although it is often empty. Packages are a way of grouping multiple modules together, and you can load them using:

import package-name.module-name

Packages can also be nested, and often are. Look in the Lib directory under your Python software directory for many examples.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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