Login and get codingIn this Advanced Bite you will implement a full-blown CRUD app to manage movie quotes using
Flask
. Implement the following routes:@app.route('/api/quotes', methods=['GET']) @app.route('/api/quotes/', methods=['GET']) @app.route('/api/quotes', methods=['POST']) @app.route('/api/quotes/', methods=['PUT']) @app.route('/api/quotes/', methods=['DELETE'])To not distract you from the building API aspect, we just store the data in a
list
ofdict
s, in real life you would use a database though.Make sure you check the tests for the required return codes for both good and bad calls to the API and use
jsonify
on your return data.Good luck and have fun!
97 out of 107 users completed this Bite.
Will you be the 98th person to crack this Bite?
Resolution time: ~102 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 6.78 on a 1-10 difficulty scale.
» Up for a challenge? 💪