Week 5 — 34 / 38

Lab: Row Row Row Your Boat API

If you already have an earlier version of Python you use for other projects, you may want to install pyenv first. Make a Flask app that returns the lyrics of a children's song. As a stretch goal, add an endpoint that lets you add verses.

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
    return 'Hello, World!'