Skip to content

Instantly share code, notes, and snippets.

View sdbeng's full-sized avatar
💭
Coding

Sergio sdbeng

💭
Coding
View GitHub Profile
@sdbeng
sdbeng / PY0101EN-2-4-Sets.ipynb
Created September 2, 2019 18:03
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdbeng
sdbeng / PY0101EN-3-2-Loops.ipynb
Created September 4, 2019 19:30
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdbeng
sdbeng / PY0101EN-3-3-Functions.ipynb
Created September 4, 2019 20:55
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdbeng
sdbeng / PY0101EN-3-4-Classes.ipynb
Created September 4, 2019 21:43
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@app.route('/quizzes', methods=['POST'])
def quizzes():
"""route to quizzes, play"""
try:
data = request.get_json()
previous_questions = data['previous_questions']
quiz_category = data['quiz_category']
questions = None
# get questions for that quiz_category type 'click'