Beispiel #1
0
def list_cars():
    return jsonify({
        'items': [c.to_dict() for c in Car.query()]
    })