{"id":38486,"date":"2024-11-01T18:17:28","date_gmt":"2024-11-01T18:17:28","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38486"},"modified":"2024-11-26T06:44:12","modified_gmt":"2024-11-26T06:44:12","slug":"fastapi-%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c-flask%ec%99%80-%eb%b9%84%ea%b5%90","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38486\/","title":{"rendered":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50"},"content":{"rendered":"<p><body><\/p>\n<p>\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc788\uc5b4\uc11c \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Python \uc0dd\ud0dc\uacc4\uc5d0\uc11c \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ub450 \uac00\uc9c0 \ud504\ub808\uc784\uc6cc\ud06c\uc778 Flask\uc640 FastAPI\uc5d0 \ub300\ud574 \ube44\uad50\ud558\uace0, FastAPI\uc758 \uc7a5\uc810\uc744 \uac15\uc870\ud558\uba74\uc11c \uc11c\ubc84 \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ub2e4\ub8e8\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. \uac1c\uc694<\/h2>\n<p>\uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ud074\ub77c\uc774\uc5b8\ud2b8\uc758 \uc694\uccad\uc744 \ucc98\ub9ac\ud558\uace0, \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\uc5ec \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \uc751\ub2f5\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Flask\ub294 \uacbd\ub7c9\ud654\ub41c \ub9c8\uc774\ud06c\ub85c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac04\ub2e8\ud55c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \ub370 \ud2b9\ud788 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ubc18\uba74, FastAPI\ub294 \ube44\ub3d9\uae30\uc801 \uae30\ub2a5\uacfc \uc790\ub3d9 API \ubb38\uc11c\ud654\ub97c \uc9c0\uc6d0\ud558\uc5ec \ud604\ub300\uc801\uc778 \uc6f9 \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \uc801\ud569\ud569\ub2c8\ub2e4.<\/p>\n<h2>2. Flask \uc18c\uac1c<\/h2>\n<p>Flask\ub294 2010\ub144 Armin Ronacher\uc5d0 \uc758\ud574 \ub9cc\ub4e4\uc5b4\uc9c4 \ub9c8\uc774\ud06c\ub85c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Flask\ub294 \uac04\uacb0\ud558\uace0 \uc720\uc5f0\ud55c \uad6c\uc131\uc744 \ud2b9\uc9d5\uc73c\ub85c \ud558\uc5ec, \uac1c\ubc1c\uc790\uac00 \uc6d0\ud558\ub294 \ub300\ub85c \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud655\uc7a5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.1. Flask\uc758 \ud2b9\uc9d5<\/h3>\n<ul>\n<li>\uac00\ubcbc\uc6b4 \uad6c\uc870: \ucd5c\uc18c\ud55c\uc758 \ucf54\ub4dc\ubca0\uc774\uc2a4\ub85c \ud655\uc7a5 \uac00\ub2a5<\/li>\n<li>\uc720\uc5f0\uc131: \ub2e4\uc591\ud55c \ud50c\ub7ec\uadf8\uc778\uacfc \ud655\uc7a5 \uae30\ub2a5\uc744 \uc9c0\uc6d0<\/li>\n<li>Jinja2 \ud15c\ud50c\ub9bf \uc5d4\uc9c4: HTML \ud15c\ud50c\ub9bf\uc744 \uc27d\uac8c \uc791\uc131\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0<\/li>\n<li>\uc9c1\uad00\uc801\uc778 \ub77c\uc6b0\ud305 \uc2dc\uc2a4\ud15c<\/li>\n<\/ul>\n<h3>2.2. Flask \uc608\uc81c \ucf54\ub4dc<\/h3>\n<pre><code>from flask import Flask, jsonify, request\n\napp = Flask(__name__)\n\n@app.route('\/api\/hello', methods=['GET'])\ndef hello_world():\n    return jsonify(message='Hello, World!')\n\n@app.route('\/api\/greet', methods=['POST'])\ndef greet_user():\n    data = request.get_json()\n    name = data.get('name', 'Guest')\n    return jsonify(message=f'Hello, {name}!')\n\nif __name__ == '__main__':\n    app.run(debug=True)<\/code><\/pre>\n<h2>3. FastAPI \uc18c\uac1c<\/h2>\n<p>FastAPI\ub294 2018\ub144 Sebasti\u00e1n Ram\u00edrez\uc5d0 \uc758\ud574 \ub9cc\ub4e4\uc5b4\uc9c4 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, Pydantic\uacfc Starlette\ub97c \uae30\ubc18\uc73c\ub85c \ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. FastAPI\ub294 \ube44\ub3d9\uae30 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc9c0\uc6d0\ud558\uace0, \ud0c0\uc785 \ud78c\ud305\uc744 \ud1b5\ud574 \ub370\uc774\ud130 \uac80\uc99d \ubc0f \uc790\ub3d9 \ubb38\uc11c\ud654\ub97c \uc81c\uacf5\ud558\ub294 \uc810\uc5d0\uc11c \ud604\ub300\uc801\uc778 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc801\ud569\ud569\ub2c8\ub2e4.<\/p>\n<h3>3.1. FastAPI\uc758 \ud2b9\uc9d5<\/h3>\n<ul>\n<li>\ube44\ub3d9\uae30 \uc9c0\uc6d0: async \ubc0f await\ub97c \ud1b5\ud574 \uace0\uc131\ub2a5 \ube44\ub3d9\uae30 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c \uac00\ub2a5<\/li>\n<li>\uc790\ub3d9 API \ubb38\uc11c\ud654: OpenAPI\uc640 Swagger UI\ub97c \ud1b5\ud574 API \ubb38\uc11c\ub97c \uc790\ub3d9 \uc0dd\uc131<\/li>\n<li>\ud0c0\uc785 \uac80\uc99d: Python 3.6 \uc774\uc0c1\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130 \uc720\ud6a8\uc131 \uac80\uc99d<\/li>\n<li>\uc6b0\uc218\ud55c \uc131\ub2a5: Starlette\ub97c \uae30\ubc18\uc73c\ub85c \ud558\uc5ec \uacbd\ub7c9\ud654 \ubc0f \ube60\ub978 \uc18d\ub3c4 \uc81c\uacf5<\/li>\n<\/ul>\n<h3>3.2. FastAPI \uc608\uc81c \ucf54\ub4dc<\/h3>\n<pre><code>from fastapi import FastAPI\n\napp = FastAPI()\n\n@app.get('\/api\/hello')\nasync def hello_world():\n    return {'message': 'Hello, World!'}\n\n@app.post('\/api\/greet')\nasync def greet_user(name: str = 'Guest'):\n    return {'message': f'Hello, {name}!'}<\/code><\/pre>\n<h2>4. Flask\uc640 FastAPI \ube44\uad50<\/h2>\n<table>\n<thead>\n<tr>\n<th>\ud2b9\uc9d5<\/th>\n<th>Flask<\/th>\n<th>FastAPI<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\ube44\ub3d9\uae30 \uc9c0\uc6d0<\/td>\n<td>\ube44\ub3d9\uae30 \uc791\uc5c5\uc744 \uc9c0\uc6d0\ud558\uc9c0\ub9cc \uae30\ubcf8\uc801\uc73c\ub85c \ub3d9\uae30 \ubc29\uc2dd<\/td>\n<td>\ube44\ub3d9\uae30 \ubc29\uc2dd \uae30\ubcf8 \uc9c0\uc6d0<\/td>\n<\/tr>\n<tr>\n<td>\uc790\ub3d9 \ubb38\uc11c\ud654<\/td>\n<td>\ubb38\uc11c\ud654 \ub3c4\uad6c \ud544\uc694 (\uc608: Flask-RESTPlus)<\/td>\n<td>\uc790\ub3d9 \uc0dd\uc131 (OpenAPI, Swagger UI)<\/td>\n<\/tr>\n<tr>\n<td>\ud0c0\uc785 \ud78c\ud305<\/td>\n<td>\uc788\uc73c\ub098 \ud544\uc218\ub294 \uc544\ub2d8<\/td>\n<td>\uac15\ub825\ud55c \ud0c0\uc785 \ud78c\ud305 \uc9c0\uc6d0<\/td>\n<\/tr>\n<tr>\n<td>\uc131\ub2a5<\/td>\n<td>\ubaa8\ub4e0 \uc791\uc5c5\uc744 \ub3d9\uae30\uc801\uc73c\ub85c \uc218\ud589<\/td>\n<td>\ube44\ub3d9\uae30 \ucc98\ub9ac\ub85c \ub192\uc740 \uc131\ub2a5 \uc81c\uacf5<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>5. FastAPI\uc758 \uc7a5\uc810<\/h2>\n<p>FastAPI\ub294 \ud2b9\ud788 API \uc11c\ubc84 \uac1c\ubc1c\uacfc \uad00\ub828\ud558\uc5ec \uc5ec\ub7ec \uac00\uc9c0 \uc7a5\uc810\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<h3>5.1. \uc131\ub2a5<\/h3>\n<p>FastAPI\ub294 Starlette\ub97c \uae30\ubc18\uc73c\ub85c \ud558\uc5ec \ube44\ub3d9\uae30 \ucc98\ub9ac\ub97c \ud1b5\ud574 \ub192\uc740 \uc131\ub2a5\uc744 \ubc1c\ud718\ud569\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uc801\uc740 \ub9ac\uc18c\uc2a4\ub85c\ub3c4 \uc218\ub9ce\uc740 \uc694\uccad\uc744 \ucc98\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>5.2. \uac1c\ubc1c \uc0dd\uc0b0\uc131<\/h3>\n<p>\uc790\ub3d9 \ubb38\uc11c\ud654 \ubc0f \ud0c0\uc785 \ud78c\ud305\uc744 \ud1b5\ud55c \ub370\uc774\ud130 \uac80\uc99d \ub355\ubd84\uc5d0 \ucf54\ub4dc \uc791\uc131\uc774 \uac04\ud3b8\ud574\uc9c0\uace0, \uc720\uc9c0 \ubcf4\uc218\uc131\ub3c4 \ub192\uc544\uc9d1\ub2c8\ub2e4. \ub610\ud55c, \ud074\ub77c\uc774\uc5b8\ud2b8\uc640\uc758 \uc18c\ud1b5\uc744 \uc6d0\ud65c\ud558\uac8c \ud574\uc8fc\ub294 API \ubb38\uc11c\uac00 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ub418\ubbc0\ub85c \uac1c\ubc1c\uc790\uc640 \ube44\uac1c\ubc1c\uc790 \uac04\uc758 \ud611\uc5c5\uc774 \uc6a9\uc774\ud574\uc9d1\ub2c8\ub2e4.<\/p>\n<h3>5.3. \uc720\uc5f0\ud55c \ub370\uc774\ud130 \ucc98\ub9ac<\/h3>\n<p>Pydantic\uc744 \ud65c\uc6a9\ud558\uc5ec \ub370\uc774\ud130 \uac80\uc99d\uc744 \uac15\ub825\ud558\uace0 \uc720\uc5f0\ud558\uac8c \ucc98\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \ub370\uc774\ud130\ub294 \uc790\ub3d9\uc73c\ub85c \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud558\ubbc0\ub85c, \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \ubcf4\ub2e4 \uba85\ud655\ud55c \ud53c\ub4dc\ubc31\uc744 \ubc1b\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>6. \uacb0\ub860<\/h2>\n<p>FastAPI\ub294 \ub192\uc740 \uc131\ub2a5\uacfc \uac1c\ubc1c \uc0dd\uc0b0\uc131\uc744 \uc81c\uacf5\ud558\ub294 \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Flask\uc640 \uac19\uc740 \uc804\ud1b5\uc801\uc778 \ud504\ub808\uc784\uc6cc\ud06c\uc640 \ube44\uad50\ud560 \ub54c \ube44\ub3d9\uae30 \ucc98\ub9ac\uc640 \uc790\ub3d9 \ubb38\uc11c\ud654, \uac15\ub825\ud55c \ud0c0\uc785 \ud78c\ud305 \ub4f1\uc5d0\uc11c \ub9ce\uc740 \uc7a5\uc810\uc744 \uac00\uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud2b9\uc131 \ub355\ubd84\uc5d0 FastAPI\ub294 RESTful API \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ub9e4\uc6b0 \uc801\ud569\ud558\ub2e4\uace0 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uae30\uc874\uc758 Flask \uac1c\ubc1c\uc790\ub3c4 FastAPI\uc758 \uc7a5\uc810\uc744 \ud65c\uc6a9\ud558\uc5ec \ub354 \ub098\uc740 \uc6f9 \uc11c\ube44\uc2a4\ub97c \uad6c\ucd95\ud560 \uc218 \uc788\uc744 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<h2>7. \ucc38\uace0 \uc790\ub8cc<\/h2>\n<ul>\n<li><a href=\"https:\/\/fastapi.tiangolo.com\/\">FastAPI \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n<li><a href=\"https:\/\/flask.palletsprojects.com\/\">Flask \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n<li><a href=\"https:\/\/www.pydantic-docs.helpmanual.io\/\">Pydantic \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc788\uc5b4\uc11c \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Python \uc0dd\ud0dc\uacc4\uc5d0\uc11c \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ub450 \uac00\uc9c0 \ud504\ub808\uc784\uc6cc\ud06c\uc778 Flask\uc640 FastAPI\uc5d0 \ub300\ud574 \ube44\uad50\ud558\uace0, FastAPI\uc758 \uc7a5\uc810\uc744 \uac15\uc870\ud558\uba74\uc11c \uc11c\ubc84 \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ub2e4\ub8e8\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uac1c\uc694 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ud074\ub77c\uc774\uc5b8\ud2b8\uc758 \uc694\uccad\uc744 \ucc98\ub9ac\ud558\uace0, \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\uc5ec \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \uc751\ub2f5\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Flask\ub294 \uacbd\ub7c9\ud654\ub41c \ub9c8\uc774\ud06c\ub85c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac04\ub2e8\ud55c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \ub370 \ud2b9\ud788 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ubc18\uba74, FastAPI\ub294 \ube44\ub3d9\uae30\uc801 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38486\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[183],"tags":[],"class_list":["post-38486","post","type-post","status-publish","format-standard","hentry","category-fastapi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/38486\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc788\uc5b4\uc11c \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Python \uc0dd\ud0dc\uacc4\uc5d0\uc11c \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ub450 \uac00\uc9c0 \ud504\ub808\uc784\uc6cc\ud06c\uc778 Flask\uc640 FastAPI\uc5d0 \ub300\ud574 \ube44\uad50\ud558\uace0, FastAPI\uc758 \uc7a5\uc810\uc744 \uac15\uc870\ud558\uba74\uc11c \uc11c\ubc84 \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ub2e4\ub8e8\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uac1c\uc694 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ud074\ub77c\uc774\uc5b8\ud2b8\uc758 \uc694\uccad\uc744 \ucc98\ub9ac\ud558\uace0, \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\uc5ec \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \uc751\ub2f5\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Flask\ub294 \uacbd\ub7c9\ud654\ub41c \ub9c8\uc774\ud06c\ub85c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac04\ub2e8\ud55c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \ub370 \ud2b9\ud788 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ubc18\uba74, FastAPI\ub294 \ube44\ub3d9\uae30\uc801 &hellip; \ub354 \ubcf4\uae30 &quot;FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38486\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T18:17:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:44:12+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50\",\"datePublished\":\"2024-11-01T18:17:28+00:00\",\"dateModified\":\"2024-11-26T06:44:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/\"},\"wordCount\":63,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"FastAPI\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38486\/\",\"name\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T18:17:28+00:00\",\"dateModified\":\"2024-11-26T06:44:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38486\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38486\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/38486\/","og_locale":"ko_KR","og_type":"article","og_title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc788\uc5b4\uc11c \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Python \uc0dd\ud0dc\uacc4\uc5d0\uc11c \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ub450 \uac00\uc9c0 \ud504\ub808\uc784\uc6cc\ud06c\uc778 Flask\uc640 FastAPI\uc5d0 \ub300\ud574 \ube44\uad50\ud558\uace0, FastAPI\uc758 \uc7a5\uc810\uc744 \uac15\uc870\ud558\uba74\uc11c \uc11c\ubc84 \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ub2e4\ub8e8\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uac1c\uc694 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ud074\ub77c\uc774\uc5b8\ud2b8\uc758 \uc694\uccad\uc744 \ucc98\ub9ac\ud558\uace0, \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\uc5ec \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \uc751\ub2f5\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. Flask\ub294 \uacbd\ub7c9\ud654\ub41c \ub9c8\uc774\ud06c\ub85c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac04\ub2e8\ud55c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \ub370 \ud2b9\ud788 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ubc18\uba74, FastAPI\ub294 \ube44\ub3d9\uae30\uc801 &hellip; \ub354 \ubcf4\uae30 \"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50\"","og_url":"https:\/\/atmokpo.com\/w\/38486\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T18:17:28+00:00","article_modified_time":"2024-11-26T06:44:12+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/38486\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38486\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50","datePublished":"2024-11-01T18:17:28+00:00","dateModified":"2024-11-26T06:44:12+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38486\/"},"wordCount":63,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["FastAPI\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38486\/","url":"https:\/\/atmokpo.com\/w\/38486\/","name":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T18:17:28+00:00","dateModified":"2024-11-26T06:44:12+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38486\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38486\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38486\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"FastAPI \uc11c\ubc84\uac1c\ubc1c, Flask\uc640 \ube44\uad50"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38486","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=38486"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38486\/revisions"}],"predecessor-version":[{"id":38487,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38486\/revisions\/38487"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38486"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38486"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38486"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}