main.py 140 B

1234567
  1. from flask import Flask, render_template
  2. app = Flask(__name__)
  3. @app.route('/')
  4. def hello_world():
  5. return render_template('index.html')