Last updated 4 years ago
Was this helpful?
from flask import Flask app = Flask(__name__) @app.route("/") def index(): return "hello world!"