flask python 2 code example
Example 1: Install Flask
pip install flask
Or If The Problem is "pip" not Found Use :
py -m pip install flask
Example 2: import flask
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'