python http handler iis

22

from flask import Flask

app = Flask(__name__)

@app.route('/hi')
def hello_world():
    return 'Hello, World!'

Comments

Submit
0 Comments