= Pyinotify short examples = || '''Examples Files''' || '''Descriptions''' || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/loop.py loop.py] || Minimal example, should be read first || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/daemon.py daemon.py] || Simple example demonstrating how to daemonize pyinotify || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/chain.py chain.py] || Show how to chain together several processing methods for the same event || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/exclude.py exclude.py] and [http://github.com/seb-m/pyinotify/tree/master/python2/examples/exclude.lst exclude.lst] || Show how to exclude a list of files from being watched || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/not_quiet.py not_quiet.py] || Demonstrate how to raise Exceptions on errors || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/stats.py stats.py] || Simple example for displaying statistics, but it is a pretext for using processing methods, as well as chaining and callback functions on notifier.loop() || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/stats_threaded.py stats_threaded.py] || Has the same purpose than stats.py but use a separate thread instead, this demonstrate how to use !ThreadedNotifier || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/transient_file.py transient_file.py] and [http://github.com/seb-m/pyinotify/tree/master/python2/examples/transient_file.sh transient_file.sh] || Used for watching a transient file || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/tutorial_asyncnotifier.py tutorial_asyncnotifier.py] || Simple example using !AsyncNotifier class as notifier (relies over [http://docs.python.org/library/asyncore.html asyncore] module) || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/tutorial_notifier.py tutorial_notifier.py] and [http://github.com/seb-m/pyinotify/tree/master/python2/examples/tutorial_threadednotifier.py tutorial_threadednotifier.py] || Used as examples in the [http://trac.dbzteam.org/pyinotify/wiki/Tutorial tutorial] || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/autocompile.py autocompile.py] || Can be used to recompile a target automatically when monitored files are modified. || || [http://github.com/seb-m/pyinotify/tree/master/python2/examples/coalesce.py coalesce.py] || Coalescing events. || Directly browse [http://github.com/seb-m/pyinotify/tree/master/python2/examples examples files] from Pyinotify's repository.