Open yuyuyuriko78 opened 4 years ago
階層 root |_templates |_index.html |_flask_main.py
flask_main.py
from flask import Flask, render_template app = Flask(__name__)
@app.route('/index') def index(): return render_template('index.html')
app.run()
- index.html ```html <h1>hello Flask and html!</h1>
Flask / HTML 簡単な例
階層 root |_templates |_index.html |_flask_main.py
flask_main.py
@app.route('/index') def index(): return render_template('index.html')
app.run()