ファイル名:「main.py」更新日:2024/12/3

2024年12月3日火曜日

source code 公開

t f B! P L

     



 
#******************************************************************************#
# ファイル名:main.py
# バージョン:Ver1.0
# 機能:
# 作成日:2024/11/25
# 更新日:2024/12/3 WEBアプリに挑戦2 W002

#*******************************************************************************#

from flask import Flask, render_template # --- 追加 2-1 render_template をインポート
app = Flask(__name__)

@app.route('/')
def hello_show():
    return 'Hello World!'

@app.route('/index') #--- 追加 2-2 http://127.0.0.1:5000/indexでindex.htmlを呼び出す 
def index():
    return render_template('index.html')

if __name__ == '__main__':
    app.run()


このブログを検索

アーカイブ

カテゴリー

QooQ