기본적인 코드다. 1 2 3 4 5 from flask import * app = Flask(__name__) @app.route('/', methods=['GET','POST']) def index(): return "hello" cs 메소드를 지정해줄 수 있고, html 코드를 리턴해줄 수 있다. 1 2 3 4 5 from flask import * app = Flask(__name__) @app.route('/', methods=['GET','POST']) def index(): return render_template('index.html') cs templates 경로가 디폴트라서 거기 기준으로 index.html을 리턴해줄 수도 있다. 1 2 3 4 5 6 7 8 from flask impor..