diff --git a/python-server/s_input.py b/python-server/s_input.py deleted file mode 100644 index bd7a6d4..0000000 --- a/python-server/s_input.py +++ /dev/null @@ -1,6 +0,0 @@ -import speech - -def analyse_file_by_path(file_path): - transcript = speech.analyse(file_path) - - return transcript diff --git a/python-server/test.py b/python-server/test.py deleted file mode 100755 index 49ccb3b..0000000 --- a/python-server/test.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/python3 -import s_input -import sys - -if __name__ == "__main__": - path = sys.argv[1] - print("AudioFile: {}".format(path)) - print(s_input.analyse_file_by_path(path))