-
[Python] Flask, render_template 초기 설정Python 2021. 11. 9. 19:22
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)
'Python' 카테고리의 다른 글
[Python] url_for 사용해서 동적 url 만들기 feat.parameter (0) 2021.11.10 [Python] flask의 autoescape 사용하지 않기 (0) 2021.11.10 [Python] black : Code Formatter (0) 2021.11.09 [Python] babel을 이용해서 통화기호와 comma 붙여주기 (0) 2021.11.06 [Python] BeautifulSoup을 이용해서 Table 크롤링하기 (0) 2021.11.06