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'
def book(): libro = Libro(db) data = request.get_json(force=True) return libro.exists(data['isbn'])