Popular recipes tagged "inotify"http://code.activestate.com/recipes/tags/inotify/2013-08-12T14:39:57-07:00ActiveState Code RecipesHigh level inotify wrapper (Python)
2008-09-21T05:17:23-07:00Louis RIVIEREhttp://code.activestate.com/recipes/users/4035877/http://code.activestate.com/recipes/576377-high-level-inotify-wrapper/
<p style="color: grey">
Python
recipe 576377
by <a href="/recipes/users/4035877/">Louis RIVIERE</a>
(<a href="/recipes/tags/inotify/">inotify</a>, <a href="/recipes/tags/linux/">linux</a>, <a href="/recipes/tags/system/">system</a>).
Revision 4.
</p>
<p>This is an exemple to show how to use the inotify module, it could be very usefull unchanged though.</p>
<p>A Watcher instance let you define callbacks for any event that occur on any file or directory and subdirectories.</p>
<p>The inotify module is from <a href="http://code.activestate.com/recipes/576375/">Recipe 576375</a></p>
Low level inotify wrapper (Python)
2013-08-12T14:39:57-07:00Louis RIVIEREhttp://code.activestate.com/recipes/users/4035877/http://code.activestate.com/recipes/576375-low-level-inotify-wrapper/
<p style="color: grey">
Python
recipe 576375
by <a href="/recipes/users/4035877/">Louis RIVIERE</a>
(<a href="/recipes/tags/ctypes/">ctypes</a>, <a href="/recipes/tags/inotify/">inotify</a>, <a href="/recipes/tags/linux/">linux</a>, <a href="/recipes/tags/system/">system</a>).
Revision 10.
</p>
<p>This module is meant to be as simple and straightforward as it gets.</p>