fork download
  1. from flask import Flask
  2. app=Flask(__name__)
  3. @app.route("/home")
  4. def home():
  5. return 'hello'
  6.  
Success #stdin #stdout 0.11s 20684KB
stdin
Standard input is empty
stdout
Standard output is empty