postman 다운로드 사이트 https://www.postman.com/downloads/ Download Postman | Get Started for Free Try Postman for free! Join 17 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster. www.postman.com 우선 새롭게 test.py 파일을 생성해주고 아래와 같이 기본 코드를 작성한다. #test.py from flask import Flask app = Flask(__name__) #GET @app.route('/') def hello_world(): retur..