Exemple #1
0
def gif_party_json_educational():
    data = gif_party_logic.select_category('educational')
    return jsonify(data)
Exemple #2
0
def gif_party_json_strange():
    data = gif_party_logic.select_category('strange')
    return jsonify(data)
Exemple #3
0
def gif_party_json_animals():
    data = gif_party_logic.select_category('animals')
    return jsonify(data)
Exemple #4
0
def gif_party_json_gaming():
    data = gif_party_logic.select_category('gaming')
    return jsonify(data)
Exemple #5
0
def gif_party_json_all():
    data = gif_party_logic.select_category('all')
    return jsonify(data)