Python、html、javascript を使用してデスクトップ アプリケーションを構築したいと考えています。これまでのところ、フラスコのツッツをたどり、ハローワールドの実例を持っています。それを機能させるために今何をすべきですか?HTMLファイルは、その下のPythonスクリプトとどのように「会話」しますか?
これまでの私のコードは次のとおりです。
from flask import Flask, url_for, render_template, redirect
app = Flask(__name__)
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
@app.route('/')
def index():
return redirect(url_for('init'))
@app.route('/init/')
def init():
css = url_for('static', filename='zaab.css')
return render_template('init.html', csse=css)
if __name__ == '__main__':
app.run()