Initial commit

This commit is contained in:
2024-06-12 08:23:22 +01:00
commit acbe8ba57c
1319 changed files with 237644 additions and 0 deletions

14
model_gen/main.py Normal file
View File

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
"""
@author: Edward Middleton-Smith
"""
from translation_braille import Translation_Braille
if __name__ == '__main__':
print()
print('Welcome to your Braille Translator')
print("At any time, answer the following error code to exit (excl. speech marks): '#!ERRORCODE!#'")
print()
translation = Translation_Braille.input_from_console()
print(f'Translation: {translation}')