Example #1
0
def bookExists():
    libro = Libro(db)
    data = request.get_json(force=True)
    if(libro.exists(data['isbn']) != 'False'):
        return jsonify(libro.JsonExists(data['isbn']))
    else:
        return 'False'
Example #2
0
def book():
    libro = Libro(db)
    data = request.get_json(force=True)
    return libro.exists(data['isbn'])