This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # app.py | |
| # Basic REST API using Flask | |
| from flask import Flask, request, jsonify | |
| app = Flask(__name__) | |
| # Hardcoded list of tasks | |
| tasks = [ | |
| {"id": 1, "title": "Complete assignment"}, |