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