Update TODO

This commit is contained in:
chrys87 2016-07-11 15:06:50 +02:00 committed by GitHub
parent 837a7b0306
commit e57a91307a

9
TODO
View File

@ -6,8 +6,7 @@ ToDos in Priority order:
commands -> a new thread should spawned from inputloop
updatescreen -> maybe we could watch it with inotify vsca should support polling
https://github.com/seb-m/pyinotify/wiki/Tutorial
# Example: prints statistics.
#
import pyinotify
class Identity(pyinotify.ProcessEvent):
@ -15,7 +14,6 @@ class Identity(pyinotify.ProcessEvent):
p = event.pathname
print(p)
wm = pyinotify.WatchManager()
notifier = pyinotify.Notifier(wm, default_proc_fun=Identity(), timeout=5)
@ -32,8 +30,9 @@ try:
notifier.process_events()
if notifier.check_events( timeout=1000):
notifier.read_events()
print('drin')
notifier.stop()
print('events')
else:
print('timeout')
except KeyboardInterrupt:
notifier.stop()
print('fin')