#!/usr/bin/env python from notescriber.transcriber import Transcriber from notescriber.dispatcher import Dispatcher from notescriber.picker import Picker if __name__ == '__main__': transcriber = Transcriber() dispatcher = Dispatcher(transcriber) picker = Picker("/home/octopusx/Code/test", dispatcher) picker.observe()