Flask시작하기 - HTML파일 주기

Flask시작하기 - HTML파일 주기

[index.html 코드]

Title

하나만 입력해 봅시다.

[app.py코드]

from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')

def home():

return render_template('index.html')

if __name__ == '__main__':

app.run('0.0.0.0',port=5000,debug=True)

http://localhost:5000/

순서

[ index.html ] → [ app.py ] → ▶run 'app' → http://localhost:5000/ttp

[ index.html ] 예제코드

Document

서버를 만들었다!

http://localhost:5000 새로고침

from http://codingmaster16.tistory.com/50 by ccl(A) rewrite - 2021-11-07 15:00:57