-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsrv.py
49 lines (41 loc) · 1.44 KB
/
websrv.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# ===================================================
# This project is a ready to fill template for an algo-provider service.
# This service follows the Algo API standard.
# More information in the algo-api/README.md file.
#
# Define your algorithms inputs and outputs,
# and the algorithm itself in the algorithms/algorithms.py file.
#
# Service name: Algo-provider Python Template
# Authors: DebiAI
# Github: https://github.com/debiai/algo-provider-python-template
# License: Apache License 2.0
# ===================================================
import connexion
from flask_cors import CORS
from init import init
from utils.utils import get_app_version
PORT = 3020
OPEN_API_PATH = "algo-api/OpenAPI/Algo_OpenAPI_V0.yaml"
# Version of the service, will be pulled by the GitHub workflow
# to tag the Docker image
VERSION = "1.0.0"
# Setup app
app = connexion.App(__name__)
app.add_api(OPEN_API_PATH, strict_validation=True)
CORS(app.app)
@app.route("/", methods=["GET"])
def version():
return "Algo provider service version: " + get_app_version()
if __name__ == "__main__":
# Run the service
print(
"================ My Algo Service "
+ get_app_version()
+ " ===================="
)
init()
print("============================ RUN ===========================")
print("App running : http://localhost:{}".format(PORT))
print("Swagger UI : http://localhost:{}/ui/".format(PORT))
app.run(port=PORT, debug=True)