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?
|
feedback
|
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
To get the directory to look for changes. | |||
feedback
|
|
As the other answers have said, the best way to do this is with For example, say you have two files (both of which are on your PYTHONPATH):
and
Running foo.py will give the output:
HOWEVER if you try to run bar.py on its own, you will get:
Hope this helps. This caveat cost me a lot of time and confusion while testing the other solutions presented. | ||||
|
feedback
|
|
This was trivial. Each module has a Therefore, getting a directory for the module to notify it is simple as:
| |||||
feedback
|
| ||||
feedback
|