Merge branch 'master' of github.com:chrys87/fenrir

This commit is contained in:
chrys
2016-07-05 19:01:33 +02:00
5 changed files with 88 additions and 1 deletions

View File

@ -1,4 +1,8 @@
#!/bin/python
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
import hashlib
import difflib
import textwrap

View File

@ -0,0 +1,22 @@
#!/usr/bin/python
# Espeak driver
class speech():
isInitialized = False
def __init__(self):
try:
pass
isInitialized = True
except:
initialized = False
def speak(text, queueable=True):
if queueable == False: self.stop()
def stop(self):
pass
def clear_buffer(self):
pass