flask에서 Hello world

목표



브라우저에 "Hello, world!"라고 표시하기만 하면 됩니다.


환경


  • Windows 10 Pro
  • Python 3.7.5
  • flask 1.1.1

  • 디렉토리 구성



    이것만.


    소스 코드


    index.html 는 VSCode에서 Emmet에서 !
    <!DOCTYPE html>
    <html lang="ja">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
        <h1>Hello, world!</h1>
    </body>
    </html>
    
    <h1>Hello, world!</h1> 에서 sample.py 하는 데 특별한 이유는 없다.
    from flask import Flask, render_template
    
    # インスタンス化
    app = Flask(__name__)
    
    @app.route('/')
    def index():
        return render_template('index.html');
    
    if __name__ == '__main__':
        app.run(host='0.0.0.0', port='5555', debug=True)
    

    시작


    >python sample.py
    

    좋은 웹페이지 즐겨찾기