repository to manage all files for 1_2_oder_3 interaction game for Inf2/2 Interaktionen SoSe23 from Engert, Caliskan and Bachiri
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_flask_server.py 266B

123456789101112131415
  1. from flask import Flask, jsonify, Response
  2. app = Flask(__name__)
  3. @app.route('/CONNECTION', methods=['GET'])
  4. def connection():
  5. return Response(status=200)
  6. def main():
  7. app.run(host='127.0.0.1', port=5555, debug=True)
  8. if __name__ == '__main__':
  9. main()