[Python] Flask, render_template 초기 설정

[Python] Flask, render_template 초기 설정

from flask import Flask, render_template app = Flask(__name__, template_folder="templates") @app.route("/") def home(): print("Hello Wolrd") if __name__ == "__main__": app.run(host="localhost", port="8000", debug=True)

공유하기 글 요소 저작자표시

from http://insubkim.tistory.com/87 by ccl(A) rewrite - 2021-11-09 19:26:37