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