vote up 4 vote down star
4

I want to detect whether module has changed. Now, using inotify is simple, you just need to know the directory you want to get notifications from.

How do I retrieve a module's path in python?

flag

64% accept rate

2 Answers

vote up 10 vote down check
import a_module
print a_module.__file__

Will actually give you the path to the .pyc file that was loaded, at least on Mac OS X. So I guess you can do

import os
path = os.path.dirname(amodule.__file__)

To get the directory to look for changes.

link|flag
vote up 2 vote down

This was trivial.

Each module has a __file__ variable that shows its relative path from where you are right now.

Therefore, getting a directory for the module to notify it is simple as:

os.path.dirname(__file__)
link|flag
1  
Almost but not quite right -- file is not "relative to where you're at right now"; when it's relative (which it will be only when there are relative paths in sys.path), it's relative to where you were when the module was loaded. – Charles Duffy Oct 29 '08 at 19:25

Your Answer

Get an OpenID
or

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