up vote 46 down vote favorite
14
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 57 down vote accepted
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|improve this answer
this answers how to get the path of the module you import, but not of the module/script you are in (for the script you're running, __file__ is not a full path, it is relative). For the file I'm in I had to import another module from the same directory and do as shown here. Does anyone know a more convenient way? – Ben Bryant Jan 19 at 18:11
feedback

As the other answers have said, the best way to do this is with __file__ (demonstrated again below). However, there is an important caveat, which is that __file__ does NOT exist if you are running the module on its own (i.e. as __main__).

For example, say you have two files (both of which are on your PYTHONPATH):

#/path1/foo.py
import bar
print bar.__file__

and

#/path2/bar.py
import os
print os.getcwd()
print __file__

Running foo.py will give the output:

/path1        # "import bar" causes the line "print os.getcwd()" to run
/path2/bar.py # then "print __file__" runs
/path2/bar.py # then the import statement finishes and "print bar.__file__" runs

HOWEVER if you try to run bar.py on its own, you will get:

/path2                              # "print os.getcwd()" still works fine
Traceback (most recent call last):  # but __file__ doesn't exist if bar.py is running as main
  File "/path2/bar.py", line 3, in <module>
    print __file__
NameError: name '__file__' is not defined 

Hope this helps. This caveat cost me a lot of time and confusion while testing the other solutions presented.

link|improve this answer
feedback

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|improve this answer
2  
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
feedback
import os
path = os.path.abspath(__file__)
dir_path = os.path.dirname(path)
link|improve this answer
doesn't work on my Linux python 2.6 since __file__ is just dir/test.py, abspath involves the cwd to complete the pathname which is not the desired result, but if you import a module then m.__file__ gives the desired result. – Ben Bryant Jan 19 at 17:41
feedback

Your Answer

 
or
required, but never shown

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