|
|
@ -98,7 +98,7 @@ FastAPI๋ ํ๋์ ์ด๊ณ , ๋น ๋ฅด๋ฉฐ(๊ณ ์ฑ๋ฅ), ํ์ด์ฌ ํ์ค ํ์
ํํธ |
|
|
|
|
|
|
|
<a href="https://typer.tiangolo.com" target="_blank"><img src="https://typer.tiangolo.com/img/logo-margin/logo-margin-vector.svg" style="width: 20%;"></a> |
|
|
|
|
|
|
|
์น API ๋์ ํฐ๋ฏธ๋์์ ์ฌ์ฉํ <abbr title="Command Line Interface">CLI</abbr> ์ฑ์ ๋ง๋ค๊ณ ์๋ค๋ฉด, <a href="https://typer.tiangolo.com/" class="external-link" target="_blank">**Typer**</a>๋ฅผ ํ์ธํด ๋ณด์ธ์. |
|
|
|
์น API ๋์ ํฐ๋ฏธ๋์์ ์ฌ์ฉํ <abbr title="Command Line Interface">CLI</abbr> ์ฑ์ ๋ง๋ค๊ณ ์๋ค๋ฉด, <a href="https://typer.tiangolo.com/" class="external-link" target="_blank">**Typer**</a>๋ฅผ ํ์ธํด ๋ณด์ญ์์ค. |
|
|
|
|
|
|
|
**Typer**๋ FastAPI์ ๋์์
๋๋ค. ๊ทธ๋ฆฌ๊ณ **FastAPI์ CLI**๊ฐ ๋๊ธฐ ์ํด ์๊ฒผ์ต๋๋ค. โจ๏ธ ๐ |
|
|
|
|
|
|
@ -139,7 +139,7 @@ $ pip install uvicorn[standard] |
|
|
|
|
|
|
|
### ๋ง๋ค๊ธฐ |
|
|
|
|
|
|
|
* `main.py` ํ์ผ์ ๋ง๋์ธ์: |
|
|
|
* `main.py` ํ์ผ์ ๋ง๋์ญ์์ค: |
|
|
|
|
|
|
|
```Python |
|
|
|
from typing import Optional |
|
|
@ -162,7 +162,7 @@ def read_item(item_id: int, q: Optional[str] = None): |
|
|
|
<details markdown="1"> |
|
|
|
<summary>๋๋ <code>async def</code> ์ฌ์ฉํ๊ธฐ...</summary> |
|
|
|
|
|
|
|
์ฌ๋ฌ๋ถ์ ์ฝ๋๊ฐ `async` / `await`์ ์ฌ์ฉํ๋ค๋ฉด, `async def`๋ฅผ ์ฌ์ฉํ์ธ์: |
|
|
|
์ฌ๋ฌ๋ถ์ ์ฝ๋๊ฐ `async` / `await`์ ์ฌ์ฉํ๋ค๋ฉด, `async def`๋ฅผ ์ฌ์ฉํ์ญ์์ค. |
|
|
|
|
|
|
|
```Python hl_lines="9 14" |
|
|
|
from typing import Optional |
|
|
@ -184,7 +184,7 @@ async def read_item(item_id: int, q: Optional[str] = None): |
|
|
|
|
|
|
|
**Note**: |
|
|
|
|
|
|
|
์ ๋ชจ๋ฅด๊ฒ ๋ค๋ฉด, <a href="https://fastapi.tiangolo.com/async/#in-a-hurry" target="_blank">๋ฌธ์์์ `async`์ `await`</a>์ ๊ดํ _"๊ธํ์ธ์?"_ ์น์
์ ํ์ธํด ๋ณด์ธ์. |
|
|
|
์ ๋ชจ๋ฅด๊ฒ ๋ค๋ฉด, <a href="https://fastapi.tiangolo.com/async/#in-a-hurry" target="_blank">๋ฌธ์์์ `async`์ `await`</a>์ ๊ดํ _"๊ธํ์ธ์?"_ ์น์
์ ํ์ธํด ๋ณด์ญ์์ค. |
|
|
|
|
|
|
|
</details> |
|
|
|
|
|
|
@ -213,13 +213,13 @@ INFO: Application startup complete. |
|
|
|
|
|
|
|
* `main`: `main.py` ํ์ผ (ํ์ด์ฌ "๋ชจ๋"). |
|
|
|
* `app`: the object created inside of `main.py` with the line `app = FastAPI()`. |
|
|
|
* `--reload`: ์ฝ๋๊ฐ ๋ณ๊ฒฝ๋ ํ ์๋ฒ ์ฌ์์ํ๊ธฐ. ๊ฐ๋ฐํ๊ฒฝ์์๋ง ์ฌ์ฉํ์ธ์. |
|
|
|
* `--reload`: ์ฝ๋๊ฐ ๋ณ๊ฒฝ๋ ํ ์๋ฒ ์ฌ์์ํ๊ธฐ. ๊ฐ๋ฐํ๊ฒฝ์์๋ง ์ฌ์ฉํ์ญ์์ค. |
|
|
|
|
|
|
|
</details> |
|
|
|
|
|
|
|
### ํ์ธํ๊ธฐ |
|
|
|
|
|
|
|
๋ธ๋ผ์ฐ์ ๋ก <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>๋ฅผ ์ด์ด๋ณด์ธ์. |
|
|
|
๋ธ๋ผ์ฐ์ ๋ก <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>๋ฅผ ์ด์ด๋ณด์ญ์์ค. |
|
|
|
|
|
|
|
์๋์ JSON ์๋ต์ ๋ณผ ์ ์์ต๋๋ค: |
|
|
|
|
|
|
@ -244,13 +244,13 @@ INFO: Application startup complete. |
|
|
|
|
|
|
|
### ๋์ API ๋ฌธ์ |
|
|
|
|
|
|
|
๊ทธ๋ฆฌ๊ณ ์ด์ <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>๋ก ๊ฐ๋ณด์ธ์. |
|
|
|
๊ทธ๋ฆฌ๊ณ ์ด์ <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>๋ก ๊ฐ๋ด
์๋ค. |
|
|
|
|
|
|
|
๋ค๋ฅธ ์๋ ๋ฌธ์๋ฅผ ๋ณผ ์ ์์ต๋๋ค(<a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a> ์ ๊ณต): |
|
|
|
|
|
|
|
 |
