From 034d8b426fc51d1695bd78ade433831079ed93e2 Mon Sep 17 00:00:00 2001 From: Sheppy Date: Tue, 21 Aug 2018 17:19:10 +0200 Subject: [PATCH] deleted unessesary files --- python-server/s_input.py | 6 ------ python-server/test.py | 8 -------- 2 files changed, 14 deletions(-) delete mode 100644 python-server/s_input.py delete mode 100755 python-server/test.py 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))