flask
scriptFix 3 errors on the page
Basic script
from flask import Flask app = Flask(__name__) @app.route('/') def index(): return 'Hey' TBD i think its @app.route('/drinks') def get_drinks():
TBD, continuing flask script, i think endpoints are the urls within
@app.route('/')
TBD
TBD