|
|
|
|
|
|
|
## ์์ ๊ฐ์ |
|
|
|
## ์์ ์ฌํ |
|
|
|
|
|
|
|
์ด์ `PUT` ์์ฒญ์ ์๋ ๋ณธ๋ฌธ(Body)์ ๋ฐ๊ธฐ ์ํด `main.py`๋ฅผ ์์ ํด๋ด
์๋ค. |
|
|
|
|
|
|
@ -314,7 +314,7 @@ def update_item(item_id: int, item: Item): |
|
|
|
|
|
|
|
### ์์ฝ |
|
|
|
|
|
|
|
์์ฝํ๋ฉด, ์ฌ๋ฌ๋ถ์ ๋งค๊ฐ๋ณ์์ ํ์
, ๋ณธ๋ฌธ ๋ฑ์ ํจ์ ๋งค๊ฐ๋ณ์๋ก์จ **ํ๋ฒ์** ์ ์ธํ์ต๋๋ค. |
|
|
|
์์ฝํ๋ฉด, ์ฌ๋ฌ๋ถ์ ๋งค๊ฐ๋ณ์์ ํ์
, ๋ณธ๋ฌธ ๋ฑ์ ํจ์ ๋งค๊ฐ๋ณ์๋ก์ **ํ๋ฒ์** ์ ์ธํ์ต๋๋ค. |
|
|
|
|
|
|
|
์ฌ๋ฌ๋ถ์ ํ๋ ํ์ค ํ์ด์ฌ ํ์
์ผ๋ก ์ด๋ฅผ ํํ์ต๋๋ค. |
|
|
|
|
|
|
@ -375,7 +375,7 @@ item: Item |
|
|
|
* `price`์ ํ์ ์์ฑ์ผ๋ก ๊ฐ๊ณ `float` ํ์ธ์ง ๊ฒ์ฌ. |
|
|
|
* ๋ง์ฝ ์ฃผ์ด์ง๋ค๋ฉด, `is_offer`๋ฅผ ์ ํ ์์ฑ์ผ๋ก ๊ฐ๊ณ `bool` ํ์ธ์ง ๊ฒ์ฌ. |
|
|
|
* ์ด ๋ชจ๋ ๊ฒ์ ๊น์ด ์ค์ฒฉ๋ JSON ๊ฐ์ฒด์๋ ์ ์ฉ๋ฉ๋๋ค. |
|
|
|
* JSON์ผ๋ก, ๊ทธ๋ฆฌ๊ณ ์์๋ถํฐ ์๋ ๋ณํ. |
|
|
|
* JSON์ ๋ณํํ๊ฑฐ๋ JSON์ผ๋ก ๋ณํํ๋ ๊ฒ์ ์๋ํ. |
|
|
|
* ๋ค์์์ ์ฌ์ฉํ ์ ์๋ ๋ชจ๋ ๊ฒ์ OpenAPI๋ก ๋ฌธ์ํ: |
|
|
|
* ๋ํํ ๋ฌธ์ ์์คํ
. |
|
|
|
* ์ฌ๋ฌ ์ธ์ด๋ค์ ๋ํ ์๋ ํด๋ผ์ด์ธํธ ์ฝ๋ ์์ฑ ์์คํ
. |
|
|
@ -403,11 +403,11 @@ item: Item |
|
|
|
... "item_price": item.price ... |
|
|
|
``` |
|
|
|
|
|
|
|
...๊ทธ๋ฌ๊ณ ๋์ ์ฌ๋ฌ๋ถ์ ํธ์ง๊ธฐ๊ฐ ์์ฑ๊ณผ ํ์
์ ์๊ณ ์๋ ์์ฑํ๋์ง ๋ณด์ธ์: |
|
|
|
...๊ทธ๋ฌ๊ณ ๋์ ์ฌ๋ฌ๋ถ์ ํธ์ง๊ธฐ๊ฐ ์์ฑ๊ณผ ํ์
์ ์๊ณ ์๋ ์์ฑํ๋์ง ๋ณด์ญ์์ค: |
|
|
|
|
|
|
|
 |
|
|
|
|
|
|
|
๋ ๋ง์ ๊ธฐ๋ฅ์ ํฌํจํ ๋ณด๋ค ์์ ํ ์์ ์ ๊ฒฝ์ฐ, <a href="https://fastapi.tiangolo.com/tutorial/">ํํ ๋ฆฌ์ผ - ์ฌ์ฉ์ ๊ฐ์ด๋</a>๋ฅผ ๋ณด์ธ์. |
|
|
|
๋ ๋ง์ ๊ธฐ๋ฅ์ ํฌํจํ ๋ณด๋ค ์์ ํ ์์ ์ ๊ฒฝ์ฐ, <a href="https://fastapi.tiangolo.com/tutorial/">ํํ ๋ฆฌ์ผ - ์ฌ์ฉ์ ๊ฐ์ด๋</a>๋ฅผ ๋ณด์ญ์์ค. |
|
|
|
|
|
|
|
**์คํฌ์ผ๋ฌ ์ฃผ์**: ํํ ๋ฆฌ์ผ - ์ฌ์ฉ์ ๊ฐ์ด๋๋: |
|
|
|
|
|
|
@ -428,9 +428,9 @@ item: Item |
|
|
|
|
|
|
|
๋
๋ฆฝ๋ TechEmpower ๋ฒค์น๋งํฌ์์ Uvicorn์์ ์๋ํ๋ FastAPI ์ดํ๋ฆฌ์ผ์ด์
์ด <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">์ฌ์ฉ ๊ฐ๋ฅํ ๊ฐ์ฅ ๋น ๋ฅธ ํ๋ ์์ํฌ ์ค ํ๋</a>๋ก Starlette์ Uvicorn(FastAPI์์ ๋ด๋ถ์ ์ผ๋ก ์ฌ์ฉ)์๋ง ๋ฐ๋๊ณ ์์ต๋๋ค. (*) |
|
|
|
|
|
|
|
์์ธํ ๋ด์ฉ์ <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">๋ฒค์น๋งํฌ</a> ์น์
์ ๋ณด์ธ์. |
|
|
|
์์ธํ ๋ด์ฉ์ <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">๋ฒค์น๋งํฌ</a> ์น์
์ ๋ณด์ญ์์ค. |
|
|
|
|
|
|
|
## ์ ํ๊ฐ๋ฅํ ์ข
์์ฌํญ |
|
|
|
## ์ ํ๊ฐ๋ฅํ ์์กด์ฑ |
|
|
|
|
|
|
|
Pydantic์ด ์ฌ์ฉํ๋: |
|
|
|
|
|
|
|