notescriber/notescriber.py

11 lines
336 B
Python
Raw Normal View History

#!/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()