exopy.utils.watchdog module

Collections of useful watchdog file system observers.

class exopy.utils.watchdog.SystematicFileUpdater(handler)[source]

Bases: watchdog.events.FileSystemEventHandler

Simple watchdog handler calling always the same function no matter the event

on_created(event)[source]

Called on creation of a file.

on_deleted(event)[source]

Called on deletion of a file.

on_moved(event)[source]

Called on displacement of a file.