Le 26/12/2015 17:54, Steve Litt a écrit :
> You bring up two different points:
>
> 1) A matter of style (to mix or not to mix executables)
>
> 2) A matter of practicality (how bad is it to run a daemon that
> includes piped executables).
In my opinion it is the same. If you use python-inotify, you invoke
the inotify system-call programatically (through a function call or an
object); otherwise you rely on another process to do it and pipe you the
events. The last solution is fine for designing and testing the thing
but not really for a production daemon.
Didier