Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active December 24, 2015 14:25
Show Gist options
  • Save pcote/0ccb5b6a4c49485668aa to your computer and use it in GitHub Desktop.
Save pcote/0ccb5b6a4c49485668aa to your computer and use it in GitHub Desktop.
@app.route("/addscore", methods=["POST"])
def add_score():
json_data = request.get_json()
exercise_id = json_data.get("exercise_id")
score = json_data.get("score")
model.add_attempt(exercise_id, score)
return jsonify(dict(result="success"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment