From a748d35279b6fe2b0a26d2a5a0bdab9db83c784f Mon Sep 17 00:00:00 2001
From: Tom Edwards <edwardstj1@cardiff.ac.uk>
Date: Tue, 28 May 2024 12:20:38 +0100
Subject: [PATCH] initial commit

---
 api/api_functions.py    | 12 ++++++++++++
 func/ner/ner.py         |  3 +++
 func/usas/usas.py       |  3 +++
 functions /ner/ner.py   |  0
 functions /usas/usas.py |  0
 main.py                 |  8 ++++++--
 6 files changed, 24 insertions(+), 2 deletions(-)
 create mode 100644 func/ner/ner.py
 create mode 100644 func/usas/usas.py
 delete mode 100644 functions /ner/ner.py
 delete mode 100644 functions /usas/usas.py

diff --git a/api/api_functions.py b/api/api_functions.py
index e69de29..e539106 100644
--- a/api/api_functions.py
+++ b/api/api_functions.py
@@ -0,0 +1,12 @@
+from func.ner.ner import *
+from func.usas.usas import *
+
+
+def get_ner_for_data():
+    result = run_ner_on_text()
+    return result
+
+
+def get_usas_for_data():
+    result = run_usas_on_text()
+    return result
diff --git a/func/ner/ner.py b/func/ner/ner.py
new file mode 100644
index 0000000..06a1ee6
--- /dev/null
+++ b/func/ner/ner.py
@@ -0,0 +1,3 @@
+
+def run_ner_on_text():
+    return "hello ner"
diff --git a/func/usas/usas.py b/func/usas/usas.py
new file mode 100644
index 0000000..a7bc640
--- /dev/null
+++ b/func/usas/usas.py
@@ -0,0 +1,3 @@
+
+def run_usas_on_text():
+    return "hello usas"
\ No newline at end of file
diff --git a/functions /ner/ner.py b/functions /ner/ner.py
deleted file mode 100644
index e69de29..0000000
diff --git a/functions /usas/usas.py b/functions /usas/usas.py
deleted file mode 100644
index e69de29..0000000
diff --git a/main.py b/main.py
index b244cfb..8d5bd63 100644
--- a/main.py
+++ b/main.py
@@ -1,5 +1,7 @@
 from flask import Flask
 
+from api.api_functions import *
+
 app = Flask(__name__)
 
 
@@ -10,9 +12,11 @@ def home():
 
 @app.route("/ner")
 def ner():
-    return "Hello ner!"
+    result = get_ner_for_data()
+    return result
 
 
 @app.route("/usas")
 def usas():
-    return "Hello usas!"
+    result = get_usas_for_data()
+    return result
-- 
GitLab