Kaynağa Gözat

Adding python version, super basic flask app, only functions as echo server at this point

Joe Ceresini 7 yıl önce
ebeveyn
işleme
6deaa35aab
1 değiştirilmiş dosya ile 10 ekleme ve 0 silme
  1. 10 0
      python/api.py

+ 10 - 0
python/api.py

@@ -0,0 +1,10 @@
+from flask import Flask,request
+import json
+
+app = Flask(__name__)
+
[email protected]("/contains_all_chars", methods=['POST'])
+def contains_all_chars():
+	# Just testing, essentially an echo server at this point
+	return json.dumps(request.get_json())
+