{"id":38467,"date":"2024-11-01T18:17:19","date_gmt":"2024-11-01T18:17:19","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38467"},"modified":"2024-11-26T06:44:15","modified_gmt":"2024-11-26T06:44:15","slug":"fastapi-%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c-%eb%b3%b4%ec%95%88-fastapi%ec%9d%98-%ec%9d%b8%ec%a6%9d-%eb%b0%a9%ec%8b%9d","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38467\/","title":{"rendered":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd"},"content":{"rendered":"<p><body><\/p>\n<p>\n        FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub6f0\uc5b4\ub09c \uc131\ub2a5\uacfc \uc9c1\uad00\uc801\uc778 \ubb38\ubc95\uc73c\ub85c \uc778\uae30\ub97c \ub04c\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc11c\ubc84\ub97c \uac1c\ubc1c\ud558\ub294 \ubc29\ubc95, \ubcf4\uc548\uc758 \uc911\uc694\uc131, \uadf8\ub9ac\uace0 \ub2e4\uc591\ud55c \uc778\uc99d \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>1. FastAPI \uac1c\uc694<\/h2>\n<p>\n        FastAPI\ub294 RESTful API\ub97c \ube60\ub974\uac8c \uad6c\ucd95\ud558\uae30 \uc704\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Python\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \ud65c\uc6a9\ud558\uc5ec \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uacfc \uc720\ud6a8\uc131\uc744 \ub192\uc774\uba74\uc11c, \uc790\ub3d9\uc73c\ub85c API \ubb38\uc11c\ub97c \uc0dd\uc131\ud558\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. FastAPI\ub294 Starlette\uc640 Pydantic\uc744 \uae30\ubc18\uc73c\ub85c \ud558\uc5ec \ub192\uc740 \uc131\ub2a5\uacfc \ub370\uc774\ud130 \uac80\uc99d \uae30\ub2a5\uc744 \ud568\uaed8 \uc81c\uacf5\ud569\ub2c8\ub2e4.\n    <\/p>\n<h2>2. FastAPI\uc758 \uc124\uce58\uc640 \uae30\ubcf8 \uc124\uc815<\/h2>\n<p>FastAPI\uc640 \ud568\uaed8 Uvicorn ASGI \uc11c\ubc84\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \ub2e4\uc74c\uacfc \uac19\uc740 \uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>pip install fastapi uvicorn<\/code><\/pre>\n<h3>2.1 Hello World \uc608\uc81c<\/h3>\n<p>FastAPI\uc758 \uae30\ubcf8\uc801\uc778 \uad6c\uc870\ub97c \uc774\ud574\ud558\uae30 \uc704\ud574 \uac04\ub2e8\ud55c Hello World API\ub97c \ub9cc\ub4e4\uc5b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nfrom fastapi import FastAPI\n\napp = FastAPI()\n\n@app.get(\"\/\")\nasync def read_root():\n    return {\"Hello\": \"World\"}\n    <\/code><\/pre>\n<p>\uc704\uc758 \ucf54\ub4dc\ub97c <code>main.py<\/code> \ud30c\uc77c\ub85c \uc800\uc7a5\ud55c \ub4a4, \ub2e4\uc74c \uba85\ub839\uc5b4\ub85c \uc11c\ubc84\ub97c \uc2e4\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>uvicorn main:app --reload<\/code><\/pre>\n<p>\uc774\uc81c \ube0c\ub77c\uc6b0\uc800\uc5d0\uc11c <code>http:\/\/127.0.0.1:8000<\/code>\ub97c \uc5f4\uba74 \u201cHello, World\u201d JSON \uc751\ub2f5\uc744 \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>3. \uc11c\ubc84 \ubcf4\uc548\uc758 \uc911\uc694\uc131<\/h2>\n<p>\n        \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \ubcf4\uc548\uc740 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud2b9\ud788, API\ub97c \ud1b5\ud574 \ub370\uc774\ud130\uc640 \uae30\ub2a5\uc5d0 \uc811\uadfc\ud558\uac8c \ub420 \uacbd\uc6b0, \ubcf4\uc548\uc774 \ucde8\uc57d\ud558\ub2e4\uba74 \ud574\ud0b9\uc758 \uc704\ud5d8\uc131\uc774 \ub192\uc544\uc9d1\ub2c8\ub2e4. FastAPI\ub97c \uc0ac\uc6a9\ud560 \ub54c\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \ubcf4\uc548 \uc694\uc18c\ub97c \uace0\ub824\ud574\uc57c \ud569\ub2c8\ub2e4:\n    <\/p>\n<ul>\n<li>\ub370\uc774\ud130 \uc554\ud638\ud654<\/li>\n<li>\uc0ac\uc6a9\uc790 \uc778\uc99d \ubc0f \uad8c\ud55c \ubd80\uc5ec<\/li>\n<li>\uc785\ub825 \ub370\uc774\ud130 \uac80\uc99d<\/li>\n<li>\ub85c\uadf8 \uae30\ub85d \ubc0f \ubaa8\ub2c8\ud130\ub9c1<\/li>\n<\/ul>\n<h2>4. FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd<\/h2>\n<p>\n        FastAPI\ub294 \ub2e4\uc591\ud55c \uc778\uc99d \ubc29\uc2dd\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \ubc29\uc2dd\uc740 JWT \ud1a0\ud070 \uc778\uc99d\uacfc OAuth2\uc785\ub2c8\ub2e4. \uc774\ubc88 \uc139\uc158\uc5d0\uc11c\ub294 JWT \uc778\uc99d \ubc29\uc2dd\uc744 \uc911\uc2ec\uc73c\ub85c \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>4.1 JWT( JSON Web Token) \uc778\uc99d<\/h3>\n<p>\n        JWT\ub294 \ub450 \uac1c\uc758 \uc5d4\ub4dc\ud3ec\uc778\ud2b8(\ub85c\uadf8\uc778\uacfc \uc778\uc99d\ub41c \uc0ac\uc6a9\uc790 \ud655\uc778)\ub97c \ud1b5\ud574 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc0ac\uc6a9\uc790 \uc815\ubcf4\ub97c \uc548\uc804\ud558\uac8c \uc800\uc7a5\ud558\uace0 \uc804\ub2ec\ud558\ub294 \ubc29\ubc95 \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. JWT \uc6f9 \ud1a0\ud070\uc740 \uc8fc\ub85c \uc0ac\uc6a9\uc790 \uc778\uc99d \ubc0f \uc815\ubcf4 \uad50\ud658\uc5d0 \uc0ac\uc6a9\ub418\uba70, \ub2e4\uc74c\uacfc \uac19\uc740 \uad6c\uc870\ub97c \uac00\uc9d1\ub2c8\ub2e4:\n    <\/p>\n<ul>\n<li>Header: \ud1a0\ud070\uc758 \uc720\ud615\uacfc \uc11c\uba85 \uc54c\uace0\ub9ac\uc998\uc744 \uc815\uc758\ud569\ub2c8\ub2e4.<\/li>\n<li>Payload: \uc0ac\uc6a9\uc790 \uc815\ubcf4\ub098 \uae30\ud0c0 \ub370\uc774\ud130\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4.<\/li>\n<li>Signature: Header\uc640 Payload\ub97c \uc778\ucf54\ub529\ud558\uc5ec \ube44\ubc00 \ud0a4\ub85c \uc11c\uba85\ud55c \uac12\uc785\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h3>4.2 FastAPI\ub85c JWT \uc778\uc99d \uad6c\ud604\ud558\uae30<\/h3>\n<p>\n        FastAPI\uc5d0\uc11c JWT \uc778\uc99d\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:\n    <\/p>\n<h4>4.2.1 \ud544\uc694\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac \uc124\uce58<\/h4>\n<p>\n        JWT\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 PyJWT\uc640 passlib\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc544\ub798 \uba85\ub839\uc5b4\ub85c \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:\n    <\/p>\n<pre><code>pip install pyjwt passlib[bcrypt]<\/code><\/pre>\n<h4>4.2.2 JWT \uc720\ud2f8\ub9ac\ud2f0 \ud568\uc218<\/h4>\n<p>\ud1a0\ud070 \uc0dd\uc131 \ubc0f \uac80\uc99d\uc744 \uc704\ud55c \ud5ec\ud37c \ud568\uc218\ub97c \uc791\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>\nimport jwt\nfrom datetime import datetime, timedelta\nfrom typing import Dict\n\nSECRET_KEY = \"your_secret_key\"\nALGORITHM = \"HS256\"\nACCESS_TOKEN_EXPIRE_MINUTES = 30\n\ndef create_access_token(data: dict, expires_delta: timedelta = None):\n    to_encode = data.copy()\n    if expires_delta:\n        expire = datetime.utcnow() + expires_delta\n    else:\n        expire = datetime.utcnow() + timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)\n    to_encode.update({\"exp\": expire})\n    encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)\n    return encoded_jwt\n    <\/code><\/pre>\n<h4>4.2.3 FastAPI \uc0ac\uc6a9\uc790 \ubaa8\ub378<\/h4>\n<p>\uc0ac\uc6a9\uc790 \ubaa8\ub378\uc744 \uc791\uc131\ud558\uace0, \uc778\uc99d\uc744 \uc704\ud55c \uc5d4\ub4dc\ud3ec\uc778\ud2b8\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>\nfrom fastapi import FastAPI, Depends, HTTPException\nfrom passlib.context import CryptContext\n\napp = FastAPI()\n\nclass User:\n    def __init__(self, username: str, password: str):\n        self.username = username\n        self.password = password\n\nfake_users_db = {\n    \"johndoe\": User(username=\"johndoe\", password=\"$2b$12$KIXT8j\/Nu1H3VzOZL5rO.ulpYb\/JgVdY2VZ5ZFkElXju2GZBeY1Fe\")\n}\n\npwd_context = CryptContext(schemes=[\"bcrypt\"], deprecated=\"auto\")\n\ndef verify_password(plain_password, hashed_password):\n    return pwd_context.verify(plain_password, hashed_password)\n\ndef get_user(db, username: str):\n    if username in db:\n        return db[username]\n    return None\n\n@app.post(\"\/token\")\nasync def login(username: str, password: str):\n    user = get_user(fake_users_db, username)\n    if not user or not verify_password(password, user.password):\n        raise HTTPException(\n            status_code=401,\n            detail=\"Incorrect username or password\",\n            headers={\"WWW-Authenticate\": \"Bearer\"},\n        )\n    access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)\n    access_token = create_access_token(data={\"sub\": user.username}, expires_delta=access_token_expires)\n    return {\"access_token\": access_token, \"token_type\": \"bearer\"}\n    <\/code><\/pre>\n<h4>4.2.4 \ubcf4\ud638\ub41c \uc5d4\ub4dc\ud3ec\uc778\ud2b8 \uc0dd\uc131<\/h4>\n<p>\uc778\uc99d\ub41c \uc0ac\uc6a9\uc790\ub9cc \uc811\uadfc\ud560 \uc218 \uc788\ub294 \ubcf4\ud638\ub41c \uc5d4\ub4dc\ud3ec\uc778\ud2b8\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>\nfrom fastapi import Security\nfrom fastapi.security import OAuth2PasswordBearer\n\noauth2_scheme = OAuth2PasswordBearer(tokenUrl=\"token\")\n\n@app.get(\"\/users\/me\")\nasync def read_users_me(token: str = Depends(oauth2_scheme)):\n    credentials_exception = HTTPException(\n        status_code=401,\n        detail=\"Could not validate credentials\",\n        headers={\"WWW-Authenticate\": \"Bearer\"},\n    )\n    try:\n        payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])\n        username: str = payload.get(\"sub\")\n        if username is None:\n            raise credentials_exception\n    except jwt.PyJWTError:\n        raise credentials_exception\n    return {\"username\": username}\n    <\/code><\/pre>\n<h2>5. \uacb0\ub860<\/h2>\n<p>\n        FastAPI\ub294 \ub192\uc740 \uc131\ub2a5\uacfc \uac00\ub3c5\uc131\uc744 \uc81c\uacf5\ud558\ub294 \ud6cc\ub96d\ud55c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ubcf4\uc548\uc740 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc788\uc5b4 \uc911\uc694\ud55c \uc694\uc18c\ub85c, JWT \uc778\uc99d\uc740 \uc0ac\uc6a9\uc790 \uc778\uc99d\uc744 \uc548\uc804\ud558\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub294 \ubc29\ubc95 \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b(JWT) \uc778\uc99d \uad6c\ud604 \ubc29\ubc95\uc744 \ud1b5\ud574 FastAPI\uc758 \ubc1c\uc804 \uac00\ub2a5\uc131\uacfc \ud6a8\uc728\uc131\uc744 \uc54c \uc218 \uc788\ub294 \uae30\ud68c\uac00 \ub418\uc5c8\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4.\n    <\/p>\n<p>\n        FastAPI\uc640 \uad00\ub828\ud558\uc5ec \ub354 \ub9ce\uc740 \uc790\ub8cc\ub97c \ucc38\uace0\ud558\uc2dc\ub824\uba74 <a href=\"https:\/\/fastapi.tiangolo.com\/\">FastAPI \uacf5\uc2dd \ubb38\uc11c<\/a>\ub97c \ucc38\uc870\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub6f0\uc5b4\ub09c \uc131\ub2a5\uacfc \uc9c1\uad00\uc801\uc778 \ubb38\ubc95\uc73c\ub85c \uc778\uae30\ub97c \ub04c\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc11c\ubc84\ub97c \uac1c\ubc1c\ud558\ub294 \ubc29\ubc95, \ubcf4\uc548\uc758 \uc911\uc694\uc131, \uadf8\ub9ac\uace0 \ub2e4\uc591\ud55c \uc778\uc99d \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. FastAPI \uac1c\uc694 FastAPI\ub294 RESTful API\ub97c \ube60\ub974\uac8c \uad6c\ucd95\ud558\uae30 \uc704\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Python\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \ud65c\uc6a9\ud558\uc5ec \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uacfc \uc720\ud6a8\uc131\uc744 \ub192\uc774\uba74\uc11c, \uc790\ub3d9\uc73c\ub85c API \ubb38\uc11c\ub97c \uc0dd\uc131\ud558\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. FastAPI\ub294 Starlette\uc640 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38467\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd&#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-38467","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, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \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\/38467\/\" \/>\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, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub6f0\uc5b4\ub09c \uc131\ub2a5\uacfc \uc9c1\uad00\uc801\uc778 \ubb38\ubc95\uc73c\ub85c \uc778\uae30\ub97c \ub04c\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc11c\ubc84\ub97c \uac1c\ubc1c\ud558\ub294 \ubc29\ubc95, \ubcf4\uc548\uc758 \uc911\uc694\uc131, \uadf8\ub9ac\uace0 \ub2e4\uc591\ud55c \uc778\uc99d \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. FastAPI \uac1c\uc694 FastAPI\ub294 RESTful API\ub97c \ube60\ub974\uac8c \uad6c\ucd95\ud558\uae30 \uc704\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Python\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \ud65c\uc6a9\ud558\uc5ec \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uacfc \uc720\ud6a8\uc131\uc744 \ub192\uc774\uba74\uc11c, \uc790\ub3d9\uc73c\ub85c API \ubb38\uc11c\ub97c \uc0dd\uc131\ud558\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. FastAPI\ub294 Starlette\uc640 &hellip; \ub354 \ubcf4\uae30 &quot;FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38467\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T18:17:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:44:15+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=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd\",\"datePublished\":\"2024-11-01T18:17:19+00:00\",\"dateModified\":\"2024-11-26T06:44:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/\"},\"wordCount\":1013,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"FastAPI\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38467\/\",\"name\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T18:17:19+00:00\",\"dateModified\":\"2024-11-26T06:44:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38467\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38467\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd\"}]},{\"@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, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \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\/38467\/","og_locale":"ko_KR","og_type":"article","og_title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub6f0\uc5b4\ub09c \uc131\ub2a5\uacfc \uc9c1\uad00\uc801\uc778 \ubb38\ubc95\uc73c\ub85c \uc778\uae30\ub97c \ub04c\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc11c\ubc84\ub97c \uac1c\ubc1c\ud558\ub294 \ubc29\ubc95, \ubcf4\uc548\uc758 \uc911\uc694\uc131, \uadf8\ub9ac\uace0 \ub2e4\uc591\ud55c \uc778\uc99d \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. FastAPI \uac1c\uc694 FastAPI\ub294 RESTful API\ub97c \ube60\ub974\uac8c \uad6c\ucd95\ud558\uae30 \uc704\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Python\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \ud65c\uc6a9\ud558\uc5ec \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uacfc \uc720\ud6a8\uc131\uc744 \ub192\uc774\uba74\uc11c, \uc790\ub3d9\uc73c\ub85c API \ubb38\uc11c\ub97c \uc0dd\uc131\ud558\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. FastAPI\ub294 Starlette\uc640 &hellip; \ub354 \ubcf4\uae30 \"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd\"","og_url":"https:\/\/atmokpo.com\/w\/38467\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T18:17:19+00:00","article_modified_time":"2024-11-26T06:44:15+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":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/38467\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38467\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd","datePublished":"2024-11-01T18:17:19+00:00","dateModified":"2024-11-26T06:44:15+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38467\/"},"wordCount":1013,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["FastAPI\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38467\/","url":"https:\/\/atmokpo.com\/w\/38467\/","name":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T18:17:19+00:00","dateModified":"2024-11-26T06:44:15+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38467\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38467\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38467\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ubcf4\uc548, FastAPI\uc758 \uc778\uc99d \ubc29\uc2dd"}]},{"@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":[{"id":38578,"url":"https:\/\/atmokpo.com\/w\/38578\/","url_meta":{"origin":38467,"position":0},"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \ucee8\ud14c\uc774\ub108 \uc2e4\ud589  App Runner \uc124\uc815 \ubc0f \uc2e4\ud589","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"FastAPI\ub294 \ud604\ub300\uc758 API \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ucd5c\uc801\ud654\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube44\ub3d9\uae30 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc9c0\uc6d0\ud558\uba70 \uc790\ub3d9 \ubb38\uc11c\ud654 \uae30\ub2a5\uc774 \ub6f0\uc5b4\ub098\uae30 \ub54c\ubb38\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\uc640 \uae30\uc5c5\ub4e4\uc774 \uc120\ud0dd\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 FastAPI\ub85c \uac04\ub2e8\ud55c \uc11c\ubc84\ub97c \uad6c\ud604\ud558\uace0, \uc774\ub97c \ucee8\ud14c\uc774\ub108\ud654\ud558\uc5ec AWS App Runner\uc5d0 \ubc30\ud3ec\ud558\ub294 \uacfc\uc815\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. FastAPI \uc18c\uac1c FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \ube44\ub3d9\uae30 RESTful API \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ub2e4\uc74c\uacfc \uac19\uc740 \uc8fc\uc694 \uae30\ub2a5\uc744\u2026","rel":"","context":"&quot;FastAPI\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"FastAPI\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/fastapi%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38574,"url":"https:\/\/atmokpo.com\/w\/38574\/","url_meta":{"origin":38467,"position":1},"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \uc571\uc5d0\uc11c DB\uc5d0 \uc811\uc18d\ud558\uae30 \uc704\ud55c \uc900\ube44","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"FastAPI\ub294 \ucd5c\uc2e0 Python \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c \uc911 \ud558\ub098\ub85c, \uace0\uc131\ub2a5\uacfc \ube60\ub978 \uac1c\ubc1c \uc18d\ub3c4\ub97c \uc790\ub791\ud558\uba70 \ube44\ub3d9\uae30 \uae30\ub2a5\uc744 \uc9c0\uc6d0\ud558\uc5ec \ud6a8\uc728\uc801\uc778 \uc11c\ubc84 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc640 \uc5f0\ub3d9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \ubc29\ubc95\uc73c\ub85c DB\uc640 \uc5f0\uacb0\ud558\uae30 \uc704\ud574 \ud544\uc694\ud55c \uc900\ube44 \ub2e8\uacc4\uc640 \uc608\uc81c \ucf54\ub4dc\ub97c \ud1b5\ud574 \uc2e4\uc2b5\ud560 \uc218 \uc788\ub3c4\ub85d \uc900\ube44\ud588\uc2b5\ub2c8\ub2e4. 1. FastAPI \uc18c\uac1c\u2026","rel":"","context":"&quot;FastAPI\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"FastAPI\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/fastapi%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38432,"url":"https:\/\/atmokpo.com\/w\/38432\/","url_meta":{"origin":38467,"position":2},"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \uc774\ubca4\ud2b8 \ubb38\uc11c \ud074\ub798\uc2a4\uc640 \ub77c\uc6b0\ud2b8 \ubcc0\uacbd","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. FastAPI\ub780? FastAPI\ub294 Python\uc758 \ube44\ub3d9\uae30 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, API \uc11c\ubc84\ub97c \uac1c\ubc1c\ud558\ub294 \ub370 \ucd5c\uc801\ud654\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. Python\uc758 \ud0c0\uc785 \ud78c\ud2b8\ub97c \ud65c\uc6a9\ud558\uc5ec \uac15\ub825\ud55c \ub370\uc774\ud130 \uac80\uc99d \ubc0f \ubb38\uc11c\ud654 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. FastAPI\ub294 \uc2a4\ud0c0\ud2b8\uc5c5\uc5d0\uc11c \ub300\uaddc\ubaa8 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \uc774\ub974\uae30\uae4c\uc9c0 \ub2e4\uc591\ud55c \ud504\ub85c\uc81d\ud2b8\uc5d0 \uc801\ud569\ud558\uba70, OpenAPI\uc640 JSON Schema\ub97c \uc9c0\uc6d0\ud558\uc5ec \uc790\ub3d9\uc73c\ub85c API \ubb38\uc11c\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud2b9\uc9d5 \ub355\ubd84\uc5d0 FastAPI\ub294\u2026","rel":"","context":"&quot;FastAPI\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"FastAPI\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/fastapi%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38402,"url":"https:\/\/atmokpo.com\/w\/38402\/","url_meta":{"origin":38467,"position":3},"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \uc561\uc138\uc2a4 \ud1a0\ud070 \uc0dd\uc131\uacfc \uac80\uc99d","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 FastAPI\ub294 Python\uc744 \uae30\ubc18\uc73c\ub85c \ud558\ub294 \ud604\ub300\uc801\uc778 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube44\ub3d9\uae30 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc9c0\uc6d0\ud558\uba70 \ucd5c\uc801\ud654\ub41c \uc131\ub2a5\uc744 \uc790\ub791\ud569\ub2c8\ub2e4. RESTful API\ub97c \uc27d\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 FastAPI\uc758 \ud2b9\uc9d5 \uc911 \ud558\ub098\ub294 \ub370\uc774\ud130 \uac80\uc99d\uacfc \uc790\ub3d9 \ubb38\uc11c \uc0dd\uc131 \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 FastAPI\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc561\uc138\uc2a4 \ud1a0\ud070\uc744 \uc0dd\uc131\ud558\uace0 \uac80\uc99d\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \ub2e4\ub8f9\ub2c8\ub2e4. \uc561\uc138\uc2a4\u2026","rel":"","context":"&quot;FastAPI\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"FastAPI\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/fastapi%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38524,"url":"https:\/\/atmokpo.com\/w\/38524\/","url_meta":{"origin":38467,"position":4},"title":"FastAPI \uc11c\ubc84\uac1c\ubc1c, \uc131\ub2a5 \ucd5c\uc801\ud654\ub97c \uc704\ud55c \uce90\uc2f1 \ubc0f \ub85c\ub4dc \ubc38\ub7f0\uc2f1 \uc804\ub7b5","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ubc1c\ud589\uc77c: [\uc624\ub298 \ub0a0\uc9dc] \uc18c\uac1c FastAPI\ub294 Python\uc73c\ub85c \uc791\uc131\ub41c \uace0\uc131\ub2a5 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub978 \uac1c\ubc1c \uc18d\ub3c4\uc640 \ub192\uc740 \uc131\ub2a5 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc5d0\uac8c \uc0ac\ub791\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \uc131\ub2a5\uc774 \uc88b\ub2e4\uace0 \ud574\uc11c \ubaa8\ub4e0 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \uc6d0\ud65c\ud558\uac8c \uc791\ub3d9\ud558\ub294 \uac83\uc740 \uc544\ub2d9\ub2c8\ub2e4. \ud2b9\ud788 \ud2b8\ub798\ud53d\uc774 \ub9ce\uc740 \uc11c\ube44\uc2a4\uc5d0\uc11c\ub294 \uc131\ub2a5 \ucd5c\uc801\ud654\uac00 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 FastAPI \uc11c\ubc84\uc758 \uc131\ub2a5\uc744 \ucd5c\uc801\ud654\ud558\uae30 \uc704\ud55c \uce90\uc2f1(caching)\uacfc \ub85c\ub4dc \ubc38\ub7f0\uc2f1(load\u2026","rel":"","context":"&quot;FastAPI\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"FastAPI\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/fastapi%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43666,"url":"https:\/\/atmokpo.com\/w\/43666\/","url_meta":{"origin":38467,"position":5},"title":"Nodegraph \uc6f9 \ubc84\uc804","author":"root","date":"2025\ub144 02\uc6d4 05\uc77c","format":false,"excerpt":"React + FastAPI Python\uc73c\ub85c \ub9cc\ub4e4\uc5c8\ub294\ub370 \ud30c\uc774\uc36c \ubc84\uc804\ubcf4\ub2e4 \ube60\ub974\uace0 \uc88b\uae34 \ud55c\ub370 \uac1c\ubc1c \uacf5\uc218\uac00 \ub9ce\uc774 \ub4e4\uc5b4\uac00\ub294 \ub2e8\uc810\uc774 \uc788\uc74c","rel":"","context":"&quot;\ud68c\uc0ac\uad00\ub828&quot;\uc5d0\uc11c","block_context":{"text":"\ud68c\uc0ac\uad00\ub828","link":"https:\/\/atmokpo.com\/w\/category\/%ed%9a%8c%ec%82%ac%ea%b4%80%eb%a0%a8\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/atmokpo.com\/w\/wp-content\/uploads\/2025\/02\/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7-2025-02-05-194145-1.png?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38467","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=38467"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38467\/revisions"}],"predecessor-version":[{"id":38468,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38467\/revisions\/38468"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38467"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38467"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}