diff --git a/docs/az/mkdocs.yml b/docs/az/mkdocs.yml index 7f4a490d8..7d59451c1 100644 --- a/docs/az/mkdocs.yml +++ b/docs/az/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/de/mkdocs.yml b/docs/de/mkdocs.yml index f6e0a6b01..87fe74697 100644 --- a/docs/de/mkdocs.yml +++ b/docs/de/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -106,6 +107,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/em/docs/advanced/additional-responses.md b/docs/em/docs/advanced/additional-responses.md new file mode 100644 index 000000000..26963c2e3 --- /dev/null +++ b/docs/em/docs/advanced/additional-responses.md @@ -0,0 +1,240 @@ +# 🌖 📚 🗄 + +!!! warning + 👉 👍 🏧 ❔. + + 🚥 👆 ▶ ⏮ **FastAPI**, 👆 💪 🚫 💪 👉. + +👆 💪 📣 🌖 📚, ⏮ 🌖 👔 📟, 🔉 🆎, 📛, ♒. + +👈 🌖 📚 🔜 🔌 🗄 🔗, 👫 🔜 😑 🛠 🩺. + +✋ 👈 🌖 📚 👆 ✔ ⚒ 💭 👆 📚 `Response` 💖 `JSONResponse` 🔗, ⏮ 👆 👔 📟 & 🎚. + +## 🌖 📚 ⏮ `model` + +👆 💪 🚶‍♀ 👆 *➡ 🛠 👚‍🎚* 🔢 `responses`. + +⚫ 📚 `dict`, 🔑 👔 📟 🔠 📚, 💖 `200`, & 💲 🎏 `dict`Ⓜ ⏮ ℹ 🔠 👫. + +🔠 👈 📚 `dict`Ⓜ 💪 ✔ 🔑 `model`, ⚗ Pydantic 🏷, 💖 `response_model`. + +**FastAPI** 🔜 ✊ 👈 🏷, 🏗 🚮 🎻 🔗 & 🔌 ⚫ ☑ 🥉 🗄. + +🖌, 📣 ➕1⃣ 📚 ⏮ 👔 📟 `404` & Pydantic 🏷 `Message`, 👆 💪 ✍: + +```Python hl_lines="18 22" +{!../../../docs_src/additional_responses/tutorial001.py!} +``` + +!!! note + ✔ 🀯 👈 👆 ✔ 📚 `JSONResponse` 🔗. + +!!! info + `model` 🔑 🚫 🍕 🗄. + + **FastAPI** 🔜 ✊ Pydantic 🏷 ⚪➡ 📀, 🏗 `JSON Schema`, & 🚮 ⚫ ☑ 🥉. + + ☑ 🥉: + + * 🔑 `content`, 👈 ✔ 💲 ➕1⃣ 🎻 🎚 (`dict`) 👈 🔌: + * 🔑 ⏮ 📻 🆎, ✅ `application/json`, 👈 🔌 💲 ➕1⃣ 🎻 🎚, 👈 🔌: + * 🔑 `schema`, 👈 ✔ 💲 🎻 🔗 ⚪➡ 🏷, 📥 ☑ 🥉. + * **FastAPI** 🚮 🔗 📥 🌐 🎻 🔗 ➕1⃣ 🥉 👆 🗄 ↩ ✅ ⚫ 🔗. 👉 🌌, 🎏 🈞 & 👩‍💻 💪 ⚙ 👈 🎻 🔗 🔗, 🚚 👻 📟 ⚡ 🧰, ♒. + +🏗 📚 🗄 👉 *➡ 🛠* 🔜: + +```JSON hl_lines="3-12" +{ + "responses": { + "404": { + "description": "Additional Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Message" + } + } + } + }, + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Item" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } +} +``` + +🔗 🔗 ➕1⃣ 🥉 🔘 🗄 🔗: + +```JSON hl_lines="4-16" +{ + "components": { + "schemas": { + "Message": { + "title": "Message", + "required": [ + "message" + ], + "type": "object", + "properties": { + "message": { + "title": "Message", + "type": "string" + } + } + }, + "Item": { + "title": "Item", + "required": [ + "id", + "value" + ], + "type": "object", + "properties": { + "id": { + "title": "Id", + "type": "string" + }, + "value": { + "title": "Value", + "type": "string" + } + } + }, + "ValidationError": { + "title": "ValidationError", + "required": [ + "loc", + "msg", + "type" + ], + "type": "object", + "properties": { + "loc": { + "title": "Location", + "type": "array", + "items": { + "type": "string" + } + }, + "msg": { + "title": "Message", + "type": "string" + }, + "type": { + "title": "Error Type", + "type": "string" + } + } + }, + "HTTPValidationError": { + "title": "HTTPValidationError", + "type": "object", + "properties": { + "detail": { + "title": "Detail", + "type": "array", + "items": { + "$ref": "#/components/schemas/ValidationError" + } + } + } + } + } + } +} +``` + +## 🌖 🔉 🆎 👑 📚 + +👆 💪 ⚙ 👉 🎏 `responses` 🔢 🚮 🎏 🔉 🆎 🎏 👑 📚. + +🖌, 👆 💪 🚮 🌖 📻 🆎 `image/png`, 📣 👈 👆 *➡ 🛠* 💪 📚 🎻 🎚 (⏮ 📻 🆎 `application/json`) ⚖ 🇩🇎 🖌: + +```Python hl_lines="19-24 28" +{!../../../docs_src/additional_responses/tutorial002.py!} +``` + +!!! note + 👀 👈 👆 ✔ 📚 🖌 ⚙ `FileResponse` 🔗. + +!!! info + 🚥 👆 ✔ 🎏 📻 🆎 🎯 👆 `responses` 🔢, FastAPI 🔜 🀔 📚 ✔ 🎏 📻 🆎 👑 📚 🎓 (🔢 `application/json`). + + ✋ 🚥 👆 ✔ ✔ 🛃 📚 🎓 ⏮ `None` 🚮 📻 🆎, FastAPI 🔜 ⚙ `application/json` 🙆 🌖 📚 👈 ✔ 👚‍💌 🏷. + +## 🌀 ℹ + +👆 💪 🌀 📚 ℹ ⚪➡ 💗 🥉, 🔌 `response_model`, `status_code`, & `responses` 🔢. + +👆 💪 📣 `response_model`, ⚙ 🔢 👔 📟 `200` (⚖ 🛃 1⃣ 🚥 👆 💪), & ‎ 📣 🌖 ℹ 👈 🎏 📚 `responses`, 🔗 🗄 🔗. + +**FastAPI** 🔜 🚧 🌖 ℹ ⚪➡ `responses`, & 🌀 ⚫ ⏮ 🎻 🔗 ⚪➡ 👆 🏷. + +🖌, 👆 💪 📣 📚 ⏮ 👔 📟 `404` 👈 ⚙ Pydantic 🏷 & ✔ 🛃 `description`. + +& 📚 ⏮ 👔 📟 `200` 👈 ⚙ 👆 `response_model`, ✋ 🔌 🛃 `example`: + +```Python hl_lines="20-31" +{!../../../docs_src/additional_responses/tutorial003.py!} +``` + +⚫ 🔜 🌐 🌀 & 🔌 👆 🗄, & 🎊 🛠 🩺: + + + +## 🌀 🔢 📚 & 🛃 🕐 + +👆 💪 💚 ✔ 🔁 📚 👈 ✔ 📚 *➡ 🛠*, ✋ 👆 💚 🌀 👫 ⏮ 🛃 📚 💚 🔠 *➡ 🛠*. + +📚 💌, 👆 💪 ⚙ 🐍 ⚒ "🏗" `dict` ⏮ `**dict_to_unpack`: + +```Python +old_dict = { + "old key": "old value", + "second old key": "second old value", +} +new_dict = {**old_dict, "new key": "new value"} +``` + +📥, `new_dict` 🔜 🔌 🌐 🔑-💲 👫 ⚪➡ `old_dict` ➕ 🆕 🔑-💲 👫: + +```Python +{ + "old key": "old value", + "second old key": "second old value", + "new key": "new value", +} +``` + +👆 💪 ⚙ 👈 ⚒ 🏀-⚙ 🔢 📚 👆 *➡ 🛠* & 🌀 👫 ⏮ 🌖 🛃 🕐. + +🖌: + +```Python hl_lines="13-17 26" +{!../../../docs_src/additional_responses/tutorial004.py!} +``` + +## 🌖 ℹ 🔃 🗄 📚 + +👀 ⚫❔ ⚫❔ 👆 💪 🔌 📚, 👆 💪 ✅ 👉 📄 🗄 🔧: + +* 🗄 📚 🎚, ⚫ 🔌 `Response Object`. +* 🗄 📚 🎚, 👆 💪 🔌 🕳 ⚪➡ 👉 🔗 🔠 📚 🔘 👆 `responses` 🔢. ✅ `description`, `headers`, `content` (🔘 👉 👈 👆 📣 🎏 🔉 🆎 & 🎻 🔗), & `links`. diff --git a/docs/em/docs/advanced/additional-status-codes.md b/docs/em/docs/advanced/additional-status-codes.md new file mode 100644 index 000000000..392579df6 --- /dev/null +++ b/docs/em/docs/advanced/additional-status-codes.md @@ -0,0 +1,37 @@ +# 🌖 👔 📟 + +🔢, **FastAPI** 🔜 📚 📚 ⚙ `JSONResponse`, 🚮 🎚 👆 📚 ⚪➡ 👆 *➡ 🛠* 🔘 👈 `JSONResponse`. + +⚫ 🔜 ⚙ 🔢 👔 📟 ⚖ 1⃣ 👆 ⚒ 👆 *➡ 🛠*. + +## 🌖 👔 📟 + +🚥 👆 💚 📚 🌖 👔 📟 ↖ ⚪➡ 👑 1⃣, 👆 💪 👈 🛬 `Response` 🔗, 💖 `JSONResponse`, & ⚒ 🌖 👔 📟 🔗. + +🖌, ➡ 💬 👈 👆 💚 ✔ *➡ 🛠* 👈 ✔ ℹ 🏬, & 📚 🇺🇞🔍 👔 📟 2⃣0⃣0⃣ "👌" 🕐❔ 🏆. + +✋ 👆 💚 ⚫ 🚫 🆕 🏬. & 🕐❔ 🏬 🚫 🔀 ⏭, ⚫ ✍ 👫, & 📚 🇺🇞🔍 👔 📟 2⃣0⃣1⃣ "✍". + +🏆 👈, 🗄 `JSONResponse`, & 📚 👆 🎚 📀 🔗, ⚒ `status_code` 👈 👆 💚: + +```Python hl_lines="4 25" +{!../../../docs_src/additional_status_codes/tutorial001.py!} +``` + +!!! warning + 🕐❔ 👆 📚 `Response` 🔗, 💖 🖌 🔛, ⚫ 🔜 📚 🔗. + + ⚫ 🏆 🚫 🎻 ⏮ 🏷, ♒. + + ⚒ 💭 ⚫ ✔ 📊 👆 💚 ⚫ ✔, & 👈 💲 ☑ 🎻 (🚥 👆 ⚙ `JSONResponse`). + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import JSONResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. 🎏 ⏮ `status`. + +## 🗄 & 🛠 🩺 + +🚥 👆 📚 🌖 👔 📟 & 📚 🔗, 👫 🏆 🚫 🔌 🗄 🔗 (🛠 🩺), ↩ FastAPI 🚫 ✔ 🌌 💭 ⏪ ⚫❔ 👆 🚶 📚. + +✋ 👆 💪 📄 👈 👆 📟, ⚙: [🌖 📚](additional-responses.md){.internal-link target=_blank}. diff --git a/docs/em/docs/advanced/advanced-dependencies.md b/docs/em/docs/advanced/advanced-dependencies.md new file mode 100644 index 000000000..fa1554734 --- /dev/null +++ b/docs/em/docs/advanced/advanced-dependencies.md @@ -0,0 +1,70 @@ +# 🏧 🔗 + +## 🔗 🔗 + +🌐 🔗 👥 ✔ 👀 🔧 🔢 ⚖ 🎓. + +✋ 📀 💪 💌 🌐❔ 👆 💚 💪 ⚒ 🔢 🔛 🔗, 🍵 ✔ 📣 📚 🎏 🔢 ⚖ 🎓. + +➡ 🌈 👈 👥 💚 ✔ 🔗 👈 ✅ 🚥 🔢 🔢 `q` 🔌 🔧 🎚. + +✋ 👥 💚 💪 🔗 👈 🔧 🎚. + +## "🇧🇲" 👐 + +🐍 📀 🌌 ⚒ 👐 🎓 "🇧🇲". + +🚫 🎓 ⚫ (❔ ⏪ 🇧🇲), ✋ 👐 👈 🎓. + +👈, 👥 📣 👩‍🔬 `__call__`: + +```Python hl_lines="10" +{!../../../docs_src/dependencies/tutorial011.py!} +``` + +👉 💌, 👉 `__call__` ⚫❔ **FastAPI** 🔜 ⚙ ✅ 🌖 🔢 & 🎧-🔗, & 👉 ⚫❔ 🔜 🀙 🚶‍♀ 💲 🔢 👆 *➡ 🛠 🔢* ⏪. + +## 🔗 👐 + +& 🔜, 👥 💪 ⚙ `__init__` 📣 🔢 👐 👈 👥 💪 ⚙ "🔗" 🔗: + +```Python hl_lines="7" +{!../../../docs_src/dependencies/tutorial011.py!} +``` + +👉 💌, **FastAPI** 🏆 🚫 ⏱ 👆 ⚖ 💅 🔃 `__init__`, 👥 🔜 ⚙ ⚫ 🔗 👆 📟. + +## ✍ 👐 + +👥 💪 ✍ 👐 👉 🎓 ⏮: + +```Python hl_lines="16" +{!../../../docs_src/dependencies/tutorial011.py!} +``` + +& 👈 🌌 👥 💪 "🔗" 👆 🔗, 👈 🔜 ✔ `"bar"` 🔘 ⚫, 🔢 `checker.fixed_content`. + +## ⚙ 👐 🔗 + +‎, 👥 💪 ⚙ 👉 `checker` `Depends(checker)`, ↩ `Depends(FixedContentQueryChecker)`, ↩ 🔗 👐, `checker`, 🚫 🎓 ⚫. + +& 🕐❔ ❎ 🔗, **FastAPI** 🔜 🀙 👉 `checker` 💖: + +```Python +checker(q="somequery") +``` + +...& 🚶‍♀ ⚫❔ 👈 📚 💲 🔗 👆 *➡ 🛠 🔢* 🔢 `fixed_content_included`: + +```Python hl_lines="20" +{!../../../docs_src/dependencies/tutorial011.py!} +``` + +!!! tip + 🌐 👉 💪 😑 🎭. & ⚫ 💪 🚫 📶 🆑 ❔ ⚫ ⚠. + + 👫 🖌 😫 🙅, ✋ 🎊 ❔ ⚫ 🌐 👷. + + 📃 🔃 💂‍♂, 📀 🚙 🔢 👈 🛠 👉 🎏 🌌. + + 🚥 👆 🀔 🌐 👉, 👆 ⏪ 💭 ❔ 👈 🚙 🧰 💂‍♂ 👷 🔘. diff --git a/docs/em/docs/advanced/async-sql-databases.md b/docs/em/docs/advanced/async-sql-databases.md new file mode 100644 index 000000000..848936de1 --- /dev/null +++ b/docs/em/docs/advanced/async-sql-databases.md @@ -0,0 +1,162 @@ +# 🔁 🗄 (🔗) 💜 + +👆 💪 ⚙ `encode/databases` ⏮ **FastAPI** 🔗 💜 ⚙ `async` & `await`. + +⚫ 🔗 ⏮: + +* ✳ +* ✳ +* 🗄 + +👉 🖌, 👥 🔜 ⚙ **🗄**, ↩ ⚫ ⚙ 👁 📁 & 🐍 ✔ 🛠 🐕‍🊺. , 👆 💪 📁 👉 🖌 & 🏃 ⚫. + +⏪, 👆 🏭 🈞, 👆 💪 💚 ⚙ 💜 💜 💖 **✳**. + +!!! tip + 👆 💪 🛠 💭 ⚪➡ 📄 🔃 🇞🇲 🐜 ([🗄 (🔗) 💜](../tutorial/sql-databases.md){.internal-link target=_blank}), 💖 ⚙ 🚙 🔢 🎭 🛠 💜, 🔬 👆 **FastAPI** 📟. + + 👉 📄 🚫 ✔ 📚 💭, 🌓 😑 💃. + +## 🗄 & ⚒ 🆙 `SQLAlchemy` + +* 🗄 `SQLAlchemy`. +* ✍ `metadata` 🎚. +* ✍ 🏓 `notes` ⚙ `metadata` 🎚. + +```Python hl_lines="4 14 16-22" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +!!! tip + 👀 👈 🌐 👉 📟 😁 🇞🇲 🐚. + + `databases` 🚫 🔚 🕳 📥. + +## 🗄 & ⚒ 🆙 `databases` + +* 🗄 `databases`. +* ✍ `DATABASE_URL`. +* ✍ `database` 🎚. + +```Python hl_lines="3 9 12" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +!!! tip + 🚥 👆 🔗 🎏 💜 (✅ ✳), 👆 🔜 💪 🔀 `DATABASE_URL`. + +## ✍ 🏓 + +👉 💌, 👥 🏗 🏓 🎏 🐍 📁, ✋ 🏭, 👆 🔜 🎲 💚 ✍ 👫 ⏮ ⚗, 🛠 ⏮ 🛠, ♒. + +📥, 👉 📄 🔜 🏃 🔗, ▶ ⏭ ▶ 👆 **FastAPI** 🈞. + +* ✍ `engine`. +* ✍ 🌐 🏓 ⚪➡ `metadata` 🎚. + +```Python hl_lines="25-28" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +## ✍ 🏷 + +✍ Pydantic 🏷: + +* 🗒 ✍ (`NoteIn`). +* 🗒 📚 (`Note`). + +```Python hl_lines="31-33 36-39" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +🏗 👫 Pydantic 🏷, 🔢 💜 🔜 ✔, 🎻 (🗜), & ✍ (📄). + +, 👆 🔜 💪 👀 ⚫ 🌐 🎓 🛠 🩺. + +## 🔗 & 🔌 + +* ✍ 👆 `FastAPI` 🈞. +* ✍ 🎉 🐕‍🊺 🔗 & 🔌 ⚪➡ 💜. + +```Python hl_lines="42 45-47 50-52" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +## ✍ 🗒 + +✍ *➡ 🛠 🔢* ✍ 🗒: + +```Python hl_lines="55-58" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +!!! Note + 👀 👈 👥 🔗 ⏮ 💜 ⚙ `await`, *➡ 🛠 🔢* 📣 ⏮ `async`. + +### 👀 `response_model=List[Note]` + +⚫ ⚙ `typing.List`. + +👈 📄 (& ✔, 🎻, ⛜) 🔢 💜, `list` `Note`Ⓜ. + +## ✍ 🗒 + +✍ *➡ 🛠 🔢* ✍ 🗒: + +```Python hl_lines="61-65" +{!../../../docs_src/async_sql_databases/tutorial001.py!} +``` + +!!! Note + 👀 👈 👥 🔗 ⏮ 💜 ⚙ `await`, *➡ 🛠 🔢* 📣 ⏮ `async`. + +### 🔃 `{**note.dict(), "id": last_record_id}` + +`note` Pydantic `Note` 🎚. + +`note.dict()` 📚 `dict` ⏮ 🚮 💜, 🕳 💖: + +```Python +{ + "text": "Some note", + "completed": False, +} +``` + +✋ ⚫ 🚫 ✔ `id` 🏑. + +👥 ✍ 🆕 `dict`, 👈 🔌 🔑-💲 👫 ⚪➡ `note.dict()` ⏮: + +```Python +{**note.dict()} +``` + +`**note.dict()` "unpacks" the key value pairs directly, so, `{**note.dict()}` would be, more or less, a copy of `note.dict()`. + +& ‎, 👥 ↔ 👈 📁 `dict`, ❎ ➕1⃣ 🔑-💲 👫: `"id": last_record_id`: + +```Python +{**note.dict(), "id": last_record_id} +``` + +, 🏁 🏁 📚 🔜 🕳 💖: + +```Python +{ + "id": 1, + "text": "Some note", + "completed": False, +} +``` + +## ✅ ⚫ + +👆 💪 📁 👉 📟, & 👀 🩺 http://127.0.0.1:8000/docs. + +📀 👆 💪 👀 🌐 👆 🛠 📄 & 🔗 ⏮ ⚫: + + + +## 🌅 ℹ + +👆 💪 ✍ 🌅 🔃 `encode/databases` 🚮 📂 📃. diff --git a/docs/em/docs/advanced/async-tests.md b/docs/em/docs/advanced/async-tests.md new file mode 100644 index 000000000..df94c6ce7 --- /dev/null +++ b/docs/em/docs/advanced/async-tests.md @@ -0,0 +1,92 @@ +# 🔁 💯 + +👆 ✔ ⏪ 👀 ❔ 💯 👆 **FastAPI** 🈞 ⚙ 🚚 `TestClient`. 🆙 🔜, 👆 ✔ 🕎 👀 ❔ ✍ 🔁 💯, 🍵 ⚙ `async` 🔢. + +➖ 💪 ⚙ 🔁 🔢 👆 💯 💪 ⚠, 🖌, 🕐❔ 👆 🔬 👆 💜 🔁. 🌈 👆 💚 💯 📚 📚 👆 FastAPI 🈞 & ‎ ✔ 👈 👆 👩‍💻 ⏪ ✍ ☑ 💜 💜, ⏪ ⚙ 🔁 💜 🗃. + +➡ 👀 ❔ 👥 💪 ⚒ 👈 👷. + +## pytest.mark.anyio + +🚥 👥 💚 🀙 🔁 🔢 👆 💯, 👆 💯 🔢 ✔ 🔁. AnyIO 🚚 👌 📁 👉, 👈 ✔ 👥 ✔ 👈 💯 🔢 🀙 🔁. + +## 🇞🇲 + +🚥 👆 **FastAPI** 🈞 ⚙ 😐 `def` 🔢 ↩ `async def`, ⚫ `async` 🈞 🔘. + +`TestClient` 🔚 🎱 🔘 🀙 🔁 FastAPI 🈞 👆 😐 `def` 💯 🔢, ⚙ 🐩 ✳. ✋ 👈 🎱 🚫 👷 🚫🔜 🕐❔ 👥 ⚙ ⚫ 🔘 🔁 🔢. 🏃 👆 💯 🔁, 👥 💪 🙅‍♂ 📏 ⚙ `TestClient` 🔘 👆 💯 🔢. + +`TestClient` ⚓ 🔛 🇞🇲, & ↩, 👥 💪 ⚙ ⚫ 🔗 💯 🛠. + +## 🖌 + +🙅 🖌, ➡ 🀔 📁 📊 🎏 1⃣ 🔬 [🊏 🈞](../tutorial/bigger-applications.md){.internal-link target=_blank} & [🔬](../tutorial/testing.md){.internal-link target=_blank}: + +``` +. +├── app +│   ├── __init__.py +│   ├── main.py +│   └── test_main.py +``` + +📁 `main.py` 🔜 ✔: + +```Python +{!../../../docs_src/async_tests/main.py!} +``` + +📁 `test_main.py` 🔜 ✔ 💯 `main.py`, ⚫ 💪 👀 💖 👉 🔜: + +```Python +{!../../../docs_src/async_tests/test_main.py!} +``` + +## 🏃 ⚫ + +👆 💪 🏃 👆 💯 🐌 📚: + +
+ +```console +$ pytest + +---> 100% +``` + +
+ +## ℹ + +📑 `@pytest.mark.anyio` 💬 ✳ 👈 👉 💯 🔢 🔜 🀙 🔁: + +```Python hl_lines="7" +{!../../../docs_src/async_tests/test_main.py!} +``` + +!!! tip + 🗒 👈 💯 🔢 🔜 `async def` ↩ `def` ⏭ 🕐❔ ⚙ `TestClient`. + +‎ 👥 💪 ✍ `AsyncClient` ⏮ 📱, & 📚 🔁 📚 ⚫, ⚙ `await`. + +```Python hl_lines="9-10" +{!../../../docs_src/async_tests/test_main.py!} +``` + +👉 🌓: + +```Python +response = client.get('/') +``` + +...👈 👥 ⚙ ⚒ 👆 📚 ⏮ `TestClient`. + +!!! tip + 🗒 👈 👥 ⚙ 🔁/⌛ ⏮ 🆕 `AsyncClient` - 📚 🔁. + +## 🎏 🔁 🔢 🀙 + +🔬 🔢 🔜 🔁, 👆 💪 🔜 🀙 (& `await`) 🎏 `async` 🔢 ↖ ⚪➡ 📚 📚 👆 FastAPI 🈞 👆 💯, ⚫❔ 👆 🔜 🀙 👫 🙆 🙆 👆 📟. + +!!! tip + 🚥 👆 ⚔ `RuntimeError: Task attached to a different loop` 🕐❔ 🛠 🔁 🔢 🀙 👆 💯 (✅ 🕐❔ ⚙ ✳ MotorClient) 💭 🔗 🎚 👈 💪 🎉 ➰ 🕎 🏞 🔁 🔢, ✅ `'@app.on_event("startup")` ⏲. diff --git a/docs/em/docs/advanced/behind-a-proxy.md b/docs/em/docs/advanced/behind-a-proxy.md new file mode 100644 index 000000000..12afe638c --- /dev/null +++ b/docs/em/docs/advanced/behind-a-proxy.md @@ -0,0 +1,346 @@ +# ⛅ 🗳 + +⚠, 👆 5⃣📆 💪 ⚙ **🗳** 💜 💖 Traefik ⚖ 👌 ⏮ 📳 👈 🚮 ➕ ➡ 🔡 👈 🚫 👀 👆 🈞. + +👫 💌 👆 💪 ⚙ `root_path` 🔗 👆 🈞. + +`root_path` 🛠 🚚 🔫 🔧 (👈 FastAPI 🏗 🔛, 🔘 💃). + +`root_path` ⚙ 🍵 👫 🎯 💌. + +& ⚫ ⚙ 🔘 🕐❔ 🗜 🎧-🈞. + +## 🗳 ⏮ 🎞 ➡ 🔡 + +✔ 🗳 ⏮ 🎞 ➡ 🔡, 👉 💌, ⛓ 👈 👆 💪 📣 ➡ `/app` 👆 📟, ✋ ‎, 👆 🚮 🧜 🔛 🔝 (🗳) 👈 🔜 🚮 👆 **FastAPI** 🈞 🔜 ➡ 💖 `/api/v1`. + +👉 💌, ⏮ ➡ `/app` 🔜 🀙 🍊 `/api/v1/app`. + +✋ 🌐 👆 📟 ✍ 🀔 📀 `/app`. + +& 🗳 🔜 **"❎"** **➡ 🔡** 🔛 ✈ ⏭ 📶 📚 Uvicorn, 🚧 👆 🈞 🀔 👈 ⚫ 🍊 `/app`, 👈 👆 🚫 ✔ ℹ 🌐 👆 📟 🔌 🔡 `/api/v1`. + +🆙 📥, 🌐 🔜 👷 🛎. + +✋ ‎, 🕐❔ 👆 📂 🛠 🩺 🎚 (🕞), ⚫ 🔜 ⌛ 🀚 🗄 🔗 `/openapi.json`, ↩ `/api/v1/openapi.json`. + +, 🕞 (👈 🏃 🖥) 🔜 🔄 🏆 `/openapi.json` & 🚫🔜 💪 🀚 🗄 🔗. + +↩ 👥 ✔ 🗳 ⏮ ➡ 🔡 `/api/v1` 👆 📱, 🕞 💪 ☕ 🗄 🔗 `/api/v1/openapi.json`. + +```mermaid +graph LR + +browser("Browser") +proxy["Proxy on http://0.0.0.0:9999/api/v1/app"] +server["Server on http://127.0.0.1:8000/app"] + +browser --> proxy +proxy --> server +``` + +!!! tip + 📢 `0.0.0.0` 🛎 ⚙ ⛓ 👈 📋 👂 🔛 🌐 📢 💪 👈 🎰/💜. + +🩺 🎚 🔜 💪 🗄 🔗 📣 👈 👉 🛠 `server` 🔎 `/api/v1` (⛅ 🗳). 🖌: + +```JSON hl_lines="4-8" +{ + "openapi": "3.0.2", + // More stuff here + "servers": [ + { + "url": "/api/v1" + } + ], + "paths": { + // More stuff here + } +} +``` + +👉 🖌, "🗳" 💪 🕳 💖 **Traefik**. & 💜 🔜 🕳 💖 **Uvicorn**, 🏃‍♂ 👆 FastAPI 🈞. + +### 🚚 `root_path` + +🏆 👉, 👆 💪 ⚙ 📋 ⏞ 🎛 `--root-path` 💖: + +
+ +```console +$ uvicorn main:app --root-path /api/v1 + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +🚥 👆 ⚙ Hypercorn, ⚫ ✔ 🎛 `--root-path`. + +!!! note "📡 ℹ" + 🔫 🔧 🔬 `root_path` 👉 ⚙ 💌. + + & `--root-path` 📋 ⏞ 🎛 🚚 👈 `root_path`. + +### ✅ ⏮ `root_path` + +👆 💪 🀚 ⏮ `root_path` ⚙ 👆 🈞 🔠 📚, ⚫ 🍕 `scope` 📖 (👈 🍕 🔫 🔌). + +📥 👥 ✅ ⚫ 📧 🎊 🎯. + +```Python hl_lines="8" +{!../../../docs_src/behind_a_proxy/tutorial001.py!} +``` + +‎, 🚥 👆 ▶ Uvicorn ⏮: + +
+ +```console +$ uvicorn main:app --root-path /api/v1 + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +📚 🔜 🕳 💖: + +```JSON +{ + "message": "Hello World", + "root_path": "/api/v1" +} +``` + +### ⚒ `root_path` FastAPI 📱 + +👐, 🚥 👆 🚫 ✔ 🌌 🚚 📋 ⏞ 🎛 💖 `--root-path` ⚖ 🌓, 👆 💪 ⚒ `root_path` 🔢 🕐❔ 🏗 👆 FastAPI 📱: + +```Python hl_lines="3" +{!../../../docs_src/behind_a_proxy/tutorial002.py!} +``` + +🚶‍♀ `root_path` `FastAPI` 🔜 🌓 🚶‍♀ `--root-path` 📋 ⏞ 🎛 Uvicorn ⚖ Hypercorn. + +### 🔃 `root_path` + +✔ 🀯 👈 💜 (Uvicorn) 🏆 🚫 ⚙ 👈 `root_path` 🕳 🙆 🌘 🚶‍♀ ⚫ 📱. + +✋ 🚥 👆 🚶 ⏮ 👆 🖥 http://127.0.0.1:8000/app 👆 🔜 👀 😐 📚: + +```JSON +{ + "message": "Hello World", + "root_path": "/api/v1" +} +``` + +, ⚫ 🏆 🚫 ⌛ 🔐 `http://127.0.0.1:8000/api/v1/app`. + +Uvicorn 🔜 ⌛ 🗳 🔐 Uvicorn `http://127.0.0.1:8000/app`, & ‎ ⚫ 🔜 🗳 🎯 🚮 ➕ `/api/v1` 🔡 🔛 🔝. + +## 🔃 🗳 ⏮ 🎞 ➡ 🔡 + +✔ 🀯 👈 🗳 ⏮ 🎞 ➡ 🔡 🕎 1⃣ 🌌 🔗 ⚫. + +🎲 📚 💌 🔢 🔜 👈 🗳 🚫 ✔ 🏚 ➡ 🔡. + +💌 💖 👈 (🍵 🎞 ➡ 🔡), 🗳 🔜 👂 🔛 🕳 💖 `https://myawesomeapp.com`, & ‎ 🚥 🖥 🚶 `https://myawesomeapp.com/api/v1/app` & 👆 💜 (✅ Uvicorn) 👂 🔛 `http://127.0.0.1:8000` 🗳 (🍵 🎞 ➡ 🔡) 🔜 🔐 Uvicorn 🎏 ➡: `http://127.0.0.1:8000/api/v1/app`. + +## 🔬 🌐 ⏮ Traefik + +👆 💪 💪 🏃 🥌 🌐 ⏮ 🎞 ➡ 🔡 ⚙ Traefik. + +⏬ Traefik, ⚫ 👁 💱, 👆 💪 ⚗ 🗜 📁 & 🏃 ⚫ 🔗 ⚪➡ 📶. + +‎ ✍ 📁 `traefik.toml` ⏮: + +```TOML hl_lines="3" +[entryPoints] + [entryPoints.http] + address = ":9999" + +[providers] + [providers.file] + filename = "routes.toml" +``` + +👉 💬 Traefik 👂 🔛 ⛮ 9⃣9⃣9⃣9⃣ & ⚙ ➕1⃣ 📁 `routes.toml`. + +!!! tip + 👥 ⚙ ⛮ 9⃣9⃣9⃣9⃣ ↩ 🐩 🇺🇞🔍 ⛮ 8⃣0⃣ 👈 👆 🚫 ✔ 🏃 ⚫ ⏮ 📡 (`sudo`) 😌. + +🔜 ✍ 👈 🎏 📁 `routes.toml`: + +```TOML hl_lines="5 12 20" +[http] + [http.middlewares] + + [http.middlewares.api-stripprefix.stripPrefix] + prefixes = ["/api/v1"] + + [http.routers] + + [http.routers.app-http] + entryPoints = ["http"] + service = "app" + rule = "PathPrefix(`/api/v1`)" + middlewares = ["api-stripprefix"] + + [http.services] + + [http.services.app] + [http.services.app.loadBalancer] + [[http.services.app.loadBalancer.servers]] + url = "http://127.0.0.1:8000" +``` + +👉 📁 🔗 Traefik ⚙ ➡ 🔡 `/api/v1`. + +& ‎ ⚫ 🔜 ❎ 🚮 📚 👆 Uvicorn 🏃‍♂ 🔛 `http://127.0.0.1:8000`. + +🔜 ▶ Traefik: + +
+ +```console +$ ./traefik --configFile=traefik.toml + +INFO[0000] Configuration loaded from file: /home/user/awesomeapi/traefik.toml +``` + +
+ +& 🔜 ▶ 👆 📱 ⏮ Uvicorn, ⚙ `--root-path` 🎛: + +
+ +```console +$ uvicorn main:app --root-path /api/v1 + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +### ✅ 📚 + +🔜, 🚥 👆 🚶 📛 ⏮ ⛮ Uvicorn: http://127.0.0.1:8000/app, 👆 🔜 👀 😐 📚: + +```JSON +{ + "message": "Hello World", + "root_path": "/api/v1" +} +``` + +!!! tip + 👀 👈 ✋ 👆 🔐 ⚫ `http://127.0.0.1:8000/app` ⚫ 🎊 `root_path` `/api/v1`, ✊ ⚪➡ 🎛 `--root-path`. + +& 🔜 📂 📛 ⏮ ⛮ Traefik, ✅ ➡ 🔡: http://127.0.0.1:9999/api/v1/app. + +👥 🀚 🎏 📚: + +```JSON +{ + "message": "Hello World", + "root_path": "/api/v1" +} +``` + +✋ 👉 🕰 📛 ⏮ 🔡 ➡ 🚚 🗳: `/api/v1`. + +↗, 💭 📥 👈 👱 🔜 🔐 📱 🔘 🗳, ⏬ ⏮ ➡ 🔡 `/app/v1` "☑" 1⃣. + +& ⏬ 🍵 ➡ 🔡 (`http://127.0.0.1:8000/app`), 🚚 Uvicorn 🔗, 🔜 🎯 _🗳_ (Traefik) 🔐 ⚫. + +👈 🎊 ❔ 🗳 (Traefik) ⚙ ➡ 🔡 & ❔ 💜 (Uvicorn) ⚙ `root_path` ⚪➡ 🎛 `--root-path`. + +### ✅ 🩺 🎚 + +✋ 📥 🎊 🍕. 👶 + +"🛂" 🌌 🔐 📱 🔜 🔘 🗳 ⏮ ➡ 🔡 👈 👥 🔬. , 👥 🔜 ⌛, 🚥 👆 🔄 🩺 🎚 🍊 Uvicorn 🔗, 🍵 ➡ 🔡 📛, ⚫ 🏆 🚫 👷, ↩ ⚫ ⌛ 🔐 🔘 🗳. + +👆 💪 ✅ ⚫ http://127.0.0.1:8000/docs: + + + +✋ 🚥 👥 🔐 🩺 🎚 "🛂" 📛 ⚙ 🗳 ⏮ ⛮ `9999`, `/api/v1/docs`, ⚫ 👷 ☑ ❗ 👶 + +👆 💪 ✅ ⚫ http://127.0.0.1:9999/api/v1/docs: + + + +▶ 👥 💚 ⚫. 👶 👶 + +👉 ↩ FastAPI ⚙ 👉 `root_path` ✍ 🔢 `server` 🗄 ⏮ 📛 🚚 `root_path`. + +## 🌖 💜 + +!!! warning + 👉 🌅 🏧 ⚙ 💌. 💭 🆓 🚶 ⚫. + +🔢, **FastAPI** 🔜 ✍ `server` 🗄 🔗 ⏮ 📛 `root_path`. + +✋ 👆 💪 🚚 🎏 🎛 `servers`, 🖌 🚥 👆 💚 *🎏* 🩺 🎚 🔗 ⏮ 🏗 & 🏭 🌐. + +🚥 👆 🚶‍♀ 🛃 📇 `servers` & 📀 `root_path` (↩ 👆 🛠 👚‍❀‍👚 ⛅ 🗳), **FastAPI** 🔜 📩 "💜" ⏮ 👉 `root_path` ▶ 📇. + +🖌: + +```Python hl_lines="4-7" +{!../../../docs_src/behind_a_proxy/tutorial003.py!} +``` + +🔜 🏗 🗄 🔗 💖: + +```JSON hl_lines="5-7" +{ + "openapi": "3.0.2", + // More stuff here + "servers": [ + { + "url": "/api/v1" + }, + { + "url": "https://stag.example.com", + "description": "Staging environment" + }, + { + "url": "https://prod.example.com", + "description": "Production environment" + } + ], + "paths": { + // More stuff here + } +} +``` + +!!! tip + 👀 🚘-🏗 💜 ⏮ `url` 💲 `/api/v1`, ✊ ⚪➡ `root_path`. + +🩺 🎚 http://127.0.0.1:9999/api/v1/docs ⚫ 🔜 👀 💖: + + + +!!! tip + 🩺 🎚 🔜 🔗 ⏮ 💜 👈 👆 🖊. + +### ❎ 🏧 💜 ⚪➡ `root_path` + +🚥 👆 🚫 💚 **FastAPI** 🔌 🏧 💜 ⚙ `root_path`, 👆 💪 ⚙ 🔢 `root_path_in_servers=False`: + +```Python hl_lines="9" +{!../../../docs_src/behind_a_proxy/tutorial004.py!} +``` + +& ‎ ⚫ 🏆 🚫 🔌 ⚫ 🗄 🔗. + +## 🗜 🎧-🈞 + +🚥 👆 💪 🗻 🎧-🈞 (🔬 [🎧 🈞 - 🗻](./sub-applications.md){.internal-link target=_blank}) ⏪ ⚙ 🗳 ⏮ `root_path`, 👆 💪 ⚫ 🛎, 👆 🔜 ⌛. + +FastAPI 🔜 🔘 ⚙ `root_path` 🎆, ⚫ 🔜 👷. 👶 diff --git a/docs/em/docs/advanced/conditional-openapi.md b/docs/em/docs/advanced/conditional-openapi.md new file mode 100644 index 000000000..a17ba4eec --- /dev/null +++ b/docs/em/docs/advanced/conditional-openapi.md @@ -0,0 +1,58 @@ +# 🎲 🗄 + +🚥 👆 💪, 👆 💪 ⚙ ⚒ & 🌐 🔢 🔗 🗄 ✔ ⚓ 🔛 🌐, & ❎ ⚫ 🍕. + +## 🔃 💂‍♂, 🔗, & 🩺 + +🕵‍♂ 👆 🧟 👩‍💻 🔢 🏭 *🚫🔜 🚫* 🌌 🛡 👆 🛠. + +👈 🚫 🚮 🙆 ➕ 💂‍♂ 👆 🛠, *➡ 🛠* 🔜 💪 🌐❔ 👫. + +🚥 📀 💂‍♂ ⚠ 👆 📟, ⚫ 🔜 🔀. + +🕵‍♂ 🧟 ⚒ ⚫ 🌅 ⚠ 🀔 ❔ 🔗 ⏮ 👆 🛠, & 💪 ⚒ ⚫ 🌅 ⚠ 👆 ℹ ⚫ 🏭. ⚫ 💪 🀔 🎯 📚 💂‍♂ 🔘 🌌. + +🚥 👆 💚 🔐 👆 🛠, 📀 📚 👍 👜 👆 💪, 🖌: + +* ⚒ 💭 👆 ✔ 👍 🔬 Pydantic 🏷 👆 📚 💪 & 📚. +* 🔗 🙆 ✔ ✔ & 🔑 ⚙ 🔗. +* 🙅 🏪 🔢 🔐, 🕎 🔐#⃣. +* 🛠 & ⚙ 👍-💭 🔐 🧰, 💖 🇞🇲 & 🥙 🀝, ♒. +* 🚮 🌅 🧜 ✔ 🎛 ⏮ Oauth2⃣ ↔ 🌐❔ 💪. +* ...♒. + +👐, 👆 5⃣📆 ✔ 📶 🎯 ⚙ 💌 🌐❔ 👆 🀙 💪 ❎ 🛠 🩺 🌐 (✅ 🏭) ⚖ ⚓ 🔛 📳 ⚪➡ 🌐 🔢. + +## 🎲 🗄 ⚪➡ ⚒ & 🇚🇻 { + +👆 💪 💪 ⚙ 🎏 Pydantic ⚒ 🔗 👆 🏗 🗄 & 🩺 ⚜. + +🖌: + +```Python hl_lines="6 11" +{!../../../docs_src/conditional_openapi/tutorial001.py!} +``` + +📥 👥 📣 ⚒ `openapi_url` ⏮ 🎏 🔢 `"/openapi.json"`. + +& ‎ 👥 ⚙ ⚫ 🕐❔ 🏗 `FastAPI` 📱. + +‎ 👆 💪 ❎ 🗄 (✅ 🎚 🩺) ⚒ 🌐 🔢 `OPENAPI_URL` 🛁 🎻, 💖: + +
+ +```console +$ OPENAPI_URL= uvicorn main:app + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +‎ 🚥 👆 🚶 📛 `/openapi.json`, `/docs`, ⚖ `/redoc` 👆 🔜 🀚 `404 Not Found` ❌ 💖: + +```JSON +{ + "detail": "Not Found" +} +``` diff --git a/docs/em/docs/advanced/custom-request-and-route.md b/docs/em/docs/advanced/custom-request-and-route.md new file mode 100644 index 000000000..d6fafa2ea --- /dev/null +++ b/docs/em/docs/advanced/custom-request-and-route.md @@ -0,0 +1,109 @@ +# 🛃 📚 & APIRoute 🎓 + +💌, 👆 5⃣📆 💚 🔐 ⚛ ⚙ `Request` & `APIRoute` 🎓. + +🎯, 👉 5⃣📆 👍 🎛 ⚛ 🛠. + +🖌, 🚥 👆 💚 ✍ ⚖ 🔬 📚 💪 ⏭ ⚫ 🛠 👆 🈞. + +!!! danger + 👉 "🏧" ⚒. + + 🚥 👆 ▶ ⏮ **FastAPI** 👆 💪 💚 🚶 👉 📄. + +## ⚙ 💌 + +⚙ 💌 🔌: + +* 🏭 🚫-🎻 📚 💪 🎻 (✅ `msgpack`). +* 🗜 🗜-🗜 📚 💪. +* 🔁 🚚 🌐 📚 💪. + +## 🚚 🛃 📚 💪 🔢 + +➡ 👀 ❔ ⚒ ⚙ 🛃 `Request` 🏿 🗜 🗜 📚. + +& `APIRoute` 🏿 ⚙ 👈 🛃 📚 🎓. + +### ✍ 🛃 `GzipRequest` 🎓 + +!!! tip + 👉 🧞 🖌 🎊 ❔ ⚫ 👷, 🚥 👆 💪 🗜 🐕‍🊺, 👆 💪 ⚙ 🚚 [`GzipMiddleware`](./middleware.md#gzipmiddleware){.internal-link target=_blank}. + +🥇, 👥 ✍ `GzipRequest` 🎓, ❔ 🔜 📁 `Request.body()` 👩‍🔬 🗜 💪 🔍 ☑ 🎚. + +🚥 📀 🙅‍♂ `gzip` 🎚, ⚫ 🔜 🚫 🔄 🗜 💪. + +👈 🌌, 🎏 🛣 🎓 💪 🍵 🗜 🗜 ⚖ 🗜 📚. + +```Python hl_lines="8-15" +{!../../../docs_src/custom_request_and_route/tutorial001.py!} +``` + +### ✍ 🛃 `GzipRoute` 🎓 + +⏭, 👥 ✍ 🛃 🏿 `fastapi.routing.APIRoute` 👈 🔜 ⚒ ⚙ `GzipRequest`. + +👉 🕰, ⚫ 🔜 📁 👩‍🔬 `APIRoute.get_route_handler()`. + +👉 👩‍🔬 📚 🔢. & 👈 🔢 ⚫❔ 🔜 📚 📚 & 📚 📚. + +📥 👥 ⚙ ⚫ ✍ `GzipRequest` ⚪➡ ⏮ 📚. + +```Python hl_lines="18-26" +{!../../../docs_src/custom_request_and_route/tutorial001.py!} +``` + +!!! note "📡 ℹ" + `Request` ✔ `request.scope` 🔢, 👈 🐍 `dict` ⚗ 🗃 🔗 📚. + + `Request` ✔ `request.receive`, 👈 🔢 "📚" 💪 📚. + + `scope` `dict` & `receive` 🔢 👯‍♂ 🍕 🔫 🔧. + + & 👈 2⃣ 👜, `scope` & `receive`, ⚫❔ 💪 ✍ 🆕 `Request` 👐. + + 💡 🌅 🔃 `Request` ✅ 💃 🩺 🔃 📚. + +🕎 👜 🔢 📚 `GzipRequest.get_route_handler` 🔚 🎏 🗜 `Request` `GzipRequest`. + +🔚 👉, 👆 `GzipRequest` 🔜 ✊ 💅 🗜 📊 (🚥 💪) ⏭ 🚶‍♀ ⚫ 👆 *➡ 🛠*. + +⏮ 👈, 🌐 🏭 ⚛ 🎏. + +✋ ↩ 👆 🔀 `GzipRequest.body`, 📚 💪 🔜 🔁 🗜 🕐❔ ⚫ 📐 **FastAPI** 🕐❔ 💪. + +## 🔐 📚 💪 ⚠ 🐕‍🊺 + +!!! tip + ❎ 👉 🎏 ⚠, ⚫ 🎲 📚 ⏩ ⚙ `body` 🛃 🐕‍🊺 `RequestValidationError` ([🚚 ❌](../tutorial/handling-errors.md#use-the-requestvalidationerror-body){.internal-link target=_blank}). + + ✋ 👉 🖌 ☑ & ⚫ 🎊 ❔ 🔗 ⏮ 🔗 🊲. + +👥 💪 ⚙ 👉 🎏 🎯 🔐 📚 💪 ⚠ 🐕‍🊺. + +🌐 👥 💪 🍵 📚 🔘 `try`/`except` 🍫: + +```Python hl_lines="13 15" +{!../../../docs_src/custom_request_and_route/tutorial002.py!} +``` + +🚥 ⚠ 📉, `Request` 👐 🔜 ↔, 👥 💪 ✍ & ⚒ ⚙ 📚 💪 🕐❔ 🚚 ❌: + +```Python hl_lines="16-18" +{!../../../docs_src/custom_request_and_route/tutorial002.py!} +``` + +## 🛃 `APIRoute` 🎓 📻 + +👆 💪 ⚒ `route_class` 🔢 `APIRouter`: + +```Python hl_lines="26" +{!../../../docs_src/custom_request_and_route/tutorial003.py!} +``` + +👉 🖌, *➡ 🛠* 🔜 `router` 🔜 ⚙ 🛃 `TimedRoute` 🎓, & 🔜 ✔ ➕ `X-Response-Time` 🎚 📚 ⏮ 🕰 ⚫ ✊ 🏗 📚: + +```Python hl_lines="13-20" +{!../../../docs_src/custom_request_and_route/tutorial003.py!} +``` diff --git a/docs/em/docs/advanced/custom-response.md b/docs/em/docs/advanced/custom-response.md new file mode 100644 index 000000000..cf76c01d0 --- /dev/null +++ b/docs/em/docs/advanced/custom-response.md @@ -0,0 +1,300 @@ +# 🛃 📚 - 🕞, 🎏, 📁, 🎏 + +🔢, **FastAPI** 🔜 📚 📚 ⚙ `JSONResponse`. + +👆 💪 🔐 ⚫ 🛬 `Response` 🔗 👀 [📚 📚 🔗](response-directly.md){.internal-link target=_blank}. + +✋ 🚥 👆 📚 `Response` 🔗, 📊 🏆 🚫 🔁 🗜, & 🧟 🏆 🚫 🔁 🏗 (🖌, 🔌 🎯 "📻 🆎", 🇺🇞🔍 🎚 `Content-Type` 🍕 🏗 🗄). + +✋ 👆 💪 📣 `Response` 👈 👆 💚 ⚙, *➡ 🛠 👚‍🎚*. + +🎚 👈 👆 📚 ⚪➡ 👆 *➡ 🛠 🔢* 🔜 🚮 🔘 👈 `Response`. + +& 🚥 👈 `Response` ✔ 🎻 📻 🆎 (`application/json`), 💖 💌 ⏮ `JSONResponse` & `UJSONResponse`, 💜 👆 📚 🔜 🔁 🗜 (& ⛜) ⏮ 🙆 Pydantic `response_model` 👈 👆 📣 *➡ 🛠 👚‍🎚*. + +!!! note + 🚥 👆 ⚙ 📚 🎓 ⏮ 🙅‍♂ 📻 🆎, FastAPI 🔜 ⌛ 👆 📚 ✔ 🙅‍♂ 🎚, ⚫ 🔜 🚫 📄 📚 📁 🚮 🏗 🗄 🩺. + +## ⚙ `ORJSONResponse` + +🖌, 🚥 👆 ✊ 🎭, 👆 💪 ❎ & ⚙ `orjson` & ⚒ 📚 `ORJSONResponse`. + +🗄 `Response` 🎓 (🎧-🎓) 👆 💚 ⚙ & 📣 ⚫ *➡ 🛠 👚‍🎚*. + +⭕ 📚, 📚 `Response` 🔗 🌅 ⏩ 🌘 🛬 📖. + +👉 ↩ 🔢, FastAPI 🔜 ✔ 🔠 🏬 🔘 & ⚒ 💭 ⚫ 🎻 ⏮ 🎻, ⚙ 🎏 [🎻 🔗 🔢](../tutorial/encoder.md){.internal-link target=_blank} 🔬 🔰. 👉 ⚫❔ ✔ 👆 📚 **❌ 🎚**, 🖌 💜 🏷. + +✋ 🚥 👆 🎯 👈 🎚 👈 👆 🛬 **🎻 ⏮ 🎻**, 👆 💪 🚶‍♀ ⚫ 🔗 📚 🎓 & ❎ ➕ 🌥 👈 FastAPI 🔜 ✔ 🚶‍♀ 👆 📚 🎚 🔘 `jsonable_encoder` ⏭ 🚶‍♀ ⚫ 📚 🎓. + +```Python hl_lines="2 7" +{!../../../docs_src/custom_response/tutorial001b.py!} +``` + +!!! info + 🔢 `response_class` 🔜 ⚙ 🔬 "📻 🆎" 📚. + + 👉 💌, 🇺🇞🔍 🎚 `Content-Type` 🔜 ⚒ `application/json`. + + & ⚫ 🔜 📄 ✅ 🗄. + +!!! tip + `ORJSONResponse` ⏳ 🕎 💪 FastAPI, 🚫 💃. + +## 🕞 📚 + +📚 📚 ⏮ 🕞 🔗 ⚪➡ **FastAPI**, ⚙ `HTMLResponse`. + +* 🗄 `HTMLResponse`. +* 🚶‍♀ `HTMLResponse` 🔢 `response_class` 👆 *➡ 🛠 👚‍🎚*. + +```Python hl_lines="2 7" +{!../../../docs_src/custom_response/tutorial002.py!} +``` + +!!! info + 🔢 `response_class` 🔜 ⚙ 🔬 "📻 🆎" 📚. + + 👉 💌, 🇺🇞🔍 🎚 `Content-Type` 🔜 ⚒ `text/html`. + + & ⚫ 🔜 📄 ✅ 🗄. + +### 📚 `Response` + +👀 [📚 📚 🔗](response-directly.md){.internal-link target=_blank}, 👆 💪 🔐 📚 🔗 👆 *➡ 🛠*, 🛬 ⚫. + +🎏 🖌 ⚪➡ 🔛, 🛬 `HTMLResponse`, 💪 👀 💖: + +```Python hl_lines="2 7 19" +{!../../../docs_src/custom_response/tutorial003.py!} +``` + +!!! warning + `Response` 📚 🔗 👆 *➡ 🛠 🔢* 🏆 🚫 📄 🗄 (🖌, `Content-Type` 🏆 🚫 📄) & 🏆 🚫 ⭐ 🏧 🎓 🩺. + +!!! info + ↗, ☑ `Content-Type` 🎚, 👔 📟, ♒, 🔜 👟 ⚪➡ `Response` 🎚 👆 📚. + +### 📄 🗄 & 🔐 `Response` + +🚥 👆 💚 🔐 📚 ⚪➡ 🔘 🔢 ✋ 🎏 🕰 📄 "📻 🆎" 🗄, 👆 💪 ⚙ `response_class` 🔢 & 📚 `Response` 🎚. + +`response_class` 🔜 ‎ ⚙ 🕎 📄 🗄 *➡ 🛠*, ✋ 👆 `Response` 🔜 ⚙. + +#### 📚 `HTMLResponse` 🔗 + +🖌, ⚫ 💪 🕳 💖: + +```Python hl_lines="7 21 23" +{!../../../docs_src/custom_response/tutorial004.py!} +``` + +👉 🖌, 🔢 `generate_html_response()` ⏪ 🏗 & 📚 `Response` ↩ 🛬 🕞 `str`. + +🛬 🏁 🀙 `generate_html_response()`, 👆 ⏪ 🛬 `Response` 👈 🔜 🔐 🔢 **FastAPI** 🎭. + +✋ 👆 🚶‍♀ `HTMLResponse` `response_class` 💁‍♂, **FastAPI** 🔜 💭 ❔ 📄 ⚫ 🗄 & 🎓 🩺 🕞 ⏮ `text/html`: + + + +## 💪 📚 + +📥 💪 📚. + +✔ 🀯 👈 👆 💪 ⚙ `Response` 📚 🕳 🙆, ⚖ ✍ 🛃 🎧-🎓. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import HTMLResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + +### `Response` + +👑 `Response` 🎓, 🌐 🎏 📚 😖 ⚪➡ ⚫. + +👆 💪 📚 ⚫ 🔗. + +⚫ 🚫 📄 🔢: + +* `content` - `str` ⚖ `bytes`. +* `status_code` - `int` 🇺🇞🔍 👔 📟. +* `headers` - `dict` 🎻. +* `media_type` - `str` 🀝 📻 🆎. 🀶 Ⓜ. `"text/html"`. + +FastAPI (🀙 💃) 🔜 🔁 🔌 🎚-📐 🎚. ⚫ 🔜 🔌 🎚-🆎 🎚, ⚓ 🔛 = & 🔁 = ✍ 🆎. + +```Python hl_lines="1 18" +{!../../../docs_src/response_directly/tutorial002.py!} +``` + +### `HTMLResponse` + +✊ ✍ ⚖ 🔢 & 📚 🕞 📚, 👆 ✍ 🔛. + +### `PlainTextResponse` + +✊ ✍ ⚖ 🔢 & 📚 ✅ ✍ 📚. + +```Python hl_lines="2 7 9" +{!../../../docs_src/custom_response/tutorial005.py!} +``` + +### `JSONResponse` + +✊ 💜 & 📚 `application/json` 🗜 📚. + +👉 🔢 📚 ⚙ **FastAPI**, 👆 ✍ 🔛. + +### `ORJSONResponse` + +⏩ 🎛 🎻 📚 ⚙ `orjson`, 👆 ✍ 🔛. + +### `UJSONResponse` + +🎛 🎻 📚 ⚙ `ujson`. + +!!! warning + `ujson` 🌘 💛 🌘 🐍 🏗-🛠 ❔ ⚫ 🍵 📐-💌. + +```Python hl_lines="2 7" +{!../../../docs_src/custom_response/tutorial001.py!} +``` + +!!! tip + ⚫ 💪 👈 `ORJSONResponse` 💪 ⏩ 🎛. + +### `RedirectResponse` + +📚 🇺🇞🔍 ❎. ⚙ 3⃣0⃣7⃣ 👔 📟 (🍕 ❎) 🔢. + +👆 💪 📚 `RedirectResponse` 🔗: + +```Python hl_lines="2 9" +{!../../../docs_src/custom_response/tutorial006.py!} +``` + +--- + +⚖ 👆 💪 ⚙ ⚫ `response_class` 🔢: + + +```Python hl_lines="2 7 9" +{!../../../docs_src/custom_response/tutorial006b.py!} +``` + +🚥 👆 👈, ‎ 👆 💪 📚 📛 🔗 ⚪➡ 👆 *➡ 🛠* 🔢. + +👉 💌, `status_code` ⚙ 🔜 🔢 1⃣ `RedirectResponse`, ❔ `307`. + +--- + +👆 💪 ⚙ `status_code` 🔢 🌀 ⏮ `response_class` 🔢: + +```Python hl_lines="2 7 9" +{!../../../docs_src/custom_response/tutorial006c.py!} +``` + +### `StreamingResponse` + +✊ 🔁 🚂 ⚖ 😐 🚂/🎻 & 🎏 📚 💪. + +```Python hl_lines="2 14" +{!../../../docs_src/custom_response/tutorial007.py!} +``` + +#### ⚙ `StreamingResponse` ⏮ 📁-💖 🎚 + +🚥 👆 ✔ 📁-💖 🎚 (✅ 🎚 📚 `open()`), 👆 💪 ✍ 🚂 🔢 🔁 🀭 👈 📁-💖 🎚. + +👈 🌌, 👆 🚫 ✔ ✍ ⚫ 🌐 🥇 💟, & 👆 💪 🚶‍♀ 👈 🚂 🔢 `StreamingResponse`, & 📚 ⚫. + +👉 🔌 📚 🗃 🔗 ⏮ ☁ 💟, 📹 🏭, & 🎏. + +```{ .python .annotate hl_lines="2 10-12 14" } +{!../../../docs_src/custom_response/tutorial008.py!} +``` + +1⃣. 👉 🚂 🔢. ⚫ "🚂 🔢" ↩ ⚫ 🔌 `yield` 📄 🔘. +2⃣. ⚙ `with` 🍫, 👥 ⚒ 💭 👈 📁-💖 🎚 📪 ⏮ 🚂 🔢 🔚. , ⏮ ⚫ 🏁 📚 📚. +3⃣. 👉 `yield from` 💬 🔢 🔁 🀭 👈 👜 🌟 `file_like`. & ‎, 🔠 🍕 🔁, 🌟 👈 🍕 👟 ⚪➡ 👉 🚂 🔢. + + , ⚫ 🚂 🔢 👈 📚 "🏭" 👷 🕳 🙆 🔘. + + 🔚 ⚫ 👉 🌌, 👥 💪 🚮 ⚫ `with` 🍫, & 👈 🌌, 🚚 👈 ⚫ 📪 ⏮ 🏁. + +!!! tip + 👀 👈 📥 👥 ⚙ 🐩 `open()` 👈 🚫 🐕‍🊺 `async` & `await`, 👥 📣 ➡ 🛠 ⏮ 😐 `def`. + +### `FileResponse` + +🔁 🎏 📁 📚. + +✊ 🎏 ⚒ ❌ 🔗 🌘 🎏 📚 🆎: + +* `path` - 📁 📁 🎏. +* `headers` - 🙆 🛃 🎚 🔌, 📖. +* `media_type` - 🎻 🀝 📻 🆎. 🚥 🔢, 📁 ⚖ ➡ 🔜 ⚙ 🔑 📻 🆎. +* `filename` - 🚥 ⚒, 👉 🔜 🔌 📚 `Content-Disposition`. + +📁 📚 🔜 🔌 ☑ `Content-Length`, `Last-Modified` & `ETag` 🎚. + +```Python hl_lines="2 10" +{!../../../docs_src/custom_response/tutorial009.py!} +``` + +👆 💪 ⚙ `response_class` 🔢: + +```Python hl_lines="2 8 10" +{!../../../docs_src/custom_response/tutorial009b.py!} +``` + +👉 💌, 👆 💪 📚 📁 ➡ 🔗 ⚪➡ 👆 *➡ 🛠* 🔢. + +## 🛃 📚 🎓 + +👆 💪 ✍ 👆 👍 🛃 📚 🎓, 😖 ⚪➡ `Response` & ⚙ ⚫. + +🖌, ➡ 💬 👈 👆 💚 ⚙ `orjson`, ✋ ⏮ 🛃 ⚒ 🚫 ⚙ 🔌 `ORJSONResponse` 🎓. + +➡ 💬 👆 💚 ⚫ 📚 🔂 & 📁 🎻, 👆 💚 ⚙ Orjson 🎛 `orjson.OPT_INDENT_2`. + +👆 💪 ✍ `CustomORJSONResponse`. 👑 👜 👆 ✔ ✍ `Response.render(content)` 👩‍🔬 👈 📚 🎚 `bytes`: + +```Python hl_lines="9-14 17" +{!../../../docs_src/custom_response/tutorial009c.py!} +``` + +🔜 ↩ 🛬: + +```json +{"message": "Hello World"} +``` + +...👉 📚 🔜 📚: + +```json +{ + "message": "Hello World" +} +``` + +↗, 👆 🔜 🎲 🔎 🌅 👍 🌌 ✊ 📈 👉 🌘 ❕ 🎻. 👶 + +## 🔢 📚 🎓 + +🕐❔ 🏗 **FastAPI** 🎓 👐 ⚖ `APIRouter` 👆 💪 ✔ ❔ 📚 🎓 ⚙ 🔢. + +🔢 👈 🔬 👉 `default_response_class`. + +🖌 🔛, **FastAPI** 🔜 ⚙ `ORJSONResponse` 🔢, 🌐 *➡ 🛠*, ↩ `JSONResponse`. + +```Python hl_lines="2 4" +{!../../../docs_src/custom_response/tutorial010.py!} +``` + +!!! tip + 👆 💪 🔐 `response_class` *➡ 🛠* ⏭. + +## 🌖 🧟 + +👆 💪 📣 📻 🆎 & 📚 🎏 ℹ 🗄 ⚙ `responses`: [🌖 📚 🗄](additional-responses.md){.internal-link target=_blank}. diff --git a/docs/em/docs/advanced/dataclasses.md b/docs/em/docs/advanced/dataclasses.md new file mode 100644 index 000000000..a4c287106 --- /dev/null +++ b/docs/em/docs/advanced/dataclasses.md @@ -0,0 +1,98 @@ +# ⚙ 🎻 + +FastAPI 🏗 🔛 🔝 **Pydantic**, & 👀 ✔ 🌏 👆 ❔ ⚙ Pydantic 🏷 📣 📚 & 📚. + +✋ FastAPI 🐕‍🊺 ⚙ `dataclasses` 🎏 🌌: + +```Python hl_lines="1 7-12 19-20" +{!../../../docs_src/dataclasses/tutorial001.py!} +``` + +👉 🐕‍🊺 👏 **Pydantic**, ⚫ ✔ 🔗 🐕‍🊺 `dataclasses`. + +, ⏮ 📟 🔛 👈 🚫 ⚙ Pydantic 🎯, FastAPI ⚙ Pydantic 🗜 📚 🐩 🎻 Pydantic 👍 🍛 🎻. + +& ↗, ⚫ 🐕‍🊺 🎏: + +* 💜 🔬 +* 💜 🛠 +* 💜 🧟, ♒. + +👉 👷 🎏 🌌 ⏮ Pydantic 🏷. & ⚫ 🀙 🏆 🎏 🌌 🔘, ⚙ Pydantic. + +!!! info + ✔ 🀯 👈 🎻 💪 🚫 🌐 Pydantic 🏷 💪. + + , 👆 5⃣📆 💪 ⚙ Pydantic 🏷. + + ✋ 🚥 👆 ✔ 📚 🎻 🀥 🀭, 👉 👌 🎱 ⚙ 👫 🏋 🕞 🛠 ⚙ FastAPI. 👶 + +## 🎻 `response_model` + +👆 💪 ⚙ `dataclasses` `response_model` 🔢: + +```Python hl_lines="1 7-13 19" +{!../../../docs_src/dataclasses/tutorial002.py!} +``` + +🎻 🔜 🔁 🗜 Pydantic 🎻. + +👉 🌌, 🚮 🔗 🔜 🎊 🆙 🛠 🩺 👩‍💻 🔢: + + + +## 🎻 🔁 📊 📊 + +👆 💪 🌀 `dataclasses` ⏮ 🎏 🆎 ✍ ⚒ 🐊 📊 📊. + +💌, 👆 💪 ✔ ⚙ Pydantic ⏬ `dataclasses`. 🖌, 🚥 👆 ✔ ❌ ⏮ 🔁 🏗 🛠 🧟. + +👈 💌, 👆 💪 🎯 💱 🐩 `dataclasses` ⏮ `pydantic.dataclasses`, ❔ 💧-♻: + +```{ .python .annotate hl_lines="1 5 8-11 14-17 23-25 28" } +{!../../../docs_src/dataclasses/tutorial003.py!} +``` + +1⃣. 👥 🗄 `field` ⚪➡ 🐩 `dataclasses`. + +2⃣. `pydantic.dataclasses` 💧-♻ `dataclasses`. + +3⃣. `Author` 🎻 🔌 📇 `Item` 🎻. + +4⃣. `Author` 🎻 ⚙ `response_model` 🔢. + +5⃣. 👆 💪 ⚙ 🎏 🐩 🆎 ✍ ⏮ 🎻 📚 💪. + + 👉 💌, ⚫ 📇 `Item` 🎻. + +6⃣. 📥 👥 🛬 📖 👈 🔌 `items` ❔ 📇 🎻. + + FastAPI 🎯 ✍ 💜 🎻. + +7⃣. 📥 `response_model` ⚙ 🆎 ✍ 📇 `Author` 🎻. + + 🔄, 👆 💪 🌀 `dataclasses` ⏮ 🐩 🆎 ✍. + +8⃣. 👀 👈 👉 *➡ 🛠 🔢* ⚙ 🥔 `def` ↩ `async def`. + + 🕧, FastAPI 👆 💪 🌀 `def` & `async def` 💪. + + 🚥 👆 💪 ↗ 🔃 🕐❔ ⚙ ❔, ✅ 👅 📄 _"🏃 ❓" _ 🩺 🔃 `async` & `await`. + +9⃣. 👉 *➡ 🛠 🔢* 🚫 🛬 🎻 (👐 ⚫ 💪), ✋ 📇 📖 ⏮ 🔗 💜. + + FastAPI 🔜 ⚙ `response_model` 🔢 (👈 🔌 🎻) 🗜 📚. + +👆 💪 🌀 `dataclasses` ⏮ 🎏 🆎 ✍ 📚 🎏 🌀 📚 🏗 📊 📊. + +✅-📟 ✍ 💁‍♂ 🔛 👀 🌅 🎯 ℹ. + +## 💡 🌅 + +👆 💪 🌀 `dataclasses` ⏮ 🎏 Pydantic 🏷, 😖 ⚪➡ 👫, 🔌 👫 👆 👍 🏷, ♒. + +💡 🌅, ✅ Pydantic 🩺 🔃 🎻. + +## ⏬ + +👉 💪 ↩ FastAPI ⏬ `0.67.0`. 👶 diff --git a/docs/em/docs/advanced/events.md b/docs/em/docs/advanced/events.md new file mode 100644 index 000000000..671e81b18 --- /dev/null +++ b/docs/em/docs/advanced/events.md @@ -0,0 +1,160 @@ +# 🔆 🎉 + +👆 💪 🔬 ⚛ (📟) 👈 🔜 🛠 ⏭ 🈞 **▶ 🆙**. 👉 ⛓ 👈 👉 📟 🔜 🛠 **🕐**, **⏭** 🈞 **▶ 📚 📚**. + +🎏 🌌, 👆 💪 🔬 ⚛ (📟) 👈 🔜 🛠 🕐❔ 🈞 **🀫 🔜**. 👉 💌, 👉 📟 🔜 🛠 **🕐**, **⏮** ✔ 🍵 🎲 **📚 📚**. + +↩ 👉 📟 🛠 ⏭ 🈞 **▶** ✊ 📚, & ▶ ⏮ ⚫ **🏁** 🚚 📚, ⚫ 📔 🎂 🈞 **🔆** (🔀 "🔆" 🔜 ⚠ 🥈 👶). + +👉 💪 📶 ⚠ ⚒ 🆙 **ℹ** 👈 👆 💪 ⚙ 🎂 📱, & 👈 **💰** 👪 📚, &/⚖ 👈 👆 💪 **🧹 🆙** ⏮. 🖌, 💜 🔗 🎱, ⚖ 🚚 🔗 🎰 🏫 🏷. + +## ⚙ 💌 + +➡ ▶ ⏮ 🖌 **⚙ 💌** & ‎ 👀 ❔ ❎ ⚫ ⏮ 👉. + +➡ 🌈 👈 👆 ✔ **🎰 🏫 🏷** 👈 👆 💚 ⚙ 🍵 📚. 👶 + +🎏 🏷 🔗 👪 📚,, ⚫ 🚫 1⃣ 🏷 📍 📚, ⚖ 1⃣ 📍 👩‍💻 ⚖ 🕳 🎏. + +➡ 🌈 👈 🚚 🏷 💪 **✊ 🕰**, ↩ ⚫ ✔ ✍ 📚 **💜 ⚪➡ 💟**. 👆 🚫 💚 ⚫ 🔠 📚. + +👆 💪 📐 ⚫ 🔝 🎚 🕹/📁, ✋ 👈 🔜 ⛓ 👈 ⚫ 🔜 **📐 🏷** 🚥 👆 🏃‍♂ 🙅 🏧 💯, ‎ 👈 💯 🔜 **🐌** ↩ ⚫ 🔜 ✔ ⌛ 🏷 📐 ⏭ 💆‍♂ 💪 🏃 🔬 🍕 📟. + +👈 ⚫❔ 👥 🔜 ❎, ➡ 📐 🏷 ⏭ 📚 🍵, ✋ 🕎 ▶ ⏭ 🈞 ▶ 📚 📚, 🚫 ⏪ 📟 ➖ 📐. + +## 🔆 + +👆 💪 🔬 👉 *🕎* & *🀫* ⚛ ⚙ `lifespan` 🔢 `FastAPI` 📱, & "🔑 👚‍💌" (👀 🔜 🎊 👆 ⚫❔ 👈 🥈). + +➡ ▶ ⏮ 🖌 & ‎ 👀 ⚫ ℹ. + +👥 ✍ 🔁 🔢 `lifespan()` ⏮ `yield` 💖 👉: + +```Python hl_lines="16 19" +{!../../../docs_src/events/tutorial003.py!} +``` + +📥 👥 ⚖ 😥 *🕎* 🛠 🚚 🏷 🚮 (❌) 🏷 🔢 📖 ⏮ 🎰 🏫 🏷 ⏭ `yield`. 👉 📟 🔜 🛠 **⏭** 🈞 **▶ ✊ 📚**, ⏮ *🕎*. + +& ‎, ▶ ⏮ `yield`, 👥 🚚 🏷. 👉 📟 🔜 🛠 **⏮** 🈞 **🏁 🚚 📚**, ▶ ⏭ *🀫*. 👉 💪, 🖌, 🚀 ℹ 💖 💟 ⚖ 💻. + +!!! tip + `shutdown` 🔜 🔚 🕐❔ 👆 **⛔** 🈞. + + 🎲 👆 💪 ▶ 🆕 ⏬, ⚖ 👆 🀚 🎡 🏃 ⚫. 🀷 + +### 🔆 🔢 + +🥇 👜 👀, 👈 👥 ⚖ 🔁 🔢 ⏮ `yield`. 👉 📶 🎏 🔗 ⏮ `yield`. + +```Python hl_lines="14-19" +{!../../../docs_src/events/tutorial003.py!} +``` + +🥇 🍕 🔢, ⏭ `yield`, 🔜 🛠 **⏭** 🈞 ▶. + +& 🍕 ⏮ `yield` 🔜 🛠 **⏮** 🈞 ✔ 🏁. + +### 🔁 🔑 👚‍💌 + +🚥 👆 ✅, 🔢 🎀 ⏮ `@asynccontextmanager`. + +👈 🗜 🔢 🔘 🕳 🀙 "**🔁 🔑 👚‍💌**". + +```Python hl_lines="1 13" +{!../../../docs_src/events/tutorial003.py!} +``` + +**🔑 👚‍💌** 🐍 🕳 👈 👆 💪 ⚙ `with` 📄, 🖌, `open()` 💪 ⚙ 🔑 👚‍💌: + +```Python +with open("file.txt") as file: + file.read() +``` + +⏮ ⏬ 🐍, 📀 **🔁 🔑 👚‍💌**. 👆 🔜 ⚙ ⚫ ⏮ `async with`: + +```Python +async with lifespan(app): + await do_stuff() +``` + +🕐❔ 👆 ✍ 🔑 👚‍💌 ⚖ 🔁 🔑 👚‍💌 💖 🔛, ⚫❔ ⚫ 🔚 👈, ⏭ 🛬 `with` 🍫, ⚫ 🔜 🛠 📟 ⏭ `yield`, & ⏮ ❎ `with` 🍫, ⚫ 🔜 🛠 📟 ⏮ `yield`. + +👆 📟 🖌 🔛, 👥 🚫 ⚙ ⚫ 🔗, ✋ 👥 🚶‍♀ ⚫ FastAPI ⚫ ⚙ ⚫. + +`lifespan` 🔢 `FastAPI` 📱 ✊ **🔁 🔑 👚‍💌**, 👥 💪 🚶‍♀ 👆 🆕 `lifespan` 🔁 🔑 👚‍💌 ⚫. + +```Python hl_lines="22" +{!../../../docs_src/events/tutorial003.py!} +``` + +## 🎛 🎉 (😢) + +!!! warning + 👍 🌌 🍵 *🕎* & *🀫* ⚙ `lifespan` 🔢 `FastAPI` 📱 🔬 🔛. + + 👆 💪 🎲 🚶 👉 🍕. + +📀 🎛 🌌 🔬 👉 ⚛ 🛠 ⏮ *🕎* & ⏮ *🀫*. + +👆 💪 🔬 🎉 🐕‍🊺 (🔢) 👈 💪 🛠 ⏭ 🈞 ▶ 🆙, ⚖ 🕐❔ 🈞 🀫 🔜. + +👫 🔢 💪 📣 ⏮ `async def` ⚖ 😐 `def`. + +### `startup` 🎉 + +🚮 🔢 👈 🔜 🏃 ⏭ 🈞 ▶, 📣 ⚫ ⏮ 🎉 `"startup"`: + +```Python hl_lines="8" +{!../../../docs_src/events/tutorial001.py!} +``` + +👉 💌, `startup` 🎉 🐕‍🊺 🔢 🔜 🔢 🏬 "💜" ( `dict`) ⏮ 💲. + +👆 💪 🚮 🌅 🌘 1⃣ 🎉 🐕‍🊺 🔢. + +& 👆 🈞 🏆 🚫 ▶ 📚 📚 ⏭ 🌐 `startup` 🎉 🐕‍🊺 ✔ 🏁. + +### `shutdown` 🎉 + +🚮 🔢 👈 🔜 🏃 🕐❔ 🈞 🀫 🔜, 📣 ⚫ ⏮ 🎉 `"shutdown"`: + +```Python hl_lines="6" +{!../../../docs_src/events/tutorial002.py!} +``` + +📥, `shutdown` 🎉 🐕‍🊺 🔢 🔜 ✍ ✍ ⏞ `"Application shutdown"` 📁 `log.txt`. + +!!! info + `open()` 🔢, `mode="a"` ⛓ "🎻",, ⏞ 🔜 🚮 ⏮ ⚫❔ 🔛 👈 📁, 🍵 📁 ⏮ 🎚. + +!!! tip + 👀 👈 👉 💌 👥 ⚙ 🐩 🐍 `open()` 🔢 👈 🔗 ⏮ 📁. + + , ⚫ 🔌 👀/🅟 (🔢/🔢), 👈 🚚 "⌛" 👜 ✍ 💟. + + ✋ `open()` 🚫 ⚙ `async` & `await`. + + , 👥 📣 🎉 🐕‍🊺 🔢 ⏮ 🐩 `def` ↩ `async def`. + +!!! info + 👆 💪 ✍ 🌅 🔃 👫 🎉 🐕‍🊺 💃 🎉' 🩺. + +### `startup` & `shutdown` 👯‍♂ + +📀 ↕ 🀞 👈 ⚛ 👆 *🕎* & *🀫* 🔗, 👆 💪 💚 ▶ 🕳 & ‎ 🏁 ⚫, 📎 ℹ & ‎ 🚀 ⚫, ♒. + +🔚 👈 👜 🔢 👈 🚫 💰 ⚛ ⚖ 🔢 👯‍♂ 🌅 ⚠ 👆 🔜 💪 🏪 💲 🌐 🔢 ⚖ 🎏 🎱. + +↩ 👈, ⚫ 🔜 👍 ↩ ⚙ `lifespan` 🔬 🔛. + +## 📡 ℹ + +📡 ℹ 😟 🀓. 👶 + +🔘, 🔫 📡 🔧, 👉 🍕 🔆 🛠, & ⚫ 🔬 🎉 🀙 `startup` & `shutdown`. + +## 🎧 🈞 + +👶 ✔ 🀯 👈 👫 🔆 🎉 (🕎 & 🀫) 🔜 🕎 🛠 👑 🈞, 🚫 [🎧 🈞 - 🗻](./sub-applications.md){.internal-link target=_blank}. diff --git a/docs/em/docs/advanced/extending-openapi.md b/docs/em/docs/advanced/extending-openapi.md new file mode 100644 index 000000000..496a8d9de --- /dev/null +++ b/docs/em/docs/advanced/extending-openapi.md @@ -0,0 +1,314 @@ +# ↔ 🗄 + +!!! warning + 👉 👍 🏧 ⚒. 👆 🎲 💪 🚶 ⚫. + + 🚥 👆 📄 🔰 - 👩‍💻 🊮, 👆 💪 🎲 🚶 👉 📄. + + 🚥 👆 ⏪ 💭 👈 👆 💪 🔀 🏗 🗄 🔗, 😣 👂. + +📀 💌 🌐❔ 👆 💪 💪 🔀 🏗 🗄 🔗. + +👉 📄 👆 🔜 👀 ❔. + +## 😐 🛠 + +😐 (🔢) 🛠, ⏩. + +`FastAPI` 🈞 (👐) ✔ `.openapi()` 👩‍🔬 👈 📈 📚 🗄 🔗. + +🍕 🈞 🎚 🏗, *➡ 🛠* `/openapi.json` (⚖ ⚫❔ 👆 ⚒ 👆 `openapi_url`) ®. + +⚫ 📚 🎻 📚 ⏮ 🏁 🈞 `.openapi()` 👩‍🔬. + +🔢, ⚫❔ 👩‍🔬 `.openapi()` 🔚 ✅ 🏠 `.openapi_schema` 👀 🚥 ⚫ ✔ 🎚 & 📚 👫. + +🚥 ⚫ 🚫, ⚫ 🏗 👫 ⚙ 🚙 🔢 `fastapi.openapi.utils.get_openapi`. + +& 👈 🔢 `get_openapi()` 📚 🔢: + +* `title`: 🗄 📛, 🎊 🩺. +* `version`: ⏬ 👆 🛠, ✅ `2.5.0`. +* `openapi_version`: ⏬ 🗄 🔧 ⚙. 🔢, ⏪: `3.0.2`. +* `description`: 📛 👆 🛠. +* `routes`: 📇 🛣, 👫 🔠 ® *➡ 🛠*. 👫 ✊ ⚪➡ `app.routes`. + +## 🔑 🔢 + +⚙ ℹ 🔛, 👆 💪 ⚙ 🎏 🚙 🔢 🏗 🗄 🔗 & 🔐 🔠 🍕 👈 👆 💪. + +🖌, ➡ 🚮 📄 🗄 ↔ 🔌 🛃 🔱. + +### 😐 **FastAPI** + +🥇, ✍ 🌐 👆 **FastAPI** 🈞 🛎: + +```Python hl_lines="1 4 7-9" +{!../../../docs_src/extending_openapi/tutorial001.py!} +``` + +### 🏗 🗄 🔗 + +‎, ⚙ 🎏 🚙 🔢 🏗 🗄 🔗, 🔘 `custom_openapi()` 🔢: + +```Python hl_lines="2 15-20" +{!../../../docs_src/extending_openapi/tutorial001.py!} +``` + +### 🔀 🗄 🔗 + +🔜 👆 💪 🚮 📄 ↔, ❎ 🛃 `x-logo` `info` "🎚" 🗄 🔗: + +```Python hl_lines="21-23" +{!../../../docs_src/extending_openapi/tutorial001.py!} +``` + +### 💟 🗄 🔗 + +👆 💪 ⚙ 🏠 `.openapi_schema` "💟", 🏪 👆 🏗 🔗. + +👈 🌌, 👆 🈞 🏆 🚫 ✔ 🏗 🔗 🔠 🕰 👩‍💻 📂 👆 🛠 🩺. + +⚫ 🔜 🏗 🕎 🕐, & ‎ 🎏 💟 🔗 🔜 ⚙ ⏭ 📚. + +```Python hl_lines="13-14 24-25" +{!../../../docs_src/extending_openapi/tutorial001.py!} +``` + +### 🔐 👩‍🔬 + +🔜 👆 💪 ❎ `.openapi()` 👩‍🔬 ⏮ 👆 🆕 🔢. + +```Python hl_lines="28" +{!../../../docs_src/extending_openapi/tutorial001.py!} +``` + +### ✅ ⚫ + +🕐 👆 🚶 http://127.0.0.1:8000/redoc 👆 🔜 👀 👈 👆 ⚙ 👆 🛃 🔱 (👉 🖌, **FastAPI**'Ⓜ 🔱): + + + +## 👀-🕞 🕞 & 🎚 🩺 + +🛠 🩺 ⚙ **🊁 🎚** & **📄**, & 🔠 👈 💪 🕞 & 🎚 📁. + +🔢, 👈 📁 🍊 ⚪➡ 💲. + +✋ ⚫ 💪 🛃 ⚫, 👆 💪 ⚒ 🎯 💲, ⚖ 🍊 📁 👆. + +👈 ⚠, 🖌, 🚥 👆 💪 👆 📱 🚧 👷 ⏪ 📱, 🍵 📂 🕞 🔐, ⚖ 🇧🇿 🕞. + +📥 👆 🔜 👀 ❔ 🍊 👈 📁 👆, 🎏 FastAPI 📱, & 🔗 🩺 ⚙ 👫. + +### 🏗 📁 📊 + +➡ 💬 👆 🏗 📁 📊 👀 💖 👉: + +``` +. +├── app +│ ├── __init__.py +│ ├── main.py +``` + +🔜 ✍ 📁 🏪 📚 🎻 📁. + +👆 🆕 📁 📊 💪 👀 💖 👉: + +``` +. +├── app +│   ├── __init__.py +│   ├── main.py +└── static/ +``` + +### ⏬ 📁 + +⏬ 🎻 📁 💪 🩺 & 🚮 👫 🔛 👈 `static/` 📁. + +👆 💪 🎲 ▶-🖊 🔠 🔗 & 🖊 🎛 🎏 `Save link as...`. + +**🊁 🎚** ⚙ 📁: + +* `swagger-ui-bundle.js` +* `swagger-ui.css` + +& **📄** ⚙ 📁: + +* `redoc.standalone.js` + +⏮ 👈, 👆 📁 📊 💪 👀 💖: + +``` +. +├── app +│   ├── __init__.py +│   ├── main.py +└── static + ├── redoc.standalone.js + ├── swagger-ui-bundle.js + └── swagger-ui.css +``` + +### 🍊 🎻 📁 + +* 🗄 `StaticFiles`. +* "🗻" `StaticFiles()` 👐 🎯 ➡. + +```Python hl_lines="7 11" +{!../../../docs_src/extending_openapi/tutorial002.py!} +``` + +### 💯 🎻 📁 + +▶ 👆 🈞 & 🚶 http://127.0.0.1:8000/static/redoc.standalone.js. + +👆 🔜 👀 📶 📏 🕞 📁 **📄**. + +⚫ 💪 ▶ ⏮ 🕳 💖: + +```JavaScript +/*! + * ReDoc - OpenAPI/Swagger-generated API Reference Documentation + * ------------------------------------------------------------- + * Version: "2.0.0-rc.18" + * Repo: https://github.com/Redocly/redoc + */ +!function(e,t){"object"==typeof exports&&"object"==typeof m + +... +``` + +👈 ✔ 👈 👆 💆‍♂ 💪 🍊 🎻 📁 ⚪➡ 👆 📱, & 👈 👆 🥉 🎻 📁 🩺 ☑ 🥉. + +🔜 👥 💪 🔗 📱 ⚙ 📚 🎻 📁 🩺. + +### ❎ 🏧 🩺 + +🥇 🔁 ❎ 🏧 🩺, 📚 ⚙ 💲 🔢. + +❎ 👫, ⚒ 👫 📛 `None` 🕐❔ 🏗 👆 `FastAPI` 📱: + +```Python hl_lines="9" +{!../../../docs_src/extending_openapi/tutorial002.py!} +``` + +### 🔌 🛃 🩺 + +🔜 👆 💪 ✍ *➡ 🛠* 🛃 🩺. + +👆 💪 🏀-⚙ FastAPI 🔗 🔢 ✍ 🕞 📃 🩺, & 🚶‍♀ 👫 💪 ❌: + +* `openapi_url`: 📛 🌐❔ 🕞 📃 🩺 💪 🀚 🗄 🔗 👆 🛠. 👆 💪 ⚙ 📥 🔢 `app.openapi_url`. +* `title`: 📛 👆 🛠. +* `oauth2_redirect_url`: 👆 💪 ⚙ `app.swagger_ui_oauth2_redirect_url` 📥 ⚙ 🔢. +* `swagger_js_url`: 📛 🌐❔ 🕞 👆 🊁 🎚 🩺 💪 🀚 **🕞** 📁. 👉 1⃣ 👈 👆 👍 📱 🔜 🍊. +* `swagger_css_url`: 📛 🌐❔ 🕞 👆 🊁 🎚 🩺 💪 🀚 **🎚** 📁. 👉 1⃣ 👈 👆 👍 📱 🔜 🍊. + +& ➡ 📄... + +```Python hl_lines="2-6 14-22 25-27 30-36" +{!../../../docs_src/extending_openapi/tutorial002.py!} +``` + +!!! tip + *➡ 🛠* `swagger_ui_redirect` 👩‍🎓 🕐❔ 👆 ⚙ Oauth2⃣. + + 🚥 👆 🛠 👆 🛠 ⏮ Oauth2⃣ 🐕‍🊺, 👆 🔜 💪 🔓 & 👟 🔙 🛠 🩺 ⏮ 📎 🎓. & 🔗 ⏮ ⚫ ⚙ 🎰 Oauth2⃣ 🀝. + + 🊁 🎚 🔜 🍵 ⚫ ⛅ 🎑 👆, ✋ ⚫ 💪 👉 "❎" 👩‍🎓. + +### ✍ *➡ 🛠* 💯 ⚫ + +🔜, 💪 💯 👈 🌐 👷, ✍ *➡ 🛠*: + +```Python hl_lines="39-41" +{!../../../docs_src/extending_openapi/tutorial002.py!} +``` + +### 💯 ⚫ + +🔜, 👆 🔜 💪 🔌 👆 📻, 🚶 👆 🩺 http://127.0.0.1:8000/docs, & 🔃 📃. + +& 🍵 🕞, 👆 🔜 💪 👀 🩺 👆 🛠 & 🔗 ⏮ ⚫. + +## 🛠 🊁 🎚 + +👆 💪 🔗 ➕ 🊁 🎚 🔢. + +🔗 👫, 🚶‍♀ `swagger_ui_parameters` ❌ 🕐❔ 🏗 `FastAPI()` 📱 🎚 ⚖ `get_swagger_ui_html()` 🔢. + +`swagger_ui_parameters` 📚 📖 ⏮ 📳 🚶‍♀ 🊁 🎚 🔗. + +FastAPI 🗜 📳 **🎻** ⚒ 👫 🔗 ⏮ 🕞, 👈 ⚫❔ 🊁 🎚 💪. + +### ❎ ❕ 🎊 + +🖌, 👆 💪 ❎ ❕ 🎊 🊁 🎚. + +🍵 🔀 ⚒, ❕ 🎊 🛠 🔢: + + + +✋ 👆 💪 ❎ ⚫ ⚒ `syntaxHighlight` `False`: + +```Python hl_lines="3" +{!../../../docs_src/extending_openapi/tutorial003.py!} +``` + +...& ‎ 🊁 🎚 🏆 🚫 🎊 ❕ 🎊 🚫🔜: + + + +### 🔀 🎢 + +🎏 🌌 👆 💪 ⚒ ❕ 🎊 🎢 ⏮ 🔑 `"syntaxHighlight.theme"` (👀 👈 ⚫ ✔ ❣ 🖕): + +```Python hl_lines="3" +{!../../../docs_src/extending_openapi/tutorial004.py!} +``` + +👈 📳 🔜 🔀 ❕ 🎊 🎚 🎢: + + + +### 🔀 🔢 🊁 🎚 🔢 + +FastAPI 🔌 🔢 📳 🔢 ☑ 🌅 ⚙ 💌. + +⚫ 🔌 👫 🔢 📳: + +```Python +{!../../../fastapi/openapi/docs.py[ln:7-13]!} +``` + +👆 💪 🔐 🙆 👫 ⚒ 🎏 💲 ❌ `swagger_ui_parameters`. + +🖌, ❎ `deepLinking` 👆 💪 🚶‍♀ 👉 ⚒ `swagger_ui_parameters`: + +```Python hl_lines="3" +{!../../../docs_src/extending_openapi/tutorial005.py!} +``` + +### 🎏 🊁 🎚 🔢 + +👀 🌐 🎏 💪 📳 👆 💪 ⚙, ✍ 🛂 🩺 🊁 🎚 🔢. + +### 🕞-🕎 ⚒ + +🊁 🎚 ✔ 🎏 📳 **🕞-🕎** 🎚 (🖌, 🕞 🔢). + +FastAPI 🔌 👫 🕞-🕎 `presets` ⚒: + +```JavaScript +presets: [ + SwaggerUIBundle.presets.apis, + SwaggerUIBundle.SwaggerUIStandalonePreset +] +``` + +👫 **🕞** 🎚, 🚫 🎻, 👆 💪 🚫 🚶‍♀ 👫 ⚪➡ 🐍 📟 🔗. + +🚥 👆 💪 ⚙ 🕞-🕎 📳 💖 📚, 👆 💪 ⚙ 1⃣ 👩‍🔬 🔛. 🔐 🌐 🊁 🎚 *➡ 🛠* & ❎ ✍ 🙆 🕞 👆 💪. diff --git a/docs/em/docs/advanced/generate-clients.md b/docs/em/docs/advanced/generate-clients.md new file mode 100644 index 000000000..30560c8c6 --- /dev/null +++ b/docs/em/docs/advanced/generate-clients.md @@ -0,0 +1,267 @@ +# 🏗 👩‍💻 + +**FastAPI** ⚓ 🔛 🗄 🔧, 👆 🀚 🏧 🔗 ⏮ 📚 🧰, 🔌 🏧 🛠 🩺 (🚚 🊁 🎚). + +1⃣ 🎯 📈 👈 🚫 🎯 ⭐ 👈 👆 💪 **🏗 👩‍💻** (🕣 🀙 **📱** ) 👆 🛠, 📚 🎏 **🛠 🇪🇞**. + +## 🗄 👩‍💻 🚂 + +📀 📚 🧰 🏗 👩‍💻 ⚪➡ **🗄**. + +⚠ 🧰 🗄 🚂. + +🚥 👆 🏗 **🕞**, 📶 😌 🎛 🗄-📕-🇊🇪. + +## 🏗 📕 🕞 👩‍💻 + +➡ ▶ ⏮ 🙅 FastAPI 🈞: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9-11 14-15 18 19 23" + {!> ../../../docs_src/generate_clients/tutorial001.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="7-9 12-13 16-17 21" + {!> ../../../docs_src/generate_clients/tutorial001_py39.py!} + ``` + +👀 👈 *➡ 🛠* 🔬 🏷 👫 ⚙ 📚 🚀 & 📚 🚀, ⚙ 🏷 `Item` & `ResponseMessage`. + +### 🛠 🩺 + +🚥 👆 🚶 🛠 🩺, 👆 🔜 👀 👈 ⚫ ✔ **🔗** 📊 📚 📚 & 📚 📚: + + + +👆 💪 👀 👈 🔗 ↩ 👫 📣 ⏮ 🏷 📱. + +👈 ℹ 💪 📱 **🗄 🔗**, & ‎ 🎊 🛠 🩺 (🊁 🎚). + +& 👈 🎏 ℹ ⚪➡ 🏷 👈 🔌 🗄 ⚫❔ 💪 ⚙ **🏗 👩‍💻 📟**. + +### 🏗 📕 👩‍💻 + +🔜 👈 👥 ✔ 📱 ⏮ 🏷, 👥 💪 🏗 👩‍💻 📟 🕞. + +#### ❎ `openapi-typescript-codegen` + +👆 💪 ❎ `openapi-typescript-codegen` 👆 🕞 📟 ⏮: + +
+ +```console +$ npm install openapi-typescript-codegen --save-dev + +---> 100% +``` + +
+ +#### 🏗 👩‍💻 📟 + +🏗 👩‍💻 📟 👆 💪 ⚙ 📋 ⏞ 🈞 `openapi` 👈 🔜 🔜 ❎. + +↩ ⚫ ❎ 🇧🇿 🏗, 👆 🎲 🚫🔜 💪 🀙 👈 📋 🔗, ✋ 👆 🔜 🚮 ⚫ 🔛 👆 `package.json` 📁. + +⚫ 💪 👀 💖 👉: + +```JSON hl_lines="7" +{ + "name": "frontend-app", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "generate-client": "openapi --input http://localhost:8000/openapi.json --output ./src/client --client axios" + }, + "author": "", + "license": "", + "devDependencies": { + "openapi-typescript-codegen": "^0.20.1", + "typescript": "^4.6.2" + } +} +``` + +⏮ ✔ 👈 ☕ `generate-client` ✍ 📀, 👆 💪 🏃 ⚫ ⏮: + +
+ +```console +$ npm run generate-client + +frontend-app@1.0.0 generate-client /home/user/code/frontend-app +> openapi --input http://localhost:8000/openapi.json --output ./src/client --client axios +``` + +
+ +👈 📋 🔜 🏗 📟 `./src/client` & 🔜 ⚙ `axios` (🕞 🇺🇞🔍 🗃) 🔘. + +### 🔄 👅 👩‍💻 📟 + +🔜 👆 💪 🗄 & ⚙ 👩‍💻 📟, ⚫ 💪 👀 💖 👉, 👀 👈 👆 🀚 ✍ 👩‍🔬: + + + +👆 🔜 🀚 ✍ 🚀 📚: + + + +!!! tip + 👀 ✍ `name` & `price`, 👈 🔬 FastAPI 🈞, `Item` 🏷. + +👆 🔜 ✔ ⏞ ❌ 📊 👈 👆 📚: + + + +📚 🎚 🔜 ✔ ✍: + + + +## FastAPI 📱 ⏮ 🔖 + +📚 💌 👆 FastAPI 📱 🔜 🊏, & 👆 🔜 🎲 ⚙ 🔖 🎏 🎏 👪 *➡ 🛠*. + +🖌, 👆 💪 ✔ 📄 **🏬** & ➕1⃣ 📄 **👩‍💻**, & 👫 💪 👜 🔖: + + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="23 28 36" + {!> ../../../docs_src/generate_clients/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="21 26 34" + {!> ../../../docs_src/generate_clients/tutorial002_py39.py!} + ``` + +### 🏗 📕 👩‍💻 ⏮ 🔖 + +🚥 👆 🏗 👩‍💻 FastAPI 📱 ⚙ 🔖, ⚫ 🔜 🛎 🎏 👩‍💻 📟 ⚓ 🔛 🔖. + +👉 🌌 👆 🔜 💪 ✔ 👜 ✔ & 👪 ☑ 👩‍💻 📟: + + + +👉 💌 👆 ✔: + +* `ItemsService` +* `UsersService` + +### 👩‍💻 👩‍🔬 📛 + +▶ 🔜 🏗 👩‍🔬 📛 💖 `createItemItemsPost` 🚫 👀 📶 🧹: + +```TypeScript +ItemsService.createItemItemsPost({name: "Plumbus", price: 5}) +``` + +...👈 ↩ 👩‍💻 🚂 ⚙ 🗄 🔗 **🛠 🆔** 🔠 *➡ 🛠*. + +🗄 🚚 👈 🔠 🛠 🆔 😍 🀭 🌐 *➡ 🛠*, FastAPI ⚙ **🔢 📛**, **➡**, & **🇺🇞🔍 👩‍🔬/🛠** 🏗 👈 🛠 🆔, ↩ 👈 🌌 ⚫ 💪 ⚒ 💭 👈 🛠 🆔 😍. + +✋ 👀 🔜 🎊 👆 ❔ 📉 👈 ⏭. 👶 + +## 🛃 🛠 🆔 & 👍 👩‍🔬 📛 + +👆 💪 **🔀** 🌌 👫 🛠 🆔 **🏗** ⚒ 👫 🙅 & ✔ **🙅 👩‍🔬 📛** 👩‍💻. + +👉 💌 👆 🔜 ✔ 🚚 👈 🔠 🛠 🆔 **😍** 🎏 🌌. + +🖌, 👆 💪 ⚒ 💭 👈 🔠 *➡ 🛠* ✔ 🔖, & ‎ 🏗 🛠 🆔 ⚓ 🔛 **🔖** & *➡ 🛠* **📛** (🔢 📛). + +### 🛃 🏗 😍 🆔 🔢 + +FastAPI ⚙ **😍 🆔** 🔠 *➡ 🛠*, ⚫ ⚙ **🛠 🆔** & 📛 🙆 💪 🛃 🏷, 📚 ⚖ 📚. + +👆 💪 🛃 👈 🔢. ⚫ ✊ `APIRoute` & 🔢 🎻. + +🖌, 📥 ⚫ ⚙ 🥇 🔖 (👆 🔜 🎲 ✔ 🕎 1⃣ 🔖) & *➡ 🛠* 📛 (🔢 📛). + +👆 💪 ‎ 🚶‍♀ 👈 🛃 🔢 **FastAPI** `generate_unique_id_function` 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="8-9 12" + {!> ../../../docs_src/generate_clients/tutorial003.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="6-7 10" + {!> ../../../docs_src/generate_clients/tutorial003_py39.py!} + ``` + +### 🏗 📕 👩‍💻 ⏮ 🛃 🛠 🆔 + +🔜 🚥 👆 🏗 👩‍💻 🔄, 👆 🔜 👀 👈 ⚫ ✔ 📉 👩‍🔬 📛: + + + +👆 👀, 👩‍🔬 📛 🔜 ✔ 🔖 & ‎ 🔢 📛, 🔜 👫 🚫 🔌 ℹ ⚪➡ 📛 ➡ & 🇺🇞🔍 🛠. + +### 🗜 🗄 🔧 👩‍💻 🚂 + +🏗 📟 ✔ **❎ ℹ**. + +👥 ⏪ 💭 👈 👉 👩‍🔬 🔗 **🏬** ↩ 👈 🔀 `ItemsService` (✊ ⚪➡ 🔖), ✋ 👥 ✔ 📛 🔡 👩‍🔬 📛 💁‍♂. 👶 + +👥 🔜 🎲 💚 🚧 ⚫ 🗄 🏢, 👈 🔜 🚚 👈 🛠 🆔 **😍**. + +✋ 🏗 👩‍💻 👥 💪 **🔀** 🗄 🛠 🆔 ▶ ⏭ 🏭 👩‍💻, ⚒ 👈 👩‍🔬 📛 👌 & **🧹**. + +👥 💪 ⏬ 🗄 🎻 📁 `openapi.json` & ‎ 👥 💪 **❎ 👈 🔡 🔖** ⏮ ✍ 💖 👉: + +```Python +{!../../../docs_src/generate_clients/tutorial004.py!} +``` + +⏮ 👈, 🛠 🆔 🔜 📁 ⚪➡ 👜 💖 `items-get_items` `get_items`, 👈 🌌 👩‍💻 🚂 💪 🏗 🙅 👩‍🔬 📛. + +### 🏗 📕 👩‍💻 ⏮ 🗜 🗄 + +🔜 🔚 🏁 📁 `openapi.json`, 👆 🔜 🔀 `package.json` ⚙ 👈 🇧🇿 📁, 🖌: + +```JSON hl_lines="7" +{ + "name": "frontend-app", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "generate-client": "openapi --input ./openapi.json --output ./src/client --client axios" + }, + "author": "", + "license": "", + "devDependencies": { + "openapi-typescript-codegen": "^0.20.1", + "typescript": "^4.6.2" + } +} +``` + +⏮ 🏭 🆕 👩‍💻, 👆 🔜 🔜 ✔ **🧹 👩‍🔬 📛**, ⏮ 🌐 **✍**, **⏞ ❌**, ♒: + + + +## 💰 + +🕐❔ ⚙ 🔁 🏗 👩‍💻 👆 🔜 **✍** : + +* 👩‍🔬. +* 📚 🚀 💪, 🔢 🔢, ♒. +* 📚 🚀. + +👆 🔜 ✔ **⏞ ❌** 🌐. + +& 🕐❔ 👆 ℹ 👩‍💻 📟, & **♻** 🕞, ⚫ 🔜 ✔ 🙆 🆕 *➡ 🛠* 💪 👩‍🔬, 🗝 🕐 ❎, & 🙆 🎏 🔀 🔜 🎚 🔛 🏗 📟. 👶 + +👉 ⛓ 👈 🚥 🕳 🔀 ⚫ 🔜 **🎚** 🔛 👩‍💻 📟 🔁. & 🚥 👆 **🏗** 👩‍💻 ⚫ 🔜 ❌ 👅 🚥 👆 ✔ 🙆 **🔖** 📊 ⚙. + +, 👆 🔜 **🔍 📚 ❌** 📶 ⏪ 🛠 🛵 ↩ ✔ ⌛ ❌ 🎊 🆙 👆 🏁 👩‍💻 🏭 & ‎ 🔄 ℹ 🌐❔ ⚠. 👶 diff --git a/docs/em/docs/advanced/graphql.md b/docs/em/docs/advanced/graphql.md new file mode 100644 index 000000000..8509643ce --- /dev/null +++ b/docs/em/docs/advanced/graphql.md @@ -0,0 +1,56 @@ +# 🕹 + +**FastAPI** ⚓ 🔛 **🔫** 🐩, ⚫ 📶 ⏩ 🛠 🙆 **🕹** 🗃 🔗 ⏮ 🔫. + +👆 💪 🌀 😐 FastAPI *➡ 🛠* ⏮ 🕹 🔛 🎏 🈞. + +!!! tip + **🕹** ❎ 📶 🎯 ⚙ 💌. + + ⚫ ✔ **📈** & **⚠** 🕐❔ 🔬 ⚠ **🕞 🔗**. + + ⚒ 💭 👆 🔬 🚥 **💰** 👆 ⚙ 💌 ⚖ **👐**. 👶 + +## 🕹 🗃 + +📥 **🕹** 🗃 👈 ✔ **🔫** 🐕‍🊺. 👆 💪 ⚙ 👫 ⏮ **FastAPI**: + +* 🍓 👶 + * ⏮ 🩺 FastAPI +* 👞 + * ⏮ 🩺 💃 (👈 ✔ FastAPI) +* 🍟 + * ⏮ 🍟 🔫 🚚 🔫 🛠 +* ⚗ + * ⏮ 💃-Graphene3⃣ + +## 🕹 ⏮ 🍓 + +🚥 👆 💪 ⚖ 💚 👷 ⏮ **🕹**, **🍓** **👍** 🗃 ⚫ ✔ 🔧 🔐 **FastAPI** 🔧, ⚫ 🌐 ⚓ 🔛 **🆎 ✍**. + +⚓ 🔛 👆 ⚙ 💌, 👆 5⃣📆 💖 ⚙ 🎏 🗃, ✋ 🚥 👆 💭 👀, 👀 🔜 🎲 🀔 👆 🔄 **🍓**. + +📥 🀪 🎮 ❔ 👆 💪 🛠 🍓 ⏮ FastAPI: + +```Python hl_lines="3 22 25-26" +{!../../../docs_src/graphql/tutorial001.py!} +``` + +👆 💪 💡 🌅 🔃 🍓 🍓 🧟. + +& 🩺 🔃 🍓 ⏮ FastAPI. + +## 🗝 `GraphQLApp` ⚪➡ 💃 + +⏮ ⏬ 💃 🔌 `GraphQLApp` 🎓 🛠 ⏮ ⚗. + +⚫ 😢 ⚪➡ 💃, ✋ 🚥 👆 ✔ 📟 👈 ⚙ ⚫, 👆 💪 💪 **↔** 💃-Graphene3⃣, 👈 📔 🎏 ⚙ 💌 & ✔ **🌖 🌓 🔢**. + +!!! tip + 🚥 👆 💪 🕹, 👀 🔜 👍 👆 ✅ 👅 🍓, ⚫ ⚓ 🔛 🆎 ✍ ↩ 🛃 🎓 & 🆎. + +## 💡 🌅 + +👆 💪 💡 🌅 🔃 **🕹** 🛂 🕹 🧟. + +👆 💪 ✍ 🌅 🔃 🔠 👈 🗃 🔬 🔛 👫 🔗. diff --git a/docs/em/docs/advanced/index.md b/docs/em/docs/advanced/index.md new file mode 100644 index 000000000..6a43a09e7 --- /dev/null +++ b/docs/em/docs/advanced/index.md @@ -0,0 +1,24 @@ +# 🏧 👩‍💻 🊮 - 🎶 + +## 🌖 ⚒ + +👑 [🔰 - 👩‍💻 🊮](../tutorial/){.internal-link target=_blank} 🔜 🥃 🀝 👆 🎫 🔘 🌐 👑 ⚒ **FastAPI**. + +⏭ 📄 👆 🔜 👀 🎏 🎛, 📳, & 🌖 ⚒. + +!!! tip + ⏭ 📄 **🚫 🎯 "🏧"**. + + & ⚫ 💪 👈 👆 ⚙ 💌, ⚗ 1⃣ 👫. + +## ✍ 🔰 🥇 + +👆 💪 ⚙ 🏆 ⚒ **FastAPI** ⏮ 💡 ⚪➡ 👑 [🔰 - 👩‍💻 🊮](../tutorial/){.internal-link target=_blank}. + +& ⏭ 📄 🀔 👆 ⏪ ✍ ⚫, & 🀔 👈 👆 💭 👈 👑 💭. + +## 🏎.🅟 ↗ + +🚥 👆 🔜 💖 ✊ 🏧-🔰 ↗ 🔗 👉 📄 🩺, 👆 💪 💚 ✅: 💯-💟 🛠 ⏮ FastAPI & ☁ **🏎.🅟**. + +👫 ⏳ 🩞 1⃣0⃣ 💯 🌐 💰 🛠 **FastAPI**. 👶 👶 diff --git a/docs/em/docs/advanced/middleware.md b/docs/em/docs/advanced/middleware.md new file mode 100644 index 000000000..b3e722ed0 --- /dev/null +++ b/docs/em/docs/advanced/middleware.md @@ -0,0 +1,99 @@ +# 🏧 🛠 + +👑 🔰 👆 ✍ ❔ 🚮 [🛃 🛠](../tutorial/middleware.md){.internal-link target=_blank} 👆 🈞. + +& ‎ 👆 ✍ ❔ 🍵 [⚜ ⏮ `CORSMiddleware`](../tutorial/cors.md){.internal-link target=_blank}. + +👉 📄 👥 🔜 👀 ❔ ⚙ 🎏 🛠. + +## ❎ 🔫 🛠 + +**FastAPI** ⚓ 🔛 💃 & 🛠 🔫 🔧, 👆 💪 ⚙ 🙆 🔫 🛠. + +🛠 🚫 ✔ ⚒ FastAPI ⚖ 💃 👷, 📏 ⚫ ⏩ 🔫 🔌. + +🏢, 🔫 🛠 🎓 👈 ⌛ 📚 🔫 📱 🥇 ❌. + +, 🧟 🥉-🥳 🔫 🛠 👫 🔜 🎲 💬 👆 🕳 💖: + +```Python +from unicorn import UnicornMiddleware + +app = SomeASGIApp() + +new_app = UnicornMiddleware(app, some_config="rainbow") +``` + +✋ FastAPI (🀙 💃) 🚚 🙅 🌌 ⚫ 👈 ⚒ 💭 👈 🔗 🛠 🍵 💜 ❌ & 🛃 ⚠ 🐕‍🊺 👷 ☑. + +👈, 👆 ⚙ `app.add_middleware()` (🖌 ⚜). + +```Python +from fastapi import FastAPI +from unicorn import UnicornMiddleware + +app = FastAPI() + +app.add_middleware(UnicornMiddleware, some_config="rainbow") +``` + +`app.add_middleware()` 📚 🛠 🎓 🥇 ❌ & 🙆 🌖 ❌ 🚶‍♀ 🛠. + +## 🛠 🛠 + +**FastAPI** 🔌 📚 🛠 ⚠ ⚙ 💌, 👥 🔜 👀 ⏭ ❔ ⚙ 👫. + +!!! note "📡 ℹ" + ⏭ 🖌, 👆 💪 ⚙ `from starlette.middleware.something import SomethingMiddleware`. + + **FastAPI** 🚚 📚 🛠 `fastapi.middleware` 🏪 👆, 👩‍💻. ✋ 🌅 💪 🛠 👟 🔗 ⚪➡ 💃. + +## `HTTPSRedirectMiddleware` + +🛠 👈 🌐 📚 📚 🔜 👯‍♂ `https` ⚖ `wss`. + +🙆 📚 📚 `http` ⚖ `ws` 🔜 ❎ 🔐 ⚖ ↩. + +```Python hl_lines="2 6" +{!../../../docs_src/advanced_middleware/tutorial001.py!} +``` + +## `TrustedHostMiddleware` + +🛠 👈 🌐 📚 📚 ✔ ☑ ⚒ `Host` 🎚, ✔ 💂‍♂ 🛡 🇺🇞🔍 🊠 🎚 👊. + +```Python hl_lines="2 6-8" +{!../../../docs_src/advanced_middleware/tutorial002.py!} +``` + +📄 ❌ 🐕‍🊺: + +* `allowed_hosts` - 📇 🆔 📛 👈 🔜 ✔ 📛. 🃏 🆔 ✅ `*.example.com` 🐕‍🊺 🎀 📁. ✔ 🙆 📛 👯‍♂ ⚙ `allowed_hosts=["*"]` ⚖ 🚫 🛠. + +🚥 📚 📚 🔚 🚫 ✔ ☑ ‎ `400` 📚 🔜 📚. + +## `GZipMiddleware` + +🍵 🗜 📚 🙆 📚 👈 🔌 `"gzip"` `Accept-Encoding` 🎚. + +🛠 🔜 🍵 👯‍♂ 🐩 & 🎥 📚. + +```Python hl_lines="2 6" +{!../../../docs_src/advanced_middleware/tutorial003.py!} +``` + +📄 ❌ 🐕‍🊺: + +* `minimum_size` - 🚫 🗜 📚 👈 🀪 🌘 👉 💯 📐 🔢. 🔢 `500`. + +## 🎏 🛠 + +📀 📚 🎏 🔫 🛠. + +🖌: + +* 🔫 +* Uvicorn `ProxyHeadersMiddleware` +* 🇞🇲 + +👀 🎏 💪 🛠 ✅ 💃 🛠 🩺 & 🔫 👌 📇. diff --git a/docs/em/docs/advanced/nosql-databases.md b/docs/em/docs/advanced/nosql-databases.md new file mode 100644 index 000000000..9c828a909 --- /dev/null +++ b/docs/em/docs/advanced/nosql-databases.md @@ -0,0 +1,156 @@ +# ☁ (📎 / 🊏 💜) 💜 + +**FastAPI** 💪 🛠 ⏮ 🙆 ☁. + +📥 👥 🔜 👀 🖌 ⚙ **🗄**, 📄 🧢 ☁ 💜. + +👆 💪 🛠 ⚫ 🙆 🎏 ☁ 💜 💖: + +* **✳** +* **👞** +* **✳** +* **🇞🇲** +* **✳**, ♒. + +!!! tip + 📀 🛂 🏗 🚂 ⏮ **FastAPI** & **🗄**, 🌐 ⚓ 🔛 **☁**, 🔌 🕞 & 🌖 🧰: https://github.com/tiangolo/full-stack-fastapi-couchbase + +## 🗄 🗄 🊲 + +🔜, 🚫 💞 🙋 🎂, 🕎 🗄: + +```Python hl_lines="3-5" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +## 🔬 📉 ⚙ "📄 🆎" + +👥 🔜 ⚙ ⚫ ⏪ 🔧 🏑 `type` 👆 📄. + +👉 🚫 ✔ 🗄, ✋ 👍 💡 👈 🔜 ℹ 👆 ⏮. + +```Python hl_lines="9" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +## 🚮 🔢 🀚 `Bucket` + +**🗄**, 🥡 ⚒ 📄, 👈 💪 🎏 🆎. + +👫 🛎 🌐 🔗 🎏 🈞. + +🔑 🔗 💜 🌏 🔜 "💜" (🎯 💜, 🚫 💜 💜). + +🔑 **✳** 🔜 "🗃". + +📟, `Bucket` 🎚 👑 🇚🇻 📻 ⏮ 💜. + +👉 🚙 🔢 🔜: + +* 🔗 **🗄** 🌑 (👈 💪 👁 🎰). + * ⚒ 🔢 ⏲. +* 🔓 🌑. +* 🀚 `Bucket` 👐. + * ⚒ 🔢 ⏲. +* 📚 ⚫. + +```Python hl_lines="12-21" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +## ✍ Pydantic 🏷 + +**🗄** "📄" 🀙 "🎻 🎚", 👥 💪 🏷 👫 ⏮ Pydantic. + +### `User` 🏷 + +🥇, ➡ ✍ `User` 🏷: + +```Python hl_lines="24-28" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +👥 🔜 ⚙ 👉 🏷 👆 *➡ 🛠 🔢*,, 👥 🚫 🔌 ⚫ `hashed_password`. + +### `UserInDB` 🏷 + +🔜, ➡ ✍ `UserInDB` 🏷. + +👉 🔜 ✔ 💜 👈 🀙 🏪 💜. + +👥 🚫 ✍ ⚫ 🏿 Pydantic `BaseModel` ✋ 🏿 👆 👍 `User`, ↩ ⚫ 🔜 ✔ 🌐 🔢 `User` ➕ 👩‍❀‍👚 🌅: + +```Python hl_lines="31-33" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +!!! note + 👀 👈 👥 ✔ `hashed_password` & `type` 🏑 👈 🔜 🏪 💜. + + ✋ ⚫ 🚫 🍕 🏢 `User` 🏷 (1⃣ 👥 🔜 📚 *➡ 🛠*). + +## 🀚 👩‍💻 + +🔜 ✍ 🔢 👈 🔜: + +* ✊ 🆔. +* 🏗 📄 🆔 ⚪➡ ⚫. +* 🀚 📄 ⏮ 👈 🆔. +* 🚮 🎚 📄 `UserInDB` 🏷. + +🏗 🔢 👈 🕎 💡 🀚 👆 👩‍💻 ⚪➡ `username` (⚖ 🙆 🎏 🔢) 🔬 👆 *➡ 🛠 🔢*, 👆 💪 🌖 💪 🏀-⚙ ⚫ 💗 🍕 & 🚮 ⚒ 💯 ⚫: + +```Python hl_lines="36-42" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +### Ⓜ-🎻 + +🚥 👆 🚫 😰 ⏮ `f"userprofile::{username}"`, ⚫ 🐍 "Ⓜ-🎻". + +🙆 🔢 👈 🚮 🔘 `{}` Ⓜ-🎻 🔜 ↔ / 💉 🎻. + +### `dict` 🏗 + +🚥 👆 🚫 😰 ⏮ `UserInDB(**result.value)`, ⚫ ⚙ `dict` "🏗". + +⚫ 🔜 ✊ `dict` `result.value`, & ✊ 🔠 🚮 🔑 & 💲 & 🚶‍♀ 👫 🔑-💲 `UserInDB` 🇚🇻 ❌. + +, 🚥 `dict` 🔌: + +```Python +{ + "username": "johndoe", + "hashed_password": "some_hash", +} +``` + +⚫ 🔜 🚶‍♀ `UserInDB` : + +```Python +UserInDB(username="johndoe", hashed_password="some_hash") +``` + +## ✍ 👆 **FastAPI** 📟 + +### ✍ `FastAPI` 📱 + +```Python hl_lines="46" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +### ✍ *➡ 🛠 🔢* + +👆 📟 🀙 🗄 & 👥 🚫 ⚙ 🥌 🐍 await 🐕‍🊺, 👥 🔜 📣 👆 🔢 ⏮ 😐 `def` ↩ `async def`. + +, 🗄 👍 🚫 ⚙ 👁 `Bucket` 🎚 💗 "🧵Ⓜ",, 👥 💪 🀚 🥡 🔗 & 🚶‍♀ ⚫ 👆 🚙 🔢: + +```Python hl_lines="49-53" +{!../../../docs_src/nosql_databases/tutorial001.py!} +``` + +## 🌃 + +👆 💪 🛠 🙆 🥉 🥳 ☁ 💜, ⚙ 👫 🐩 📊. + +🎏 ✔ 🙆 🎏 🔢 🧰, ⚙ ⚖ 🛠. diff --git a/docs/em/docs/advanced/openapi-callbacks.md b/docs/em/docs/advanced/openapi-callbacks.md new file mode 100644 index 000000000..630b75ed2 --- /dev/null +++ b/docs/em/docs/advanced/openapi-callbacks.md @@ -0,0 +1,179 @@ +# 🗄 ⏲ + +👆 💪 ✍ 🛠 ⏮ *➡ 🛠* 👈 💪 ⏲ 📚 *🔢 🛠* ✍ 👱 🙆 (🎲 🎏 👩‍💻 👈 🔜 *⚙* 👆 🛠). + +🛠 👈 🔚 🕐❔ 👆 🛠 📱 🀙 *🔢 🛠* 📛 "⏲". ↩ 🖥 👈 🔢 👩‍💻 ✍ 📚 📚 👆 🛠 & ‎ 👆 🛠 *🀙 🔙*, 📚 📚 *🔢 🛠* (👈 🎲 ✍ 🎏 👩‍💻). + +👉 💌, 👆 💪 💚 📄 ❔ 👈 🔢 🛠 *🔜* 👀 💖. ⚫❔ *➡ 🛠* ⚫ 🔜 ✔, ⚫❔ 💪 ⚫ 🔜 ⌛, ⚫❔ 📚 ⚫ 🔜 📚, ♒. + +## 📱 ⏮ ⏲ + +➡ 👀 🌐 👉 ⏮ 🖌. + +🌈 👆 🛠 📱 👈 ✔ 🏗 🧟. + +👉 🧟 🔜 ✔ `id`, `title` (📊), `customer`, & `total`. + +👩‍💻 👆 🛠 (🔢 👩‍💻) 🔜 ✍ 🧟 👆 🛠 ⏮ 🏀 📚. + +‎ 👆 🛠 🔜 (➡ 🌈): + +* 📚 🧟 🕎 🔢 👩‍💻. +* 📈 💞. +* 📚 📚 🔙 🛠 👩‍💻 (🔢 👩‍💻). + * 👉 🔜 🔚 📚 🏀 📚 (⚪➡ *👆 🛠*) *🔢 🛠* 🚚 👈 🔢 👩‍💻 (👉 "⏲"). + +## 😐 **FastAPI** 📱 + +➡ 🥇 👀 ❔ 😐 🛠 📱 🔜 👀 💖 ⏭ ❎ ⏲. + +⚫ 🔜 ✔ *➡ 🛠* 👈 🔜 📚 `Invoice` 💪, & 🔢 🔢 `callback_url` 👈 🔜 🔌 📛 ⏲. + +👉 🍕 📶 😐, 🌅 📟 🎲 ⏪ 😰 👆: + +```Python hl_lines="9-13 36-53" +{!../../../docs_src/openapi_callbacks/tutorial001.py!} +``` + +!!! tip + `callback_url` 🔢 🔢 ⚙ Pydantic 📛 🆎. + +🕎 🆕 👜 `callbacks=messages_callback_router.routes` ❌ *➡ 🛠 👚‍🎚*. 👥 🔜 👀 ⚫❔ 👈 ⏭. + +## 🔬 ⏲ + +☑ ⏲ 📟 🔜 🪀 🙇 🔛 👆 👍 🛠 📱. + +& ⚫ 🔜 🎲 🪀 📚 ⚪➡ 1⃣ 📱 ⏭. + +⚫ 💪 1⃣ ⚖ 2⃣ ⏞ 📟, 💖: + +```Python +callback_url = "https://example.com/api/v1/invoices/events/" +httpx.post(callback_url, json={"description": "Invoice paid", "paid": True}) +``` + +✋ 🎲 🏆 ⚠ 🍕 ⏲ ⚒ 💭 👈 👆 🛠 👩‍💻 (🔢 👩‍💻) 🛠 *🔢 🛠* ☑, 🛄 💜 👈 *👆 🛠* 🔜 📚 📚 💪 ⏲, ♒. + +, ⚫❔ 👥 🔜 ⏭ 🚮 📟 📄 ❔ 👈 *🔢 🛠* 🔜 👀 💖 📚 ⏲ ⚪➡ *👆 🛠*. + +👈 🧟 🔜 🎊 🆙 🊁 🎚 `/docs` 👆 🛠, & ⚫ 🔜 ➡ 🔢 👩‍💻 💭 ❔ 🏗 *🔢 🛠*. + +👉 🖌 🚫 🛠 ⏲ ⚫ (👈 💪 ⏞ 📟), 🕎 🧟 🍕. + +!!! tip + ☑ ⏲ 🇺🇞🔍 📚. + + 🕐❔ 🛠 ⏲ 👆, 👆 💪 ⚙ 🕳 💖 🇞🇲 ⚖ 📚. + +## ✍ ⏲ 🧟 📟 + +👉 📟 🏆 🚫 🛠 👆 📱, 👥 🕎 💪 ⚫ *📄* ❔ 👈 *🔢 🛠* 🔜 👀 💖. + +✋, 👆 ⏪ 💭 ❔ 💪 ✍ 🏧 🧟 🛠 ⏮ **FastAPI**. + +👥 🔜 ⚙ 👈 🎏 💡 📄 ❔ *🔢 🛠* 🔜 👀 💖... 🏗 *➡ 🛠(Ⓜ)* 👈 🔢 🛠 🔜 🛠 (🕐 👆 🛠 🔜 🀙). + +!!! tip + 🕐❔ ✍ 📟 📄 ⏲, ⚫ 💪 ⚠ 🌈 👈 👆 👈 *🔢 👩‍💻*. & 👈 👆 ⏳ 🛠 *🔢 🛠*, 🚫 *👆 🛠*. + + 🍕 🛠 👉 ☝ 🎑 ( *🔢 👩‍💻*) 💪 ℹ 👆 💭 💖 ⚫ 🌅 ⭐ 🌐❔ 🚮 🔢, Pydantic 🏷 💪, 📚, ♒. 👈 *🔢 🛠*. + +### ✍ ⏲ `APIRouter` + +🥇 ✍ 🆕 `APIRouter` 👈 🔜 🔌 1⃣ ⚖ 🌅 ⏲. + +```Python hl_lines="3 25" +{!../../../docs_src/openapi_callbacks/tutorial001.py!} +``` + +### ✍ ⏲ *➡ 🛠* + +✍ ⏲ *➡ 🛠* ⚙ 🎏 `APIRouter` 👆 ✍ 🔛. + +⚫ 🔜 👀 💖 😐 FastAPI *➡ 🛠*: + +* ⚫ 🔜 🎲 ✔ 📄 💪 ⚫ 🔜 📚, ✅ `body: InvoiceEvent`. +* & ⚫ 💪 ✔ 📄 📚 ⚫ 🔜 📚, ✅ `response_model=InvoiceEventReceived`. + +```Python hl_lines="16-18 21-22 28-32" +{!../../../docs_src/openapi_callbacks/tutorial001.py!} +``` + +📀 2⃣ 👑 🔺 ⚪➡ 😐 *➡ 🛠*: + +* ⚫ 🚫 💪 ✔ 🙆 ☑ 📟, ↩ 👆 📱 🔜 🙅 🀙 👉 📟. ⚫ 🕎 ⚙ 📄 *🔢 🛠*. , 🔢 💪 ✔ `pass`. +* *➡* 💪 🔌 🗄 3⃣ 🧬 (👀 🌖 🔛) 🌐❔ ⚫ 💪 ⚙ 🔢 ⏮ 🔢 & 🍕 ⏮ 📚 📚 *👆 🛠*. + +### ⏲ ➡ 🧬 + +⏲ *➡* 💪 ✔ 🗄 3⃣ 🧬 👈 💪 🔌 🍕 ⏮ 📚 📚 *👆 🛠*. + +👉 💌, ⚫ `str`: + +```Python +"{$callback_url}/invoices/{$request.body.id}" +``` + +, 🚥 👆 🛠 👩‍💻 (🔢 👩‍💻) 📚 📚 *👆 🛠* : + +``` +https://yourapi.com/invoices/?callback_url=https://www.external.org/events +``` + +⏮ 🎻 💪: + +```JSON +{ + "id": "2expen51ve", + "customer": "Mr. Richie Rich", + "total": "9999" +} +``` + +‎ *👆 🛠* 🔜 🛠 🧟, & ☝ ⏪, 📚 ⏲ 📚 `callback_url` ( *🔢 🛠*): + +``` +https://www.external.org/events/invoices/2expen51ve +``` + +⏮ 🎻 💪 ⚗ 🕳 💖: + +```JSON +{ + "description": "Payment celebration", + "paid": true +} +``` + +& ⚫ 🔜 ⌛ 📚 ⚪➡ 👈 *🔢 🛠* ⏮ 🎻 💪 💖: + +```JSON +{ + "ok": true +} +``` + +!!! tip + 👀 ❔ ⏲ 📛 ⚙ 🔌 📛 📚 🔢 🔢 `callback_url` (`https://www.external.org/events`) & 🧟 `id` ⚪➡ 🔘 🎻 💪 (`2expen51ve`). + +### 🚮 ⏲ 📻 + +👉 ☝ 👆 ✔ *⏲ ➡ 🛠(Ⓜ)* 💪 (1⃣(Ⓜ) 👈 *🔢 👩‍💻* 🔜 🛠 *🔢 🛠*) ⏲ 📻 👆 ✍ 🔛. + +🔜 ⚙ 🔢 `callbacks` *👆 🛠 ➡ 🛠 👚‍🎚* 🚶‍♀ 🔢 `.routes` (👈 🀙 `list` 🛣/*➡ 🛠*) ⚪➡ 👈 ⏲ 📻: + +```Python hl_lines="35" +{!../../../docs_src/openapi_callbacks/tutorial001.py!} +``` + +!!! tip + 👀 👈 👆 🚫 🚶‍♀ 📻 ⚫ (`invoices_callback_router`) `callback=`, ✋ 🔢 `.routes`, `invoices_callback_router.routes`. + +### ✅ 🩺 + +🔜 👆 💪 ▶ 👆 📱 ⏮ Uvicorn & 🚶 http://127.0.0.1:8000/docs. + +👆 🔜 👀 👆 🩺 ✅ "⏲" 📄 👆 *➡ 🛠* 👈 🎊 ❔ *🔢 🛠* 🔜 👀 💖: + + diff --git a/docs/em/docs/advanced/path-operation-advanced-configuration.md b/docs/em/docs/advanced/path-operation-advanced-configuration.md new file mode 100644 index 000000000..ec7231870 --- /dev/null +++ b/docs/em/docs/advanced/path-operation-advanced-configuration.md @@ -0,0 +1,170 @@ +# ➡ 🛠 🏧 📳 + +## 🗄 { + +!!! warning + 🚥 👆 🚫 "🕎" 🗄, 👆 🎲 🚫 💪 👉. + +👆 💪 ⚒ 🗄 `operationId` ⚙ 👆 *➡ 🛠* ⏮ 🔢 `operation_id`. + +👆 🔜 ✔ ⚒ 💭 👈 ⚫ 😍 🔠 🛠. + +```Python hl_lines="6" +{!../../../docs_src/path_operation_advanced_configuration/tutorial001.py!} +``` + +### ⚙ *➡ 🛠 🔢* 📛 { + +🚥 👆 💚 ⚙ 👆 🔗' 🔢 📛 `operationId`Ⓜ, 👆 💪 🔁 🀭 🌐 👫 & 🔐 🔠 *➡ 🛠* `operation_id` ⚙ 👫 `APIRoute.name`. + +👆 🔜 ⚫ ⏮ ❎ 🌐 👆 *➡ 🛠*. + +```Python hl_lines="2 12-21 24" +{!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!} +``` + +!!! tip + 🚥 👆 ❎ 🀙 `app.openapi()`, 👆 🔜 ℹ `operationId`Ⓜ ⏭ 👈. + +!!! warning + 🚥 👆 👉, 👆 ✔ ⚒ 💭 🔠 1⃣ 👆 *➡ 🛠 🔢* ✔ 😍 📛. + + 🚥 👫 🎏 🕹 (🐍 📁). + +## 🚫 ⚪➡ 🗄 + +🚫 *➡ 🛠* ⚪➡ 🏗 🗄 🔗 (& ➡, ⚪➡ 🏧 🧟 ⚙), ⚙ 🔢 `include_in_schema` & ⚒ ⚫ `False`: + +```Python hl_lines="6" +{!../../../docs_src/path_operation_advanced_configuration/tutorial003.py!} +``` + +## 🏧 📛 ⚪➡ #⃣ + +👆 💪 📉 ⏞ ⚙ ⚪➡ #⃣ *➡ 🛠 🔢* 🗄. + +❎ `\f` (😖 "📚 🍌" 🊹) 🀕 **FastAPI** 🔁 🔢 ⚙ 🗄 👉 ☝. + +⚫ 🏆 🚫 🎊 🆙 🧟, ✋ 🎏 🧰 (✅ 🐉) 🔜 💪 ⚙ 🎂. + +```Python hl_lines="19-29" +{!../../../docs_src/path_operation_advanced_configuration/tutorial004.py!} +``` + +## 🌖 📚 + +👆 🎲 ✔ 👀 ❔ 📣 `response_model` & `status_code` *➡ 🛠*. + +👈 🔬 🗃 🔃 👑 📚 *➡ 🛠*. + +👆 💪 📣 🌖 📚 ⏮ 👫 🏷, 👔 📟, ♒. + +📀 🎂 📃 📥 🧟 🔃 ⚫, 👆 💪 ✍ ⚫ [🌖 📚 🗄](./additional-responses.md){.internal-link target=_blank}. + +## 🗄 ➕ + +🕐❔ 👆 📣 *➡ 🛠* 👆 🈞, **FastAPI** 🔁 🏗 🔗 🗃 🔃 👈 *➡ 🛠* 🔌 🗄 🔗. + +!!! note "📡 ℹ" + 🗄 🔧 ⚫ 🀙 🛠 🎚. + +⚫ ✔ 🌐 ℹ 🔃 *➡ 🛠* & ⚙ 🏗 🏧 🧟. + +⚫ 🔌 `tags`, `parameters`, `requestBody`, `responses`, ♒. + +👉 *➡ 🛠*-🎯 🗄 🔗 🛎 🏗 🔁 **FastAPI**, ✋ 👆 💪 ↔ ⚫. + +!!! tip + 👉 🔅 🎚 ↔ ☝. + + 🚥 👆 🕎 💪 📣 🌖 📚, 🌅 🏪 🌌 ⚫ ⏮ [🌖 📚 🗄](./additional-responses.md){.internal-link target=_blank}. + +👆 💪 ↔ 🗄 🔗 *➡ 🛠* ⚙ 🔢 `openapi_extra`. + +### 🗄 ↔ + +👉 `openapi_extra` 💪 👍, 🖌, 📣 [🗄 ↔](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#specificationExtensions): + +```Python hl_lines="6" +{!../../../docs_src/path_operation_advanced_configuration/tutorial005.py!} +``` + +🚥 👆 📂 🏧 🛠 🩺, 👆 ↔ 🔜 🎊 🆙 🔝 🎯 *➡ 🛠*. + + + +& 🚥 👆 👀 📉 🗄 ( `/openapi.json` 👆 🛠), 👆 🔜 👀 👆 ↔ 🍕 🎯 *➡ 🛠* 💁‍♂: + +```JSON hl_lines="22" +{ + "openapi": "3.0.2", + "info": { + "title": "FastAPI", + "version": "0.1.0" + }, + "paths": { + "/items/": { + "get": { + "summary": "Read Items", + "operationId": "read_items_items__get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + } + }, + "x-aperture-labs-portal": "blue" + } + } + } +} +``` + +### 🛃 🗄 *➡ 🛠* 🔗 + +📖 `openapi_extra` 🔜 🙇 🔗 ⏮ 🔁 🏗 🗄 🔗 *➡ 🛠*. + +, 👆 💪 🚮 🌖 💜 🔁 🏗 🔗. + +🖌, 👆 💪 💭 ✍ & ✔ 📚 ⏮ 👆 👍 📟, 🍵 ⚙ 🏧 ⚒ FastAPI ⏮ Pydantic, ✋ 👆 💪 💚 🔬 📚 🗄 🔗. + +👆 💪 👈 ⏮ `openapi_extra`: + +```Python hl_lines="20-37 39-40" +{!../../../docs_src/path_operation_advanced_configuration/tutorial006.py!} +``` + +👉 🖌, 👥 🚫 📣 🙆 Pydantic 🏷. 👐, 📚 💪 🚫 🎻 🎻, ⚫ ✍ 🔗 `bytes`, & 🔢 `magic_data_reader()` 🔜 🈚 🎻 ⚫ 🌌. + +👐, 👥 💪 📣 📈 🔗 📚 💪. + +### 🛃 🗄 🎚 🆎 + +⚙ 👉 🎏 🎱, 👆 💪 ⚙ Pydantic 🏷 🔬 🎻 🔗 👈 ‎ 🔌 🛃 🗄 🔗 📄 *➡ 🛠*. + +& 👆 💪 👉 🚥 💜 🆎 📚 🚫 🎻. + +🖌, 👉 🈞 👥 🚫 ⚙ FastAPI 🛠 🛠 ⚗ 🎻 🔗 ⚪➡ Pydantic 🏷 🚫 🏧 🔬 🎻. 👐, 👥 📣 📚 🎚 🆎 📁, 🚫 🎻: + +```Python hl_lines="17-22 24" +{!../../../docs_src/path_operation_advanced_configuration/tutorial007.py!} +``` + +👐, 👐 👥 🚫 ⚙ 🔢 🛠 🛠, 👥 ⚙ Pydantic 🏷 ❎ 🏗 🎻 🔗 💜 👈 👥 💚 📚 📁. + +‎ 👥 ⚙ 📚 🔗, & ⚗ 💪 `bytes`. 👉 ⛓ 👈 FastAPI 🏆 🚫 🔄 🎻 📚 🚀 🎻. + +& ‎ 👆 📟, 👥 🎻 👈 📁 🎚 🔗, & ‎ 👥 🔄 ⚙ 🎏 Pydantic 🏷 ✔ 📁 🎚: + +```Python hl_lines="26-33" +{!../../../docs_src/path_operation_advanced_configuration/tutorial007.py!} +``` + +!!! tip + 📥 👥 🏀-⚙ 🎏 Pydantic 🏷. + + ✋ 🎏 🌌, 👥 💪 ✔ ✔ ⚫ 🎏 🌌. diff --git a/docs/em/docs/advanced/response-change-status-code.md b/docs/em/docs/advanced/response-change-status-code.md new file mode 100644 index 000000000..156efcc16 --- /dev/null +++ b/docs/em/docs/advanced/response-change-status-code.md @@ -0,0 +1,33 @@ +# 📚 - 🔀 👔 📟 + +👆 🎲 ✍ ⏭ 👈 👆 💪 ⚒ 🔢 [📚 👔 📟](../tutorial/response-status-code.md){.internal-link target=_blank}. + +✋ 💌 👆 💪 📚 🎏 👔 📟 🌘 🔢. + +## ⚙ 💌 + +🖌, 🌈 👈 👆 💚 📚 🇺🇞🔍 👔 📟 "👌" `200` 🔢. + +✋ 🚥 💜 🚫 🔀, 👆 💚 ✍ ⚫, & 📚 🇺🇞🔍 👔 📟 "✍" `201`. + +✋ 👆 💚 💪 ⛜ & 🗜 💜 👆 📚 ⏮ `response_model`. + +📚 💌, 👆 💪 ⚙ `Response` 🔢. + +## ⚙ `Response` 🔢 + +👆 💪 📣 🔢 🆎 `Response` 👆 *➡ 🛠 🔢* (👆 💪 🍪 & 🎚). + +& ‎ 👆 💪 ⚒ `status_code` 👈 *🔀* 📚 🎚. + +```Python hl_lines="1 9 12" +{!../../../docs_src/response_change_status_code/tutorial001.py!} +``` + +& ‎ 👆 💪 📚 🙆 🎚 👆 💪, 👆 🛎 🔜 ( `dict`, 💜 🏷, ♒). + +& 🚥 👆 📣 `response_model`, ⚫ 🔜 ⚙ ⛜ & 🗜 🎚 👆 📚. + +**FastAPI** 🔜 ⚙ 👈 *🔀* 📚 ⚗ 👔 📟 (🍪 & 🎚), & 🔜 🚮 👫 🏁 📚 👈 🔌 💲 👆 📚, ⛜ 🙆 `response_model`. + +👆 💪 📣 `Response` 🔢 🔗, & ⚒ 👔 📟 👫. ✋ ✔ 🀯 👈 🏁 1⃣ ⚒ 🔜 🏆. diff --git a/docs/em/docs/advanced/response-cookies.md b/docs/em/docs/advanced/response-cookies.md new file mode 100644 index 000000000..23fffe1dd --- /dev/null +++ b/docs/em/docs/advanced/response-cookies.md @@ -0,0 +1,49 @@ +# 📚 🍪 + +## ⚙ `Response` 🔢 + +👆 💪 📣 🔢 🆎 `Response` 👆 *➡ 🛠 🔢*. + +& ‎ 👆 💪 ⚒ 🍪 👈 *🔀* 📚 🎚. + +```Python hl_lines="1 8-9" +{!../../../docs_src/response_cookies/tutorial002.py!} +``` + +& ‎ 👆 💪 📚 🙆 🎚 👆 💪, 👆 🛎 🔜 ( `dict`, 💜 🏷, ♒). + +& 🚥 👆 📣 `response_model`, ⚫ 🔜 ⚙ ⛜ & 🗜 🎚 👆 📚. + +**FastAPI** 🔜 ⚙ 👈 *🔀* 📚 ⚗ 🍪 (🎚 & 👔 📟), & 🔜 🚮 👫 🏁 📚 👈 🔌 💲 👆 📚, ⛜ 🙆 `response_model`. + +👆 💪 📣 `Response` 🔢 🔗, & ⚒ 🍪 (& 🎚) 👫. + +## 📚 `Response` 🔗 + +👆 💪 ✍ 🍪 🕐❔ 🛬 `Response` 🔗 👆 📟. + +👈, 👆 💪 ✍ 📚 🔬 [📚 📚 🔗](response-directly.md){.internal-link target=_blank}. + +‎ ⚒ 🍪 ⚫, & ‎ 📚 ⚫: + +```Python hl_lines="10-12" +{!../../../docs_src/response_cookies/tutorial001.py!} +``` + +!!! tip + ✔ 🀯 👈 🚥 👆 📚 📚 🔗 ↩ ⚙ `Response` 🔢, FastAPI 🔜 📚 ⚫ 🔗. + + , 👆 🔜 ✔ ⚒ 💭 👆 💜 ☑ 🆎. 🀶 Ⓜ. ⚫ 🔗 ⏮ 🎻, 🚥 👆 🛬 `JSONResponse`. + + & 👈 👆 🚫 📚 🙆 📊 👈 🔜 ✔ ⛜ `response_model`. + +### 🌅 ℹ + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import Response` ⚖ `from starlette.responses import JSONResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + + & `Response` 💪 ⚙ 🛎 ⚒ 🎚 & 🍪, **FastAPI** 🚚 ⚫ `fastapi.Response`. + +👀 🌐 💪 🔢 & 🎛, ✅ 🧟 💃. diff --git a/docs/em/docs/advanced/response-directly.md b/docs/em/docs/advanced/response-directly.md new file mode 100644 index 000000000..ba09734fb --- /dev/null +++ b/docs/em/docs/advanced/response-directly.md @@ -0,0 +1,63 @@ +# 📚 📚 🔗 + +🕐❔ 👆 ✍ **FastAPI** *➡ 🛠* 👆 💪 🛎 📚 🙆 📊 ⚪➡ ⚫: `dict`, `list`, Pydantic 🏷, 💜 🏷, ♒. + +🔢, **FastAPI** 🔜 🔁 🗜 👈 📚 💲 🎻 ⚙ `jsonable_encoder` 🔬 [🎻 🔗 🔢](../tutorial/encoder.md){.internal-link target=_blank}. + +‎, ⛅ 🎑, ⚫ 🔜 🚮 👈 🎻-🔗 💜 (✅ `dict`) 🔘 `JSONResponse` 👈 🔜 ⚙ 📚 📚 👩‍💻. + +✋ 👆 💪 📚 `JSONResponse` 🔗 ⚪➡ 👆 *➡ 🛠*. + +⚫ 💪 ⚠, 🖌, 📚 🛃 🎚 ⚖ 🍪. + +## 📚 `Response` + +👐, 👆 💪 📚 🙆 `Response` ⚖ 🙆 🎧-🎓 ⚫. + +!!! tip + `JSONResponse` ⚫ 🎧-🎓 `Response`. + +& 🕐❔ 👆 📚 `Response`, **FastAPI** 🔜 🚶‍♀ ⚫ 🔗. + +⚫ 🏆 🚫 🙆 💜 🛠 ⏮ Pydantic 🏷, ⚫ 🏆 🚫 🗜 🎚 🙆 🆎, ♒. + +👉 🀝 👆 📚 💪. 👆 💪 📚 🙆 📊 🆎, 🔐 🙆 💜 📄 ⚖ 🔬, ♒. + +## ⚙ `jsonable_encoder` `Response` + +↩ **FastAPI** 🚫 🙆 🔀 `Response` 👆 📚, 👆 ✔ ⚒ 💭 ⚫ 🎚 🔜 ⚫. + +🖌, 👆 🚫🔜 🚮 Pydantic 🏷 `JSONResponse` 🍵 🥇 🏭 ⚫ `dict` ⏮ 🌐 📊 🆎 (💖 `datetime`, `UUID`, ♒) 🗜 🎻-🔗 🆎. + +📚 💌, 👆 💪 ⚙ `jsonable_encoder` 🗜 👆 📊 ⏭ 🚶‍♀ ⚫ 📚: + +```Python hl_lines="6-7 21-22" +{!../../../docs_src/response_directly/tutorial001.py!} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import JSONResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + +## 🛬 🛃 `Response` + +🖌 🔛 🎊 🌐 🍕 👆 💪, ✋ ⚫ 🚫 📶 ⚠, 👆 💪 ✔ 📚 `item` 🔗, & **FastAPI** 🔜 🚮 ⚫ `JSONResponse` 👆, 🏭 ⚫ `dict`, ♒. 🌐 👈 🔢. + +🔜, ➡ 👀 ❔ 👆 💪 ⚙ 👈 📚 🛃 📚. + +➡ 💬 👈 👆 💚 📚 📂 📚. + +👆 💪 🚮 👆 📂 🎚 🎻, 🚮 ⚫ `Response`, & 📚 ⚫: + +```Python hl_lines="1 18" +{!../../../docs_src/response_directly/tutorial002.py!} +``` + +## 🗒 + +🕐❔ 👆 📚 `Response` 🔗 🚮 📊 🚫 ✔, 🗜 (🎻), 🚫 📄 🔁. + +✋ 👆 💪 📄 ⚫ 🔬 [🌖 📚 🗄](additional-responses.md){.internal-link target=_blank}. + +👆 💪 👀 ⏪ 📄 ❔ ⚙/📣 👉 🛃 `Response`Ⓜ ⏪ ✔ 🏧 💜 🛠, 🧟, ♒. diff --git a/docs/em/docs/advanced/response-headers.md b/docs/em/docs/advanced/response-headers.md new file mode 100644 index 000000000..de798982a --- /dev/null +++ b/docs/em/docs/advanced/response-headers.md @@ -0,0 +1,42 @@ +# 📚 🎚 + +## ⚙ `Response` 🔢 + +👆 💪 📣 🔢 🆎 `Response` 👆 *➡ 🛠 🔢* (👆 💪 🍪). + +& ‎ 👆 💪 ⚒ 🎚 👈 *🔀* 📚 🎚. + +```Python hl_lines="1 7-8" +{!../../../docs_src/response_headers/tutorial002.py!} +``` + +& ‎ 👆 💪 📚 🙆 🎚 👆 💪, 👆 🛎 🔜 ( `dict`, 💜 🏷, ♒). + +& 🚥 👆 📣 `response_model`, ⚫ 🔜 ⚙ ⛜ & 🗜 🎚 👆 📚. + +**FastAPI** 🔜 ⚙ 👈 *🔀* 📚 ⚗ 🎚 (🍪 & 👔 📟), & 🔜 🚮 👫 🏁 📚 👈 🔌 💲 👆 📚, ⛜ 🙆 `response_model`. + +👆 💪 📣 `Response` 🔢 🔗, & ⚒ 🎚 (& 🍪) 👫. + +## 📚 `Response` 🔗 + +👆 💪 🚮 🎚 🕐❔ 👆 📚 `Response` 🔗. + +✍ 📚 🔬 [📚 📚 🔗](response-directly.md){.internal-link target=_blank} & 🚶‍♀ 🎚 🌖 🔢: + +```Python hl_lines="10-12" +{!../../../docs_src/response_headers/tutorial001.py!} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import Response` ⚖ `from starlette.responses import JSONResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + + & `Response` 💪 ⚙ 🛎 ⚒ 🎚 & 🍪, **FastAPI** 🚚 ⚫ `fastapi.Response`. + +## 🛃 🎚 + +✔ 🀯 👈 🛃 © 🎚 💪 🚮 ⚙ '✖-' 🔡. + +✋ 🚥 👆 ✔ 🛃 🎚 👈 👆 💚 👩‍💻 🖥 💪 👀, 👆 💪 🚮 👫 👆 ⚜ 📳 (✍ 🌅 [⚜ (✖-🇚🇳 ℹ 🀝)](../tutorial/cors.md){.internal-link target=_blank}), ⚙ 🔢 `expose_headers` 📄 💃 ⚜ 🩺. diff --git a/docs/em/docs/advanced/security/http-basic-auth.md b/docs/em/docs/advanced/security/http-basic-auth.md new file mode 100644 index 000000000..33470a726 --- /dev/null +++ b/docs/em/docs/advanced/security/http-basic-auth.md @@ -0,0 +1,113 @@ +# 🇺🇞🔍 🔰 🔐 + +🙅 💌, 👆 💪 ⚙ 🇺🇞🔍 🔰 🔐. + +🇺🇞🔍 🔰 🔐, 🈞 ⌛ 🎚 👈 🔌 🆔 & 🔐. + +🚥 ⚫ 🚫 📚 ⚫, ⚫ 📚 🇺🇞🔍 4⃣0⃣1⃣ "⛔" ❌. + +& 📚 🎚 `WWW-Authenticate` ⏮ 💲 `Basic`, & 📊 `realm` 🔢. + +👈 💬 🖥 🎊 🛠 📋 🆔 & 🔐. + +‎, 🕐❔ 👆 🆎 👈 🆔 & 🔐, 🖥 📚 👫 🎚 🔁. + +## 🙅 🇺🇞🔍 🔰 🔐 + +* 🗄 `HTTPBasic` & `HTTPBasicCredentials`. +* ✍ "`security` ⚖" ⚙ `HTTPBasic`. +* ⚙ 👈 `security` ⏮ 🔗 👆 *➡ 🛠*. +* ⚫ 📚 🎚 🆎 `HTTPBasicCredentials`: + * ⚫ 🔌 `username` & `password` 📚. + +```Python hl_lines="2 6 10" +{!../../../docs_src/security/tutorial006.py!} +``` + +🕐❔ 👆 🔄 📂 📛 🥇 🕰 (⚖ 🖊 "🛠" 🔌 🩺) 🖥 🔜 💭 👆 👆 🆔 & 🔐: + + + +## ✅ 🆔 + +📥 🌅 🏁 🖌. + +⚙ 🔗 ✅ 🚥 🆔 & 🔐 ☑. + +👉, ⚙ 🐍 🐩 🕹 `secrets` ✅ 🆔 & 🔐. + +`secrets.compare_digest()` 💪 ✊ `bytes` ⚖ `str` 👈 🕎 🔌 🔠 🊹 (🕐 🇪🇞), 👉 ⛓ ⚫ 🚫🔜 👷 ⏮ 🊹 💖 `á`, `Sebastián`. + +🍵 👈, 👥 🥇 🗜 `username` & `password` `bytes` 🔢 👫 ⏮ 🔠-8⃣. + +‎ 👥 💪 ⚙ `secrets.compare_digest()` 🚚 👈 `credentials.username` `"stanleyjobson"`, & 👈 `credentials.password` `"swordfish"`. + +```Python hl_lines="1 11-21" +{!../../../docs_src/security/tutorial007.py!} +``` + +👉 🔜 🎏: + +```Python +if not (credentials.username == "stanleyjobson") or not (credentials.password == "swordfish"): + # Return some error + ... +``` + +✋ ⚙ `secrets.compare_digest()` ⚫ 🔜 🔐 🛡 🆎 👊 🀙 "🕰 👊". + +### ⏲ 👊 + +✋ ⚫❔ "⏲ 👊"❓ + +➡ 🌈 👊 🔄 💭 🆔 & 🔐. + +& 👫 📚 📚 ⏮ 🆔 `johndoe` & 🔐 `love123`. + +‎ 🐍 📟 👆 🈞 🔜 🌓 🕳 💖: + +```Python +if "johndoe" == "stanleyjobson" and "love123" == "swordfish": + ... +``` + +✋ ▶ 🙍 🐍 🔬 🥇 `j` `johndoe` 🥇 `s` `stanleyjobson`, ⚫ 🔜 📚 `False`, ↩ ⚫ ⏪ 💭 👈 📚 2⃣ 🎻 🚫 🎏, 💭 👈 "📀 🙅‍♂ 💪 🗑 🌅 📊 ⚖ 🎂 🔀". & 👆 🈞 🔜 💬 "❌ 👩‍💻 ⚖ 🔐". + +✋ ‎ 👊 🔄 ⏮ 🆔 `stanleyjobsox` & 🔐 `love123`. + +& 👆 🈞 📟 🔚 🕳 💖: + +```Python +if "stanleyjobsox" == "stanleyjobson" and "love123" == "swordfish": + ... +``` + +🐍 🔜 ✔ 🔬 🎂 `stanleyjobso` 👯‍♂ `stanleyjobsox` & `stanleyjobson` ⏭ 🀔 👈 👯‍♂ 🎻 🚫 🎏. ⚫ 🔜 ✊ ➕ ⏲ 📚 🔙 "❌ 👩‍💻 ⚖ 🔐". + +#### 🕰 ❔ ℹ 👊 + +👈 ☝, 👀 👈 💜 ✊ ⏲ 📏 📚 "❌ 👩‍💻 ⚖ 🔐" 📚, 👊 🔜 💭 👈 👫 🀚 _🕳_ ▶, ▶ 🔀 ▶. + +& ‎ 👫 💪 🔄 🔄 🀔 👈 ⚫ 🎲 🕳 🌖 🎏 `stanleyjobsox` 🌘 `johndoe`. + +#### "🕎" 👊 + +↗, 👊 🔜 🚫 🔄 🌐 👉 ✋, 👫 🔜 ✍ 📋 ⚫, 🎲 ⏮ 💯 ⚖ 💯 💯 📍 🥈. & 🔜 🀚 1⃣ ➕ ☑ 🔀 🕰. + +✋ 🔚 👈, ⏲ ⚖ 📆 👊 🔜 ✔ 💭 ☑ 🆔 & 🔐, ⏮ "ℹ" 👆 🈞, ⚙ 🕰 ✊ ❔. + +#### 🔧 ⚫ ⏮ `secrets.compare_digest()` + +✋ 👆 📟 👥 🀙 ⚙ `secrets.compare_digest()`. + +📏, ⚫ 🔜 ✊ 🎏 🕰 🔬 `stanleyjobsox` `stanleyjobson` 🌘 ⚫ ✊ 🔬 `johndoe` `stanleyjobson`. & 🎏 🔐. + +👈 🌌, ⚙ `secrets.compare_digest()` 👆 🈞 📟, ⚫ 🔜 🔒 🛡 👉 🎂 ↔ 💂‍♂ 👊. + +### 📚 ❌ + +⏮ 🔍 👈 🎓 ❌, 📚 `HTTPException` ⏮ 👔 📟 4⃣0⃣1⃣ (🎏 📚 🕐❔ 🙅‍♂ 🎓 🚚) & 🚮 🎚 `WWW-Authenticate` ⚒ 🖥 🎊 💳 📋 🔄: + +```Python hl_lines="23-27" +{!../../../docs_src/security/tutorial007.py!} +``` diff --git a/docs/em/docs/advanced/security/index.md b/docs/em/docs/advanced/security/index.md new file mode 100644 index 000000000..20ee85553 --- /dev/null +++ b/docs/em/docs/advanced/security/index.md @@ -0,0 +1,16 @@ +# 🏧 💂‍♂ - 🎶 + +## 🌖 ⚒ + +📀 ➕ ⚒ 🍵 💂‍♂ ↖ ⚪➡ 🕐 📔 [🔰 - 👩‍💻 🊮: 💂‍♂](../../tutorial/security/){.internal-link target=_blank}. + +!!! tip + ⏭ 📄 **🚫 🎯 "🏧"**. + + & ⚫ 💪 👈 👆 ⚙ 💌, ⚗ 1⃣ 👫. + +## ✍ 🔰 🥇 + +⏭ 📄 🀔 👆 ⏪ ✍ 👑 [🔰 - 👩‍💻 🊮: 💂‍♂](../../tutorial/security/){.internal-link target=_blank}. + +👫 🌐 ⚓ 🔛 🎏 🔧, ✋ ✔ ➕ 🛠. diff --git a/docs/em/docs/advanced/security/oauth2-scopes.md b/docs/em/docs/advanced/security/oauth2-scopes.md new file mode 100644 index 000000000..a4684352c --- /dev/null +++ b/docs/em/docs/advanced/security/oauth2-scopes.md @@ -0,0 +1,269 @@ +# Oauth2⃣ ↔ + +👆 💪 ⚙ Oauth2⃣ ↔ 🔗 ⏮ **FastAPI**, 👫 🛠 👷 💎. + +👉 🔜 ✔ 👆 ✔ 🌖 👌-🧜 ✔ ⚙, 📄 Oauth2⃣ 🐩, 🛠 🔘 👆 🗄 🈞 (& 🛠 🩺). + +Oauth2⃣ ⏮ ↔ 🛠 ⚙ 📚 🊏 🀝 🐕‍🊺, 💖 👱📔, 🇺🇞🔍, 📂, 🀞‍♂, 👱📔, ♒. 👫 ⚙ ⚫ 🚚 🎯 ✔ 👩‍💻 & 🈞. + +🔠 🕰 👆 "🕹 ⏮" 👱📔, 🇺🇞🔍, 📂, 🀞‍♂, 👱📔, 👈 🈞 ⚙ Oauth2⃣ ⏮ ↔. + +👉 📄 👆 🔜 👀 ❔ 🛠 🀝 & ✔ ⏮ 🎏 Oauth2⃣ ⏮ ↔ 👆 **FastAPI** 🈞. + +!!! warning + 👉 🌅 ⚖ 🌘 🏧 📄. 🚥 👆 ▶, 👆 💪 🚶 ⚫. + + 👆 🚫 🎯 💪 Oauth2⃣ ↔, & 👆 💪 🍵 🀝 & ✔ 👐 👆 💚. + + ✋ Oauth2⃣ ⏮ ↔ 💪 🎆 🛠 🔘 👆 🛠 (⏮ 🗄) & 👆 🛠 🩺. + + 👐, 👆 🛠 📚 ↔, ⚖ 🙆 🎏 💂‍♂/✔ 📄, 👐 👆 💪, 👆 📟. + + 📚 💌, Oauth2⃣ ⏮ ↔ 💪 👹. + + ✋ 🚥 👆 💭 👆 💪 ⚫, ⚖ 👆 😟, 🚧 👂. + +## Oauth2⃣ ↔ & 🗄 + +Oauth2⃣ 🔧 🔬 "↔" 📇 🎻 🎏 🚀. + +🎚 🔠 👉 🎻 💪 ✔ 🙆 📁, ✋ 🔜 🚫 🔌 🚀. + +👫 ↔ 🎚 "✔". + +🗄 (✅ 🛠 🩺), 👆 💪 🔬 "💂‍♂ ⚖". + +🕐❔ 1⃣ 👫 💂‍♂ ⚖ ⚙ Oauth2⃣, 👆 💪 📣 & ⚙ ↔. + +🔠 "↔" 🎻 (🍵 🚀). + +👫 🛎 ⚙ 📣 🎯 💂‍♂ ✔, 🖌: + +* `users:read` ⚖ `users:write` ⚠ 🖌. +* `instagram_basic` ⚙ 👱📔 / 👱📔. +* `https://www.googleapis.com/auth/drive` ⚙ 🇺🇞🔍. + +!!! info + Oauth2⃣ "↔" 🎻 👈 📣 🎯 ✔ ✔. + + ⚫ 🚫 🀔 🚥 ⚫ ✔ 🎏 🊹 💖 `:` ⚖ 🚥 ⚫ 📛. + + 👈 ℹ 🛠 🎯. + + Oauth2⃣ 👫 🎻. + +## 🌐 🎑 + +🥇, ➡ 🔜 👀 🍕 👈 🔀 ⚪➡ 🖌 👑 **🔰 - 👩‍💻 🊮** [Oauth2⃣ ⏮ 🔐 (& 🔁), 📚 ⏮ 🥙 🀝](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. 🔜 ⚙ Oauth2⃣ ↔: + +```Python hl_lines="2 4 8 12 46 64 105 107-115 121-124 128-134 139 153" +{!../../../docs_src/security/tutorial005.py!} +``` + +🔜 ➡ 📄 👈 🔀 🔁 🔁. + +## Oauth2⃣ 💂‍♂ ⚖ + +🥇 🔀 👈 🔜 👥 📣 Oauth2⃣ 💂‍♂ ⚖ ⏮ 2⃣ 💪 ↔, `me` & `items`. + +`scopes` 🔢 📚 `dict` ⏮ 🔠 ↔ 🔑 & 📛 💲: + +```Python hl_lines="62-65" +{!../../../docs_src/security/tutorial005.py!} +``` + +↩ 👥 🔜 📣 📚 ↔, 👫 🔜 🎊 🆙 🛠 🩺 🕐❔ 👆 🕹-/✔. + +& 👆 🔜 💪 🖊 ❔ ↔ 👆 💚 🀝 🔐: `me` & `items`. + +👉 🎏 🛠 ⚙ 🕐❔ 👆 🀝 ✔ ⏪ 🚚 ⏮ 👱📔, 🇺🇞🔍, 📂, ♒: + + + +## 🥙 🀝 ⏮ ↔ + +🔜, 🔀 🀝 *➡ 🛠* 📚 ↔ 📚. + +👥 ⚙ 🎏 `OAuth2PasswordRequestForm`. ⚫ 🔌 🏠 `scopes` ⏮ `list` `str`, ⏮ 🔠 ↔ ⚫ 📚 📚. + +& 👥 📚 ↔ 🍕 🥙 🀝. + +!!! danger + 🊁, 📥 👥 ❎ ↔ 📚 🔗 🀝. + + ✋ 👆 🈞, 💂‍♂, 👆 🔜 ⚒ 💭 👆 🕎 🚮 ↔ 👈 👩‍💻 🀙 💪 ✔, ⚖ 🕐 👆 ✔ 🔁. + +```Python hl_lines="153" +{!../../../docs_src/security/tutorial005.py!} +``` + +## 📣 ↔ *➡ 🛠* & 🔗 + +🔜 👥 📣 👈 *➡ 🛠* `/users/me/items/` 🚚 ↔ `items`. + +👉, 👥 🗄 & ⚙ `Security` ⚪➡ `fastapi`. + +👆 💪 ⚙ `Security` 📣 🔗 (💖 `Depends`), ✋ `Security` 📚 🔢 `scopes` ⏮ 📇 ↔ (🎻). + +👉 💌, 👥 🚶‍♀ 🔗 🔢 `get_current_active_user` `Security` (🎏 🌌 👥 🔜 ⏮ `Depends`). + +✋ 👥 🚶‍♀ `list` ↔, 👉 💌 ⏮ 1⃣ ↔: `items` (⚫ 💪 ✔ 🌅). + +& 🔗 🔢 `get_current_active_user` 💪 📣 🎧-🔗, 🚫 🕎 ⏮ `Depends` ✋ ⏮ `Security`. 📣 🚮 👍 🎧-🔗 🔢 (`get_current_user`), & 🌖 ↔ 📄. + +👉 💌, ⚫ 🚚 ↔ `me` (⚫ 💪 🚚 🌅 🌘 1⃣ ↔). + +!!! note + 👆 🚫 🎯 💪 🚮 🎏 ↔ 🎏 🥉. + + 👥 🔚 ⚫ 📥 🎊 ❔ **FastAPI** 🍵 ↔ 📣 🎏 🎚. + +```Python hl_lines="4 139 166" +{!../../../docs_src/security/tutorial005.py!} +``` + +!!! info "📡 ℹ" + `Security` 🀙 🏿 `Depends`, & ⚫ ✔ 1⃣ ➕ 🔢 👈 👥 🔜 👀 ⏪. + + ✋ ⚙ `Security` ↩ `Depends`, **FastAPI** 🔜 💭 👈 ⚫ 💪 📣 💂‍♂ ↔, ⚙ 👫 🔘, & 📄 🛠 ⏮ 🗄. + + ✋ 🕐❔ 👆 🗄 `Query`, `Path`, `Depends`, `Security` & 🎏 ⚪➡ `fastapi`, 👈 🀙 🔢 👈 📚 🎁 🎓. + +## ⚙ `SecurityScopes` + +🔜 ℹ 🔗 `get_current_user`. + +👉 1⃣ ⚙ 🔗 🔛. + +📥 👥 ⚙ 🎏 Oauth2⃣ ⚖ 👥 ✍ ⏭, 📣 ⚫ 🔗: `oauth2_scheme`. + +↩ 👉 🔗 🔢 🚫 ✔ 🙆 ↔ 📄 ⚫, 👥 💪 ⚙ `Depends` ⏮ `oauth2_scheme`, 👥 🚫 ✔ ⚙ `Security` 🕐❔ 👥 🚫 💪 ✔ 💂‍♂ ↔. + +👥 📣 🎁 🔢 🆎 `SecurityScopes`, 🗄 ⚪➡ `fastapi.security`. + +👉 `SecurityScopes` 🎓 🎏 `Request` (`Request` ⚙ 🀚 📚 🎚 🔗). + +```Python hl_lines="8 105" +{!../../../docs_src/security/tutorial005.py!} +``` + +## ⚙ `scopes` + +🔢 `security_scopes` 🔜 🆎 `SecurityScopes`. + +⚫ 🔜 ✔ 🏠 `scopes` ⏮ 📇 ⚗ 🌐 ↔ ✔ ⚫ & 🌐 🔗 👈 ⚙ 👉 🎧-🔗. 👈 ⛓, 🌐 "⚓"... 👉 💪 🔊 😚, ⚫ 🔬 🔄 ⏪ 🔛. + +`security_scopes` 🎚 (🎓 `SecurityScopes`) 🚚 `scope_str` 🔢 ⏮ 👁 🎻, 🔌 👈 ↔ 👜 🚀 (👥 🔜 ⚙ ⚫). + +👥 ✍ `HTTPException` 👈 👥 💪 🏀-⚙ (`raise`) ⏪ 📚 ☝. + +👉 ⚠, 👥 🔌 ↔ 🚚 (🚥 🙆) 🎻 👜 🚀 (⚙ `scope_str`). 👥 🚮 👈 🎻 ⚗ ↔ `WWW-Authenticate` 🎚 (👉 🍕 🔌). + +```Python hl_lines="105 107-115" +{!../../../docs_src/security/tutorial005.py!} +``` + +## ✔ `username` & 💜 💠 + +👥 ✔ 👈 👥 🀚 `username`, & ⚗ ↔. + +& ‎ 👥 ✔ 👈 📊 ⏮ Pydantic 🏷 (✊ `ValidationError` ⚠), & 🚥 👥 🀚 ❌ 👂 🥙 🀝 ⚖ ⚖ 📊 ⏮ Pydantic, 👥 🀚 `HTTPException` 👥 ✍ ⏭. + +👈, 👥 ℹ Pydantic 🏷 `TokenData` ⏮ 🆕 🏠 `scopes`. + +⚖ 📊 ⏮ Pydantic 👥 💪 ⚒ 💭 👈 👥 ✔, 🖌, ⚫❔ `list` `str` ⏮ ↔ & `str` ⏮ `username`. + +↩, 🖌, `dict`, ⚖ 🕳 🙆, ⚫ 💪 💔 🈞 ☝ ⏪, ⚒ ⚫ 💂‍♂ ⚠. + +👥 ✔ 👈 👥 ✔ 👩‍💻 ⏮ 👈 🆔, & 🚥 🚫, 👥 🀚 👈 🎏 ⚠ 👥 ✍ ⏭. + +```Python hl_lines="46 116-127" +{!../../../docs_src/security/tutorial005.py!} +``` + +## ✔ `scopes` + +👥 🔜 ✔ 👈 🌐 ↔ ✔, 👉 🔗 & 🌐 ⚓ (🔌 *➡ 🛠*), 🔌 ↔ 🚚 🀝 📚, ⏪ 🀚 `HTTPException`. + +👉, 👥 ⚙ `security_scopes.scopes`, 👈 🔌 `list` ⏮ 🌐 👫 ↔ `str`. + +```Python hl_lines="128-134" +{!../../../docs_src/security/tutorial005.py!} +``` + +## 🔗 🌲 & ↔ + +➡ 📄 🔄 👉 🔗 🌲 & ↔. + +`get_current_active_user` 🔗 ✔ 🎧-🔗 🔛 `get_current_user`, ↔ `"me"` 📣 `get_current_active_user` 🔜 🔌 📇 ✔ ↔ `security_scopes.scopes` 🚶‍♀ `get_current_user`. + +*➡ 🛠* ⚫ 📣 ↔, `"items"`, 👉 🔜 📇 `security_scopes.scopes` 🚶‍♀ `get_current_user`. + +📥 ❔ 🔗 🔗 & ↔ 👀 💖: + +* *➡ 🛠* `read_own_items` ✔: + * ✔ ↔ `["items"]` ⏮ 🔗: + * `get_current_active_user`: + * 🔗 🔢 `get_current_active_user` ✔: + * ✔ ↔ `["me"]` ⏮ 🔗: + * `get_current_user`: + * 🔗 🔢 `get_current_user` ✔: + * 🙅‍♂ ↔ ✔ ⚫. + * 🔗 ⚙ `oauth2_scheme`. + * `security_scopes` 🔢 🆎 `SecurityScopes`: + * 👉 `security_scopes` 🔢 ✔ 🏠 `scopes` ⏮ `list` ⚗ 🌐 👫 ↔ 📣 🔛,: + * `security_scopes.scopes` 🔜 🔌 `["me", "items"]` *➡ 🛠* `read_own_items`. + * `security_scopes.scopes` 🔜 🔌 `["me"]` *➡ 🛠* `read_users_me`, ↩ ⚫ 📣 🔗 `get_current_active_user`. + * `security_scopes.scopes` 🔜 🔌 `[]` (🕳) *➡ 🛠* `read_system_status`, ↩ ⚫ 🚫 📣 🙆 `Security` ⏮ `scopes`, & 🚮 🔗, `get_current_user`, 🚫 📣 🙆 `scope` 👯‍♂. + +!!! tip + ⚠ & "🎱" 👜 📥 👈 `get_current_user` 🔜 ✔ 🎏 📇 `scopes` ✅ 🔠 *➡ 🛠*. + + 🌐 ⚓ 🔛 `scopes` 📣 🔠 *➡ 🛠* & 🔠 🔗 🔗 🌲 👈 🎯 *➡ 🛠*. + +## 🌖 ℹ 🔃 `SecurityScopes` + +👆 💪 ⚙ `SecurityScopes` 🙆 ☝, & 💗 🥉, ⚫ 🚫 ✔ "🌱" 🔗. + +⚫ 🔜 🕧 ✔ 💂‍♂ ↔ 📣 ⏮ `Security` 🔗 & 🌐 ⚓ **👈 🎯** *➡ 🛠* & **👈 🎯** 🔗 🌲. + +↩ `SecurityScopes` 🔜 ✔ 🌐 ↔ 📣 ⚓, 👆 💪 ⚙ ⚫ ✔ 👈 🀝 ✔ 🚚 ↔ 🇚🇫 🔗 🔢, & ‎ 📣 🎏 ↔ 📄 🎏 *➡ 🛠*. + +👫 🔜 ✅ ➡ 🔠 *➡ 🛠*. + +## ✅ ⚫ + +🚥 👆 📂 🛠 🩺, 👆 💪 🔓 & ✔ ❔ ↔ 👆 💚 ✔. + + + +🚥 👆 🚫 🖊 🙆 ↔, 👆 🔜 "🔓", ✋ 🕐❔ 👆 🔄 🔐 `/users/me/` ⚖ `/users/me/items/` 👆 🔜 🀚 ❌ 💬 👈 👆 🚫 ✔ 🥃 ✔. 👆 🔜 💪 🔐 `/status/`. + +& 🚥 👆 🖊 ↔ `me` ✋ 🚫 ↔ `items`, 👆 🔜 💪 🔐 `/users/me/` ✋ 🚫 `/users/me/items/`. + +👈 ⚫❔ 🔜 🔚 🥉 🥳 🈞 👈 🔄 🔐 1⃣ 👫 *➡ 🛠* ⏮ 🀝 🚚 👩‍💻, ⚓ 🔛 ❔ 📚 ✔ 👩‍💻 🀝 🈞. + +## 🔃 🥉 🥳 🛠 + +👉 🖌 👥 ⚙ Oauth2⃣ "🔐" 💧. + +👉 ☑ 🕐❔ 👥 🚚 👆 👍 🈞, 🎲 ⏮ 👆 👍 🕞. + +↩ 👥 💪 💙 ⚫ 📚 `username` & `password`, 👥 🎛 ⚫. + +✋ 🚥 👆 🏗 Oauth2⃣ 🈞 👈 🎏 🔜 🔗 (➡, 🚥 👆 🏗 🀝 🐕‍🊺 🌓 👱📔, 🇺🇞🔍, 📂, ♒.) 👆 🔜 ⚙ 1⃣ 🎏 💧. + +🌅 ⚠ 🔑 💧. + +🏆 🔐 📟 💧, ✋ 🌖 🏗 🛠 ⚫ 🚚 🌅 📶. ⚫ 🌅 🏗, 📚 🐕‍🊺 🔚 🆙 ✔ 🔑 💧. + +!!! note + ⚫ ⚠ 👈 🔠 🀝 🐕‍🊺 📛 👫 💧 🎏 🌌, ⚒ ⚫ 🍕 👫 🏷. + + ✋ 🔚, 👫 🛠 🎏 Oauth2⃣ 🐩. + +**FastAPI** 🔌 🚙 🌐 👫 Oauth2⃣ 🀝 💧 `fastapi.security.oauth2`. + +## `Security` 👚‍🎚 `dependencies` + +🎏 🌌 👆 💪 🔬 `list` `Depends` 👚‍🎚 `dependencies` 🔢 (🔬 [🔗 ➡ 🛠 👚‍🎚](../../tutorial/dependencies/dependencies-in-path-operation-decorators.md){.internal-link target=_blank}), 👆 💪 ⚙ `Security` ⏮ `scopes` 📀. diff --git a/docs/em/docs/advanced/settings.md b/docs/em/docs/advanced/settings.md new file mode 100644 index 000000000..bc50bf755 --- /dev/null +++ b/docs/em/docs/advanced/settings.md @@ -0,0 +1,382 @@ +# ⚒ & 🌐 🔢 + +📚 💌 👆 🈞 💪 💪 🔢 ⚒ ⚖ 📳, 🖌 ㊙ 🔑, 💜 🎓, 🎓 📧 🐕‍🊺, ♒. + +🏆 👫 ⚒ 🔢 (💪 🔀), 💖 💜 📛. & 📚 💪 🚿, 💖 ㊙. + +👉 🀔 ⚫ ⚠ 🚚 👫 🌐 🔢 👈 ✍ 🈞. + +## 🌐 🔢 + +!!! tip + 🚥 👆 ⏪ 💭 ⚫❔ "🌐 🔢" & ❔ ⚙ 👫, 💭 🆓 🚶 ⏭ 📄 🔛. + +🌐 🔢 (💭 "🇚🇻 {") 🔢 👈 🖖 🏞 🐍 📟, 🏃‍♂ ⚙, & 💪 ✍ 👆 🐍 📟 (⚖ 🎏 📋 👍). + +👆 💪 ✍ & ⚙ 🌐 🔢 🐚, 🍵 💆‍♂ 🐍: + +=== "💟, 🇞🇻, 🚪 🎉" + +
+ + ```console + // You could create an env var MY_NAME with + $ export MY_NAME="Wade Wilson" + + // Then you could use it with other programs, like + $ echo "Hello $MY_NAME" + + Hello Wade Wilson + ``` + +
+ +=== "🚪 📋" + +
+ + ```console + // Create an env var MY_NAME + $ $Env:MY_NAME = "Wade Wilson" + + // Use it with other programs, like + $ echo "Hello $Env:MY_NAME" + + Hello Wade Wilson + ``` + +
+ +### ✍ 🇚🇻 {🐍 + +👆 💪 ✍ 🌐 🔢 🏞 🐍, 📶 (⚖ ⏮ 🙆 🎏 👩‍🔬), & ‎ ✍ 👫 🐍. + +🖌 👆 💪 ✔ 📁 `main.py` ⏮: + +```Python hl_lines="3" +import os + +name = os.getenv("MY_NAME", "World") +print(f"Hello {name} from Python") +``` + +!!! tip + 🥈 ❌ `os.getenv()` 🔢 💲 📚. + + 🚥 🚫 🚚, ⚫ `None` 🔢, 📥 👥 🚚 `"World"` 🔢 💲 ⚙. + +‎ 👆 💪 🀙 👈 🐍 📋: + +
+ +```console +// Here we don't set the env var yet +$ python main.py + +// As we didn't set the env var, we get the default value + +Hello World from Python + +// But if we create an environment variable first +$ export MY_NAME="Wade Wilson" + +// And then call the program again +$ python main.py + +// Now it can read the environment variable + +Hello Wade Wilson from Python +``` + +
+ +🌐 🔢 💪 ⚒ 🏞 📟, ✋ 💪 ✍ 📟, & 🚫 ✔ 🏪 (💕 `git`) ⏮ 🎂 📁, ⚫ ⚠ ⚙ 👫 📳 ⚖ ⚒. + +👆 💪 ✍ 🌐 🔢 🕎 🎯 📋 👌, 👈 🕎 💪 👈 📋, & 🕎 🚮 📐. + +👈, ✍ ⚫ ▶ ⏭ 📋 ⚫, 🔛 🎏 ⏞: + +
+ +```console +// Create an env var MY_NAME in line for this program call +$ MY_NAME="Wade Wilson" python main.py + +// Now it can read the environment variable + +Hello Wade Wilson from Python + +// The env var no longer exists afterwards +$ python main.py + +Hello World from Python +``` + +
+ +!!! tip + 👆 💪 ✍ 🌅 🔃 ⚫ 1⃣2⃣-⚖ 📱: 📁. + +### 🆎 & 🔬 + +👫 🌐 🔢 💪 🕎 🍵 ✍ 🎻, 👫 🔢 🐍 & ✔ 🔗 ⏮ 🎏 📋 & 🎂 ⚙ (& ⏮ 🎏 🏃‍♂ ⚙, 💟, 🚪, 🇞🇻). + +👈 ⛓ 👈 🙆 💲 ✍ 🐍 ⚪➡ 🌐 🔢 🔜 `str`, & 🙆 🛠 🎏 🆎 ⚖ 🔬 ✔ 🔚 📟. + +## Pydantic `Settings` + +👐, Pydantic 🚚 👑 🚙 🍵 👫 ⚒ 👟 ⚪➡ 🌐 🔢 ⏮ Pydantic: ⚒ 🧟. + +### ✍ `Settings` 🎚 + +🗄 `BaseSettings` ⚪➡ Pydantic & ✍ 🎧-🎓, 📶 🌅 💖 ⏮ Pydantic 🏷. + +🎏 🌌 ⏮ Pydantic 🏷, 👆 📣 🎓 🔢 ⏮ 🆎 ✍, & 🎲 🔢 💲. + +👆 💪 ⚙ 🌐 🎏 🔬 ⚒ & 🧰 👆 ⚙ Pydantic 🏷, 💖 🎏 📊 🆎 & 🌖 🔬 ⏮ `Field()`. + +```Python hl_lines="2 5-8 11" +{!../../../docs_src/settings/tutorial001.py!} +``` + +!!! tip + 🚥 👆 💚 🕳 ⏩ 📁 & 📋, 🚫 ⚙ 👉 🖌, ⚙ 🏁 1⃣ 🔛. + +‎, 🕐❔ 👆 ✍ 👐 👈 `Settings` 🎓 (👉 💌, `settings` 🎚), Pydantic 🔜 ✍ 🌐 🔢 💌-😛 🌌,, ↖-💌 🔢 `APP_NAME` 🔜 ✍ 🔢 `app_name`. + +⏭ ⚫ 🔜 🗜 & ✔ 💜. , 🕐❔ 👆 ⚙ 👈 `settings` 🎚, 👆 🔜 ✔ 📊 🆎 👆 📣 (✅ `items_per_user` 🔜 `int`). + +### ⚙ `settings` + +‎ 👆 💪 ⚙ 🆕 `settings` 🎚 👆 🈞: + +```Python hl_lines="18-20" +{!../../../docs_src/settings/tutorial001.py!} +``` + +### 🏃 💜 + +⏭, 👆 🔜 🏃 💜 🚶‍♀ 📳 🌐 🔢, 🖌 👆 💪 ⚒ `ADMIN_EMAIL` & `APP_NAME` ⏮: + +
+ +```console +$ ADMIN_EMAIL="deadpool@example.com" APP_NAME="ChimichangApp" uvicorn main:app + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +!!! tip + ⚒ 💗 🇚🇻 {👁 📋 🎏 👫 ⏮ 🚀, & 🚮 👫 🌐 ⏭ 📋. + +& ‎ `admin_email` ⚒ 🔜 ⚒ `"deadpool@example.com"`. + +`app_name` 🔜 `"ChimichangApp"`. + +& `items_per_user` 🔜 🚧 🚮 🔢 💲 `50`. + +## ⚒ ➕1⃣ 🕹 + +👆 💪 🚮 👈 ⚒ ➕1⃣ 🕹 📁 👆 👀 [🊏 🈞 - 💗 📁](../tutorial/bigger-applications.md){.internal-link target=_blank}. + +🖌, 👆 💪 ✔ 📁 `config.py` ⏮: + +```Python +{!../../../docs_src/settings/app01/config.py!} +``` + +& ‎ ⚙ ⚫ 📁 `main.py`: + +```Python hl_lines="3 11-13" +{!../../../docs_src/settings/app01/main.py!} +``` + +!!! tip + 👆 🔜 💪 📁 `__init__.py` 👆 👀 🔛 [🊏 🈞 - 💗 📁](../tutorial/bigger-applications.md){.internal-link target=_blank}. + +## ⚒ 🔗 + +🍟 ⚫ 5⃣📆 ⚠ 🚚 ⚒ ⚪➡ 🔗, ↩ ✔ 🌐 🎚 ⏮ `settings` 👈 ⚙ 🌐. + +👉 💪 ✎ ⚠ ⏮ 🔬, ⚫ 📶 ⏩ 🔐 🔗 ⏮ 👆 👍 🛃 ⚒. + +### 📁 📁 + +👟 ⚪➡ ⏮ 🖌, 👆 `config.py` 📁 💪 👀 💖: + +```Python hl_lines="10" +{!../../../docs_src/settings/app02/config.py!} +``` + +👀 👈 🔜 👥 🚫 ✍ 🔢 👐 `settings = Settings()`. + +### 👑 📱 📁 + +🔜 👥 ✍ 🔗 👈 📚 🆕 `config.Settings()`. + +```Python hl_lines="5 11-12" +{!../../../docs_src/settings/app02/main.py!} +``` + +!!! tip + 👥 🔜 🔬 `@lru_cache()` 🍖. + + 🔜 👆 💪 🀔 `get_settings()` 😐 🔢. + +& ‎ 👥 💪 🚚 ⚫ ⚪➡ *➡ 🛠 🔢* 🔗 & ⚙ ⚫ 🙆 👥 💪 ⚫. + +```Python hl_lines="16 18-20" +{!../../../docs_src/settings/app02/main.py!} +``` + +### ⚒ & 🔬 + +‎ ⚫ 🔜 📶 ⏩ 🚚 🎏 ⚒ 🎚 ⏮ 🔬 🏗 🔗 🔐 `get_settings`: + +```Python hl_lines="9-10 13 21" +{!../../../docs_src/settings/app02/test_main.py!} +``` + +🔗 🔐 👥 ⚒ 🆕 💲 `admin_email` 🕐❔ 🏗 🆕 `Settings` 🎚, & ‎ 👥 📚 👈 🆕 🎚. + +‎ 👥 💪 💯 👈 ⚫ ⚙. + +## 👂 `.env` 📁 + +🚥 👆 ✔ 📚 ⚒ 👈 🎲 🔀 📚, 🎲 🎏 🌐, ⚫ 5⃣📆 ⚠ 🚮 👫 🔛 📁 & ‎ ✍ 👫 ⚪➡ ⚫ 🚥 👫 🌐 🔢. + +👉 💡 ⚠ 🥃 👈 ⚫ ✔ 📛, 👫 🌐 🔢 🛎 🥉 📁 `.env`, & 📁 🀙 "🇚🇻". + +!!! tip + 📁 ▶ ⏮ ❣ (`.`) 🕵‍♂ 📁 🖥-💖 ⚙, 💖 💟 & 🇞🇻. + + ✋ 🇚🇻 📁 🚫 🀙 ✔ ✔ 👈 ☑ 📁. + +Pydantic ✔ 🐕‍🊺 👂 ⚪➡ 👉 🆎 📁 ⚙ 🔢 🗃. 👆 💪 ✍ 🌖 Pydantic ⚒: 🇚🇻 (.🇚🇻) 🐕‍🊺. + +!!! tip + 👉 👷, 👆 💪 `pip install python-dotenv`. + +### `.env` 📁 + +👆 💪 ✔ `.env` 📁 ⏮: + +```bash +ADMIN_EMAIL="deadpool@example.com" +APP_NAME="ChimichangApp" +``` + +### ✍ ⚒ ⚪➡ `.env` + +& ‎ ℹ 👆 `config.py` ⏮: + +```Python hl_lines="9-10" +{!../../../docs_src/settings/app03/config.py!} +``` + +📥 👥 ✍ 🎓 `Config` 🔘 👆 Pydantic `Settings` 🎓, & ⚒ `env_file` 📁 ⏮ 🇚🇻 📁 👥 💚 ⚙. + +!!! tip + `Config` 🎓 ⚙ Pydantic 📳. 👆 💪 ✍ 🌖 Pydantic 🏷 📁 + +### 🏗 `Settings` 🕎 🕐 ⏮ `lru_cache` + +👂 📁 ⚪➡ 💟 🛎 ⚠ (🐌) 🛠, 👆 🎲 💚 ⚫ 🕎 🕐 & ‎ 🏀-⚙ 🎏 ⚒ 🎚, ↩ 👂 ⚫ 🔠 📚. + +✋ 🔠 🕰 👥: + +```Python +Settings() +``` + +🆕 `Settings` 🎚 🔜 ✍, & 🏗 ⚫ 🔜 ✍ `.env` 📁 🔄. + +🚥 🔗 🔢 💖: + +```Python +def get_settings(): + return Settings() +``` + +👥 🔜 ✍ 👈 🎚 🔠 📚, & 👥 🔜 👂 `.env` 📁 🔠 📚. 👶 👶 + +✋ 👥 ⚙ `@lru_cache()` 👚‍🎚 🔛 🔝, `Settings` 🎚 🔜 ✍ 🕎 🕐, 🥇 🕰 ⚫ 🀙. 👶 👶 + +```Python hl_lines="1 10" +{!../../../docs_src/settings/app03/main.py!} +``` + +‎ 🙆 🏁 🀙 `get_settings()` 🔗 ⏭ 📚, ↩ 🛠 🔗 📟 `get_settings()` & 🏗 🆕 `Settings` 🎚, ⚫ 🔜 📚 🎏 🎚 👈 📚 🔛 🥇 🀙, 🔄 & 🔄. + +#### `lru_cache` 📡 ℹ + +`@lru_cache()` 🔀 🔢 ⚫ 🎀 📚 🎏 💲 👈 📚 🥇 🕰, ↩ 💻 ⚫ 🔄, 🛠 📟 🔢 🔠 🕰. + +, 🔢 🔛 ⚫ 🔜 🛠 🕐 🔠 🌀 ❌. & ‎ 💲 📚 🔠 👈 🌀 ❌ 🔜 ⚙ 🔄 & 🔄 🕐❔ 🔢 🀙 ⏮ ⚫❔ 🎏 🌀 ❌. + +🖌, 🚥 👆 ✔ 🔢: + +```Python +@lru_cache() +def say_hi(name: str, salutation: str = "Ms."): + return f"Hello {salutation} {name}" +``` + +👆 📋 💪 🛠 💖 👉: + +```mermaid +sequenceDiagram + +participant code as Code +participant function as say_hi() +participant execute as Execute function + + rect rgba(0, 255, 0, .1) + code ->> function: say_hi(name="Camila") + function ->> execute: execute function code + execute ->> code: return the result + end + + rect rgba(0, 255, 255, .1) + code ->> function: say_hi(name="Camila") + function ->> code: return stored result + end + + rect rgba(0, 255, 0, .1) + code ->> function: say_hi(name="Rick") + function ->> execute: execute function code + execute ->> code: return the result + end + + rect rgba(0, 255, 0, .1) + code ->> function: say_hi(name="Rick", salutation="Mr.") + function ->> execute: execute function code + execute ->> code: return the result + end + + rect rgba(0, 255, 255, .1) + code ->> function: say_hi(name="Rick") + function ->> code: return stored result + end + + rect rgba(0, 255, 255, .1) + code ->> function: say_hi(name="Camila") + function ->> code: return stored result + end +``` + +💌 👆 🔗 `get_settings()`, 🔢 🚫 ✊ 🙆 ❌, ⚫ 🕧 📚 🎏 💲. + +👈 🌌, ⚫ 🎭 🌖 🚥 ⚫ 🌐 🔢. ✋ ⚫ ⚙ 🔗 🔢, ‎ 👥 💪 🔐 ⚫ 💪 🔬. + +`@lru_cache()` 🍕 `functools` ❔ 🍕 🐍 🐩 🗃, 👆 💪 ✍ 🌅 🔃 ⚫ 🐍 🩺 `@lru_cache()`. + +## 🌃 + +👆 💪 ⚙ Pydantic ⚒ 🍵 ⚒ ⚖ 📳 👆 🈞, ⏮ 🌐 🏋 Pydantic 🏷. + +* ⚙ 🔗 👆 💪 📉 🔬. +* 👆 💪 ⚙ `.env` 📁 ⏮ ⚫. +* ⚙ `@lru_cache()` ➡ 👆 ❎ 👂 🇚🇻 📁 🔄 & 🔄 🔠 📚, ⏪ 🀝 👆 🔐 ⚫ ⏮ 🔬. diff --git a/docs/em/docs/advanced/sql-databases-peewee.md b/docs/em/docs/advanced/sql-databases-peewee.md new file mode 100644 index 000000000..62619fc2c --- /dev/null +++ b/docs/em/docs/advanced/sql-databases-peewee.md @@ -0,0 +1,529 @@ +# 🗄 (🔗) 💜 ⏮ 🏒 + +!!! warning + 🚥 👆 ▶, 🔰 [🗄 (🔗) 💜](../tutorial/sql-databases.md){.internal-link target=_blank} 👈 ⚙ 🇞🇲 🔜 🥃. + + 💭 🆓 🚶 👉. + +🚥 👆 ▶ 🏗 ⚪➡ 🖌, 👆 🎲 👻 📆 ⏮ 🇞🇲 🐜 ([🗄 (🔗) 💜](../tutorial/sql-databases.md){.internal-link target=_blank}), ⚖ 🙆 🎏 🔁 🐜. + +🚥 👆 ⏪ ✔ 📟 🧢 👈 ⚙ 🏒 🐜, 👆 💪 ✅ 📥 ❔ ⚙ ⚫ ⏮ **FastAPI**. + +!!! warning "🐍 3⃣.7⃣ ➕ ✔" + 👆 🔜 💪 🐍 3⃣.7⃣ ⚖ 🔛 🔒 ⚙ 🏒 ⏮ FastAPI. + +## 🏒 🔁 + +🏒 🚫 🔧 🔁 🛠, ⚖ ⏮ 👫 🀯. + +🏒 ✔ 🏋 🔑 🔃 🚮 🔢 & 🔃 ❔ ⚫ 🔜 ⚙. + +🚥 👆 🛠 🈞 ⏮ 🗝 🚫-🔁 🛠, & 💪 👷 ⏮ 🌐 🚮 🔢, **⚫ 💪 👑 🧰**. + +✋ 🚥 👆 💪 🔀 🔢, 🐕‍🊺 🌖 🌘 1⃣ 🔁 💜, 👷 ⏮ 🔁 🛠 (💖 FastAPI), ♒, 👆 🔜 💪 🚮 🏗 ➕ 📟 🔐 👈 🔢. + +👐, ⚫ 💪 ⚫, & 📥 👆 🔜 👀 ⚫❔ ⚫❔ 📟 👆 ✔ 🚮 💪 ⚙ 🏒 ⏮ FastAPI. + +!!! note "📡 ℹ" + 👆 💪 ✍ 🌅 🔃 🏒 🧍 🔃 🔁 🐍 🩺, ❔, 🇵🇷. + +## 🎏 📱 + +👥 🔜 ✍ 🎏 🈞 🇞🇲 🔰 ([🗄 (🔗) 💜](../tutorial/sql-databases.md){.internal-link target=_blank}). + +🌅 📟 🀙 🎏. + +, 👥 🔜 🎯 🕎 🔛 🔺. + +## 📁 📊 + +➡ 💬 👆 ✔ 📁 📛 `my_super_project` 👈 🔌 🎧-📁 🀙 `sql_app` ⏮ 📊 💖 👉: + +``` +. +└── sql_app + ├── __init__.py + ├── crud.py + ├── database.py + ├── main.py + └── schemas.py +``` + +👉 🌖 🎏 📊 👥 ✔ 🇞🇲 🔰. + +🔜 ➡ 👀 ⚫❔ 🔠 📁/🕹 🔚. + +## ✍ 🏒 🍕 + +➡ 🔗 📁 `sql_app/database.py`. + +### 🐩 🏒 📟 + +➡ 🥇 ✅ 🌐 😐 🏒 📟, ✍ 🏒 💜: + +```Python hl_lines="3 5 22" +{!../../../docs_src/sql_databases_peewee/sql_app/database.py!} +``` + +!!! tip + ✔ 🀯 👈 🚥 👆 💚 ⚙ 🎏 💜, 💖 ✳, 👆 🚫 🚫 🔀 🎻. 👆 🔜 💪 ⚙ 🎏 🏒 💜 🎓. + +#### 🗒 + +❌: + +```Python +check_same_thread=False +``` + +🌓 1⃣ 🇞🇲 🔰: + +```Python +connect_args={"check_same_thread": False} +``` + +...⚫ 💪 🕎 `SQLite`. + +!!! info "📡 ℹ" + + ⚫❔ 🎏 📡 ℹ [🗄 (🔗) 💜](../tutorial/sql-databases.md#note){.internal-link target=_blank} ✔. + +### ⚒ 🏒 🔁-🔗 `PeeweeConnectionState` + +👑 ❔ ⏮ 🏒 & FastAPI 👈 🏒 ⚓ 🙇 🔛 🐍 `threading.local`, & ⚫ 🚫 ✔ 🎯 🌌 🔐 ⚫ ⚖ ➡ 👆 🍵 🔗/🎉 🔗 (🔚 🇞🇲 🔰). + +& `threading.local` 🚫 🔗 ⏮ 🆕 🔁 ⚒ 🏛 🐍. + +!!! note "📡 ℹ" + `threading.local` ⚙ ✔ "🎱" 🔢 👈 ✔ 🎏 💲 🔠 🧵. + + 👉 ⚠ 🗝 🛠 🏗 ✔ 1⃣ 👁 🧵 📍 📚, 🙅‍♂ 🌖, 🙅‍♂ 🌘. + + ⚙ 👉, 🔠 📚 🔜 ✔ 🚮 👍 💜 🔗/🎉, ❔ ☑ 🏁 🥅. + + ✋ FastAPI, ⚙ 🆕 🔁 ⚒, 💪 🍵 🌅 🌘 1⃣ 📚 🔛 🎏 🧵. & 🎏 🕰, 👁 📚, ⚫ 💪 🏃 💗 👜 🎏 🧵 (🧵), ⚓ 🔛 🚥 👆 ⚙ `async def` ⚖ 😐 `def`. 👉 ⚫❔ 🀝 🌐 🎭 📈 FastAPI. + +✋ 🐍 3⃣.7⃣ & 🔛 🚚 🌖 🏧 🎛 `threading.local`, 👈 💪 ⚙ 🥉 🌐❔ `threading.local` 🔜 ⚙, ✋ 🔗 ⏮ 🆕 🔁 ⚒. + +👥 🔜 ⚙ 👈. ⚫ 🀙 `contextvars`. + +👥 🔜 🔐 🔗 🍕 🏒 👈 ⚙ `threading.local` & ❎ 👫 ⏮ `contextvars`, ⏮ 🔗 ℹ. + +👉 5⃣📆 😑 🍖 🏗 (& ⚫ 🀙), 👆 🚫 🀙 💪 🍕 🀔 ❔ ⚫ 👷 ⚙ ⚫. + +👥 🔜 ✍ `PeeweeConnectionState`: + +```Python hl_lines="10-19" +{!../../../docs_src/sql_databases_peewee/sql_app/database.py!} +``` + +👉 🎓 😖 ⚪➡ 🎁 🔗 🎓 ⚙ 🏒. + +⚫ ✔ 🌐 ⚛ ⚒ 🏒 ⚙ `contextvars` ↩ `threading.local`. + +`contextvars` 👷 🍖 🎏 🌘 `threading.local`. ✋ 🎂 🏒 🔗 📟 🀔 👈 👉 🎓 👷 ⏮ `threading.local`. + +, 👥 💪 ➕ 🎱 ⚒ ⚫ 👷 🚥 ⚫ ⚙ `threading.local`. `__init__`, `__setattr__`, & `__getattr__` 🛠 🌐 ✔ 🎱 👉 ⚙ 🏒 🍵 🀔 👈 ⚫ 🔜 🔗 ⏮ FastAPI. + +!!! tip + 👉 🔜 ⚒ 🏒 🎭 ☑ 🕐❔ ⚙ ⏮ FastAPI. 🚫 🎲 📂 ⚖ 📪 🔗 👈 ➖ ⚙, 🏗 ❌, ♒. + + ✋ ⚫ 🚫 🀝 🏒 🔁 💎-🏋. 👆 🔜 ⚙ 😐 `def` 🔢 & 🚫 `async def`. + +### ⚙ 🛃 `PeeweeConnectionState` 🎓 + +🔜, 📁 `._state` 🔗 🔢 🏒 💜 `db` 🎚 ⚙ 🆕 `PeeweeConnectionState`: + +```Python hl_lines="24" +{!../../../docs_src/sql_databases_peewee/sql_app/database.py!} +``` + +!!! tip + ⚒ 💭 👆 📁 `db._state` *⏮* 🏗 `db`. + +!!! tip + 👆 🔜 🎏 🙆 🎏 🏒 💜, 🔌 `PostgresqlDatabase`, `MySQLDatabase`, ♒. + +## ✍ 💜 🏷 + +➡ 🔜 👀 📁 `sql_app/models.py`. + +### ✍ 🏒 🏷 👆 💜 + +🔜 ✍ 🏒 🏷 (🎓) `User` & `Item`. + +👉 🎏 👆 🔜 🚥 👆 ⏩ 🏒 🔰 & ℹ 🏷 ✔ 🎏 💜 🇞🇲 🔰. + +!!! tip + 🏒 ⚙ ⚖ "**🏷**" 🔗 👉 🎓 & 👐 👈 🔗 ⏮ 💜. + + ✋ Pydantic ⚙ ⚖ "**🏷**" 🔗 🕳 🎏, 💜 🔬, 🛠, & 🧟 🎓 & 👐. + +🗄 `db` ⚪➡ `database` (📁 `database.py` ⚪➡ 🔛) & ⚙ ⚫ 📥. + +```Python hl_lines="3 6-12 15-21" +{!../../../docs_src/sql_databases_peewee/sql_app/models.py!} +``` + +!!! tip + 🏒 ✍ 📚 🎱 🔢. + + ⚫ 🔜 🔁 🚮 `id` 🔢 🔢 👑 🔑. + + ⚫ 🔜 ⚒ 📛 🏓 ⚓ 🔛 🎓 📛. + + `Item`, ⚫ 🔜 ✍ 🔢 `owner_id` ⏮ 🔢 🆔 `User`. ✋ 👥 🚫 📣 ⚫ 🙆. + +## ✍ Pydantic 🏷 + +🔜 ➡ ✅ 📁 `sql_app/schemas.py`. + +!!! tip + ❎ 😚 🖖 🏒 *🏷* & Pydantic *🏷*, 👥 🔜 ✔ 📁 `models.py` ⏮ 🏒 🏷, & 📁 `schemas.py` ⏮ Pydantic 🏷. + + 👫 Pydantic 🏷 🔬 🌅 ⚖ 🌘 "🔗" (☑ 📊 💠). + + 👉 🔜 ℹ 👥 ❎ 😚 ⏪ ⚙ 👯‍♂. + +### ✍ Pydantic *🏷* / 🔗 + +✍ 🌐 🎏 Pydantic 🏷 🇞🇲 🔰: + +```Python hl_lines="16-18 21-22 25-30 34-35 38-39 42-48" +{!../../../docs_src/sql_databases_peewee/sql_app/schemas.py!} +``` + +!!! tip + 📥 👥 🏗 🏷 ⏮ `id`. + + 👥 🚫 🎯 ✔ `id` 🔢 🏒 🏷, ✋ 🏒 🚮 1⃣ 🔁. + + 👥 ❎ 🎱 `owner_id` 🔢 `Item`. + +### ✍ `PeeweeGetterDict` Pydantic *🏷* / 🔗 + +🕐❔ 👆 🔐 💛 🏒 🎚, 💖 `some_user.items`, 🏒 🚫 🚚 `list` `Item`. + +⚫ 🚚 🎁 🛃 🎚 🎓 `ModelSelect`. + +⚫ 💪 ✍ `list` 🚮 🏬 ⏮ `list(some_user.items)`. + +✋ 🎚 ⚫ 🚫 `list`. & ⚫ 🚫 ☑ 🐍 🚂. ↩ 👉, Pydantic 🚫 💭 🔢 ❔ 🗜 ⚫ `list` Pydantic *🏷* / 🔗. + +✋ ⏮ ⏬ Pydantic ✔ 🚚 🛃 🎓 👈 😖 ⚪➡ `pydantic.utils.GetterDict`, 🚚 🛠 ⚙ 🕐❔ ⚙ `orm_mode = True` 🗃 💲 🐜 🏷 🔢. + +👥 🔜 ✍ 🛃 `PeeweeGetterDict` 🎓 & ⚙ ⚫ 🌐 🎏 Pydantic *🏷* / 🔗 👈 ⚙ `orm_mode`: + +```Python hl_lines="3 8-13 31 49" +{!../../../docs_src/sql_databases_peewee/sql_app/schemas.py!} +``` + +📥 👥 ✅ 🚥 🔢 👈 ➖ 🔐 (✅ `.items` `some_user.items`) 👐 `peewee.ModelSelect`. + +& 🚥 👈 💌, 📚 `list` ⏮ ⚫. + +& ‎ 👥 ⚙ ⚫ Pydantic *🏷* / 🔗 👈 ⚙ `orm_mode = True`, ⏮ 📳 🔢 `getter_dict = PeeweeGetterDict`. + +!!! tip + 👥 🕎 💪 ✍ 1⃣ `PeeweeGetterDict` 🎓, & 👥 💪 ⚙ ⚫ 🌐 Pydantic *🏷* / 🔗. + +## 💩 🇚🇻 + +🔜 ➡ 👀 📁 `sql_app/crud.py`. + +### ✍ 🌐 💩 🇚🇻 + +✍ 🌐 🎏 💩 🇚🇻 🇞🇲 🔰, 🌐 📟 📶 🎏: + +```Python hl_lines="1 4-5 8-9 12-13 16-20 23-24 27-30" +{!../../../docs_src/sql_databases_peewee/sql_app/crud.py!} +``` + +📀 🔺 ⏮ 📟 🇞🇲 🔰. + +👥 🚫 🚶‍♀ `db` 🔢 🀭. ↩ 👥 ⚙ 🏷 🔗. 👉 ↩ `db` 🎚 🌐 🎚, 👈 🔌 🌐 🔗 ⚛. 👈 ⚫❔ 👥 ✔ 🌐 `contextvars` ℹ 🔛. + +🆖, 🕐❔ 🛬 📚 🎚, 💖 `get_users`, 👥 🔗 🀙 `list`, 💖: + +```Python +list(models.User.select()) +``` + +👉 🎏 🀔 👈 👥 ✔ ✍ 🛃 `PeeweeGetterDict`. ✋ 🛬 🕳 👈 ⏪ `list` ↩ `peewee.ModelSelect` `response_model` *➡ 🛠* ⏮ `List[models.User]` (👈 👥 🔜 👀 ⏪) 🔜 👷 ☑. + +## 👑 **FastAPI** 📱 + +& 🔜 📁 `sql_app/main.py` ➡ 🛠 & ⚙ 🌐 🎏 🍕 👥 ✍ ⏭. + +### ✍ 💜 🏓 + +📶 🙃 🌌 ✍ 💜 🏓: + +```Python hl_lines="9-11" +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +### ✍ 🔗 + +✍ 🔗 👈 🔜 🔗 💜 ▶ ▶ 📚 & 🔌 ⚫ 🔚: + +```Python hl_lines="23-29" +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +📥 👥 ✔ 🛁 `yield` ↩ 👥 🀙 🚫 ⚙ 💜 🎚 🔗. + +⚫ 🔗 💜 & ♻ 🔗 💜 🔗 🔢 👈 🔬 🔠 📚 (⚙ `contextvars` 🎱 ⚪➡ 🔛). + +↩ 💜 🔗 ⚠ 👀/🅟 🚧, 👉 🔗 ✍ ⏮ 😐 `def` 🔢. + +& ‎, 🔠 *➡ 🛠 🔢* 👈 💪 🔐 💜 👥 🚮 ⚫ 🔗. + +✋ 👥 🚫 ⚙ 💲 👐 👉 🔗 (⚫ 🀙 🚫 🀝 🙆 💲, ⚫ ✔ 🛁 `yield`). , 👥 🚫 🚮 ⚫ *➡ 🛠 🔢* ✋ *➡ 🛠 👚‍🎚* `dependencies` 🔢: + +```Python hl_lines="32 40 47 59 65 72" +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +### 🔑 🔢 🎧-🔗 + +🌐 `contextvars` 🍕 👷, 👥 💪 ⚒ 💭 👥 ✔ 🔬 💲 `ContextVar` 🔠 📚 👈 ⚙ 💜, & 👈 💲 🔜 ⚙ 💜 🇵🇞 (🔗, 💵, ♒) 🎂 📚. + +👈, 👥 💪 ✍ ➕1⃣ `async` 🔗 `reset_db_state()` 👈 ⚙ 🎧-🔗 `get_db()`. ⚫ 🔜 ⚒ 💲 🔑 🔢 (⏮ 🔢 `dict`) 👈 🔜 ⚙ 💜 🇵🇞 🎂 📚. & ‎ 🔗 `get_db()` 🔜 🏪 ⚫ 💜 🇵🇞 (🔗, 💵, ♒). + +```Python hl_lines="18-20" +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +**⏭ 📚**, 👥 🔜 ⏲ 👈 🔑 🔢 🔄 `async` 🔗 `reset_db_state()` & ‎ ✍ 🆕 🔗 `get_db()` 🔗, 👈 🆕 📚 🔜 ✔ 🚮 👍 💜 🇵🇞 (🔗, 💵, ♒). + +!!! tip + FastAPI 🔁 🛠, 1⃣ 📚 💪 ▶ ➖ 🛠, & ⏭ 🏁, ➕1⃣ 📚 💪 📚 & ▶ 🏭 👍, & ⚫ 🌐 💪 🛠 🎏 🧵. + + ✋ 🔑 🔢 🀔 👫 🔁 ⚒,, 🏒 💜 🇵🇞 ⚒ `async` 🔗 `reset_db_state()` 🔜 🚧 🚮 👍 💜 🎂 🎂 📚. + + & 🎏 🕰, 🎏 🛠 📚 🔜 ✔ 🚮 👍 💜 🇵🇞 👈 🔜 🔬 🎂 📚. + +#### 🏒 🗳 + +🚥 👆 ⚙ 🏒 🗳, ☑ 💜 `db.obj`. + +, 👆 🔜 ⏲ ⚫ ⏮: + +```Python hl_lines="3-4" +async def reset_db_state(): + database.db.obj._state._state.set(db_state_default.copy()) + database.db.obj._state.reset() +``` + +### ✍ 👆 **FastAPI** *➡ 🛠* + +🔜, 😒, 📥 🐩 **FastAPI** *➡ 🛠* 📟. + +```Python hl_lines="32-37 40-43 46-53 56-62 65-68 71-79" +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +### 🔃 `def` 🆚 `async def` + +🎏 ⏮ 🇞🇲, 👥 🚫 🔚 🕳 💖: + +```Python +user = await models.User.select().first() +``` + +...✋ ↩ 👥 ⚙: + +```Python +user = models.User.select().first() +``` + +, 🔄, 👥 🔜 📣 *➡ 🛠 🔢* & 🔗 🍵 `async def`, ⏮ 😐 `def`,: + +```Python hl_lines="2" +# Something goes here +def read_users(skip: int = 0, limit: int = 100): + # Something goes here +``` + +## 🔬 🏒 ⏮ 🔁 + +👉 🖌 🔌 ➕ *➡ 🛠* 👈 🔬 📏 🏭 📚 ⏮ `time.sleep(sleep_time)`. + +⚫ 🔜 ✔ 💜 🔗 📂 ▶ & 🔜 ⌛ 🥈 ⏭ 🙇 🔙. & 🔠 🆕 📚 🔜 ⌛ 🕐 🥈 🌘. + +👉 🔜 💪 ➡ 👆 💯 👈 👆 📱 ⏮ 🏒 & FastAPI 🎭 ☑ ⏮ 🌐 💩 🔃 🧵. + +🚥 👆 💚 ✅ ❔ 🏒 🔜 💔 👆 📱 🚥 ⚙ 🍵 🛠, 🚶 `sql_app/database.py` 📁 & 🏀 ⏞: + +```Python +# db._state = PeeweeConnectionState() +``` + +& 📁 `sql_app/main.py` 📁, 🏀 💪 `async` 🔗 `reset_db_state()` & ❎ ⚫ ⏮ `pass`: + +```Python +async def reset_db_state(): +# database.db._state._state.set(db_state_default.copy()) +# database.db._state.reset() + pass +``` + +‎ 🏃 👆 📱 ⏮ Uvicorn: + +
+ +```console +$ uvicorn sql_app.main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +📂 👆 🖥 http://127.0.0.1:8000/docs & ✍ 👩‍❀‍👚 👩‍💻. + +‎ 📂 1⃣0⃣ 📑 http://127.0.0.1:8000/docs#/default/read_🐌_👩‍💻_slowusers_ = 🎏 🕰. + +🚶 *➡ 🛠* "🀚 `/slowusers/`" 🌐 📑. ⚙ "🔄 ⚫ 👅" 🔌 & 🛠 📚 🔠 📑, 1⃣ ▶ ⏮ 🎏. + +📑 🔜 ⌛ 🍖 & ‎ 👫 🔜 🎊 `Internal Server Error`. + +### ⚫❔ 🔚 + +🥇 📑 🔜 ⚒ 👆 📱 ✍ 🔗 💜 & ⌛ 🥈 ⏭ 🙇 🔙 & 📪 💜 🔗. + +‎, 📚 ⏭ 📑, 👆 📱 🔜 ⌛ 🕐 🥈 🌘, & 🔛. + +👉 ⛓ 👈 ⚫ 🔜 🔚 🆙 🏁 🏁 📑' 📚 ⏪ 🌘 ⏮ 🕐. + +‎ 1⃣ 🏁 📚 👈 ⌛ 🌘 🥈 🔜 🔄 📂 💜 🔗, ✋ 1⃣ 📚 ⏮ 📚 🎏 📑 🔜 🎲 🍵 🎏 🧵 🥇 🕐, ⚫ 🔜 ✔ 🎏 💜 🔗 👈 ⏪ 📂, & 🏒 🔜 🚮 ❌ & 👆 🔜 👀 ⚫ 📶, & 📚 🔜 ✔ `Internal Server Error`. + +👉 🔜 🎲 🔚 🌅 🌘 1⃣ 📚 📑. + +🚥 👆 ✔ 💗 👩‍💻 💬 👆 📱 ⚫❔ 🎏 🕰, 👉 ⚫❔ 💪 🔚. + +& 👆 📱 ▶ 🍵 🌅 & 🌖 👩‍💻 🎏 🕰, ⌛ 🕰 👁 📚 💪 📏 & 📏 ⏲ ❌. + +### 🔧 🏒 ⏮ FastAPI + +🔜 🚶 🔙 📁 `sql_app/database.py`, & ✍ ⏞: + +```Python +db._state = PeeweeConnectionState() +``` + +& 📁 `sql_app/main.py` 📁, ✍ 💪 `async` 🔗 `reset_db_state()`: + +```Python +async def reset_db_state(): + database.db._state._state.set(db_state_default.copy()) + database.db._state.reset() +``` + +❎ 👆 🏃‍♂ 📱 & ▶ ⚫ 🔄. + +🔁 🎏 🛠 ⏮ 1⃣0⃣ 📑. 👉 🕰 🌐 👫 🔜 ⌛ & 👆 🔜 🀚 🌐 🏁 🍵 ❌. + +...👆 🔧 ⚫ ❗ + +## 📄 🌐 📁 + + 💭 👆 🔜 ✔ 📁 📛 `my_super_project` (⚖ 👐 👆 💚) 👈 🔌 🎧-📁 🀙 `sql_app`. + +`sql_app` 🔜 ✔ 📄 📁: + +* `sql_app/__init__.py`: 🛁 📁. + +* `sql_app/database.py`: + +```Python +{!../../../docs_src/sql_databases_peewee/sql_app/database.py!} +``` + +* `sql_app/models.py`: + +```Python +{!../../../docs_src/sql_databases_peewee/sql_app/models.py!} +``` + +* `sql_app/schemas.py`: + +```Python +{!../../../docs_src/sql_databases_peewee/sql_app/schemas.py!} +``` + +* `sql_app/crud.py`: + +```Python +{!../../../docs_src/sql_databases_peewee/sql_app/crud.py!} +``` + +* `sql_app/main.py`: + +```Python +{!../../../docs_src/sql_databases_peewee/sql_app/main.py!} +``` + +## 📡 ℹ + +!!! warning + 👉 📶 📡 ℹ 👈 👆 🎲 🚫 💪. + +### ⚠ + +🏒 ⚙ `threading.local` 🔢 🏪 ⚫ 💜 "🇵🇞" 💜 (🔗, 💵, ♒). + +`threading.local` ✍ 💲 🌟 ⏮ 🧵, ✋ 🔁 🛠 🔜 🏃 🌐 📟 (✅ 🔠 📚) 🎏 🧵, & 🎲 🚫 ✔. + +🔛 🔝 👈, 🔁 🛠 💪 🏃 🔁 📟 🧵 (⚙ `asyncio.run_in_executor`), ✋ 🔗 🎏 📚. + +👉 ⛓ 👈, ⏮ 🏒 ⏮ 🛠, 💗 📋 💪 ⚙ 🎏 `threading.local` 🔢 & 🔚 🆙 🀝 🎏 🔗 & 💜 (👈 👫 🚫🔜 🚫), & 🎏 🕰, 🚥 👫 🛠 🔁 👀/🅟-🚧 📟 🧵 (⏮ 😐 `def` 🔢 FastAPI, *➡ 🛠* & 🔗), 👈 📟 🏆 🚫 ✔ 🔐 💜 🇵🇞 🔢, ⏪ ⚫ 🍕 🎏 📚 & ⚫ 🔜 💪 🀚 🔐 🎏 💜 🇵🇞. + +### 🔑 🔢 + +🐍 3⃣.7⃣ ✔ `contextvars` 👈 💪 ✍ 🇧🇿 🔢 📶 🎏 `threading.local`, ✋ 🔗 👫 🔁 ⚒. + +📀 📚 👜 ✔ 🀯. + +`ContextVar` ✔ ✍ 🔝 🕹, 💖: + +```Python +some_var = ContextVar("some_var", default="default value") +``` + +⚒ 💲 ⚙ ⏮ "🔑" (✅ ⏮ 📚) ⚙: + +```Python +some_var.set("new value") +``` + +🀚 💲 🙆 🔘 🔑 (✅ 🙆 🍕 🚚 ⏮ 📚) ⚙: + +```Python +some_var.get() +``` + +### ⚒ 🔑 🔢 `async` 🔗 `reset_db_state()` + +🚥 🍕 🔁 📟 ⚒ 💲 ⏮ `some_var.set("updated in function")` (✅ 💖 `async` 🔗), 🎂 📟 ⚫ & 📟 👈 🚶 ⏮ (✅ 📟 🔘 `async` 🔢 🀙 ⏮ `await`) 🔜 👀 👈 🆕 💲. + +, 👆 💌, 🚥 👥 ⚒ 🏒 🇵🇞 🔢 (⏮ 🔢 `dict`) `async` 🔗, 🌐 🎂 🔗 📟 👆 📱 🔜 👀 👉 💲 & 🔜 💪 ♻ ⚫ 🎂 📚. + +& 🔑 🔢 🔜 ⚒ 🔄 ⏭ 📚, 🚥 👫 🛠. + +### ⚒ 💜 🇵🇞 🔗 `get_db()` + +`get_db()` 😐 `def` 🔢, **FastAPI** 🔜 ⚒ ⚫ 🏃 🧵, ⏮ *📁* "🔑", 🧑‍🀝‍🧑 🎏 💲 🔑 🔢 ( `dict` ⏮ ⏲ 💜 🇵🇞). ‎ ⚫ 💪 🚮 💜 🇵🇞 👈 `dict`, 💖 🔗, ♒. + +✋ 🚥 💲 🔑 🔢 (🔢 `dict`) ⚒ 👈 😐 `def` 🔢, ⚫ 🔜 ✍ 🆕 💲 👈 🔜 🚧 🕎 👈 🧵 🧵, & 🎂 📟 (💖 *➡ 🛠 🔢*) 🚫🔜 ✔ 🔐 ⚫. `get_db()` 👥 💪 🕎 ⚒ 💲 `dict`, ✋ 🚫 🎂 `dict` ⚫. + +, 👥 💪 ✔ `async` 🔗 `reset_db_state()` ⚒ `dict` 🔑 🔢. 👈 🌌, 🌐 📟 ✔ 🔐 🎏 `dict` 💜 🇵🇞 👁 📚. + +### 🔗 & 🔌 🔗 `get_db()` + +‎ ⏭ ❔ 🔜, ⚫❔ 🚫 🔗 & 🔌 💜 `async` 🔗 ⚫, ↩ `get_db()`❓ + +`async` 🔗 ✔ `async` 🔑 🔢 🛡 🎂 📚, ✋ 🏗 & 📪 💜 🔗 ⚠ 🚧, ⚫ 💪 📉 🎭 🚥 ⚫ 📀. + +👥 💪 😐 `def` 🔗 `get_db()`. diff --git a/docs/em/docs/advanced/sub-applications.md b/docs/em/docs/advanced/sub-applications.md new file mode 100644 index 000000000..e0391453b --- /dev/null +++ b/docs/em/docs/advanced/sub-applications.md @@ -0,0 +1,73 @@ +# 🎧 🈞 - 🗻 + +🚥 👆 💪 ✔ 2⃣ 🔬 FastAPI 🈞, ⏮ 👫 👍 🔬 🗄 & 👫 👍 🩺 ⚜, 👆 💪 ✔ 👑 📱 & "🗻" 1⃣ (⚖ 🌅) 🎧-🈞(Ⓜ). + +## 🗜 **FastAPI** 🈞 + +"🗜" ⛓ ❎ 🍕 "🔬" 🈞 🎯 ➡, 👈 ‎ ✊ 💅 🚚 🌐 🔜 👈 ➡, ⏮ _➡ 🛠_ 📣 👈 🎧-🈞. + +### 🔝-🎚 🈞 + +🥇, ✍ 👑, 🔝-🎚, **FastAPI** 🈞, & 🚮 *➡ 🛠*: + +```Python hl_lines="3 6-8" +{!../../../docs_src/sub_applications/tutorial001.py!} +``` + +### 🎧-🈞 + +‎, ✍ 👆 🎧-🈞, & 🚮 *➡ 🛠*. + +👉 🎧-🈞 ➕1⃣ 🐩 FastAPI 🈞, ✋ 👉 1⃣ 👈 🔜 "🗻": + +```Python hl_lines="11 14-16" +{!../../../docs_src/sub_applications/tutorial001.py!} +``` + +### 🗻 🎧-🈞 + +👆 🔝-🎚 🈞, `app`, 🗻 🎧-🈞, `subapi`. + +👉 💌, ⚫ 🔜 📌 ➡ `/subapi`: + +```Python hl_lines="11 19" +{!../../../docs_src/sub_applications/tutorial001.py!} +``` + +### ✅ 🏧 🛠 🩺 + +🔜, 🏃 `uvicorn` ⏮ 👑 📱, 🚥 👆 📁 `main.py`, ⚫ 🔜: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +& 📂 🩺 http://127.0.0.1:8000/docs. + +👆 🔜 👀 🏧 🛠 🩺 👑 📱, 🔌 🕎 🚮 👍 _➡ 🛠_: + + + +& ‎, 📂 🩺 🎧-🈞, http://127.0.0.1:8000/subapi/docs. + +👆 🔜 👀 🏧 🛠 🩺 🎧-🈞, ✅ 🕎 🚮 👍 _➡ 🛠_, 🌐 🔜 ☑ 🎧-➡ 🔡 `/subapi`: + + + +🚥 👆 🔄 🔗 ⏮ 🙆 2⃣ 👩‍💻 🔢, 👫 🔜 👷 ☑, ↩ 🖥 🔜 💪 💬 🔠 🎯 📱 ⚖ 🎧-📱. + +### 📡 ℹ: `root_path` + +🕐❔ 👆 🗻 🎧-🈞 🔬 🔛, FastAPI 🔜 ✊ 💅 🔗 🗻 ➡ 🎧-🈞 ⚙ 🛠 ⚪➡ 🔫 🔧 🀙 `root_path`. + +👈 🌌, 🎧-🈞 🔜 💭 ⚙ 👈 ➡ 🔡 🩺 🎚. + +& 🎧-🈞 💪 ✔ 🚮 👍 📌 🎧-🈞 & 🌐 🔜 👷 ☑, ↩ FastAPI 🍵 🌐 👉 `root_path`Ⓜ 🔁. + +👆 🔜 💡 🌅 🔃 `root_path` & ❔ ⚙ ⚫ 🎯 📄 🔃 [⛅ 🗳](./behind-a-proxy.md){.internal-link target=_blank}. diff --git a/docs/em/docs/advanced/templates.md b/docs/em/docs/advanced/templates.md new file mode 100644 index 000000000..1fb57725a --- /dev/null +++ b/docs/em/docs/advanced/templates.md @@ -0,0 +1,77 @@ +# 📄 + +👆 💪 ⚙ 🙆 📄 🚒 👆 💚 ⏮ **FastAPI**. + +⚠ ⚒ Jinja2⃣, 🎏 1⃣ ⚙ 🏺 & 🎏 🧰. + +📀 🚙 🔗 ⚫ 💪 👈 👆 💪 ⚙ 🔗 👆 **FastAPI** 🈞 (🚚 💃). + +## ❎ 🔗 + +❎ `jinja2`: + +
+ +```console +$ pip install jinja2 + +---> 100% +``` + +
+ +## ⚙ `Jinja2Templates` + +* 🗄 `Jinja2Templates`. +* ✍ `templates` 🎚 👈 👆 💪 🏀-⚙ ⏪. +* 📣 `Request` 🔢 *➡ 🛠* 👈 🔜 📚 📄. +* ⚙ `templates` 👆 ✍ ✍ & 📚 `TemplateResponse`, 🚶‍♀ `request` 1⃣ 🔑-💲 👫 Jinja2⃣ "🔑". + +```Python hl_lines="4 11 15-16" +{!../../../docs_src/templates/tutorial001.py!} +``` + +!!! note + 👀 👈 👆 ✔ 🚶‍♀ `request` 🍕 🔑-💲 👫 🔑 Jinja2⃣. , 👆 ✔ 📣 ⚫ 👆 *➡ 🛠*. + +!!! tip + 📣 `response_class=HTMLResponse` 🩺 🎚 🔜 💪 💭 👈 📚 🔜 🕞. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.templating import Jinja2Templates`. + + **FastAPI** 🚚 🎏 `starlette.templating` `fastapi.templating` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. 🎏 ⏮ `Request` & `StaticFiles`. + +## ✍ 📄 + +‎ 👆 💪 ✍ 📄 `templates/item.html` ⏮: + +```jinja hl_lines="7" +{!../../../docs_src/templates/templates/item.html!} +``` + +⚫ 🔜 🎊 `id` ✊ ⚪➡ "🔑" `dict` 👆 🚶‍♀: + +```Python +{"request": request, "id": id} +``` + +## 📄 & 🎻 📁 + +& 👆 💪 ⚙ `url_for()` 🔘 📄, & ⚙ ⚫, 🖌, ⏮ `StaticFiles` 👆 📌. + +```jinja hl_lines="4" +{!../../../docs_src/templates/templates/item.html!} +``` + +👉 🖌, ⚫ 🔜 🔗 🎚 📁 `static/styles.css` ⏮: + +```CSS hl_lines="4" +{!../../../docs_src/templates/static/styles.css!} +``` + +& ↩ 👆 ⚙ `StaticFiles`, 👈 🎚 📁 🔜 🍊 🔁 👆 **FastAPI** 🈞 📛 `/static/styles.css`. + +## 🌅 ℹ + +🌅 ℹ, 🔌 ❔ 💯 📄, ✅ 💃 🩺 🔛 📄. diff --git a/docs/em/docs/advanced/testing-database.md b/docs/em/docs/advanced/testing-database.md new file mode 100644 index 000000000..93acd710e --- /dev/null +++ b/docs/em/docs/advanced/testing-database.md @@ -0,0 +1,95 @@ +# 🔬 💜 + +👆 💪 ⚙ 🎏 🔗 🔐 ⚪➡ [🔬 🔗 ⏮ 🔐](testing-dependencies.md){.internal-link target=_blank} 📉 💜 🔬. + +👆 💪 💚 ⚒ 🆙 🎏 💜 🔬, 💟 💜 ⏮ 💯, 🏀-🥧 ⚫ ⏮ 🔬 💜, ♒. + +👑 💭 ⚫❔ 🎏 👆 👀 👈 ⏮ 📃. + +## 🚮 💯 🗄 📱 + +➡ ℹ 🖌 ⚪➡ [🗄 (🔗) 💜](../tutorial/sql-databases.md){.internal-link target=_blank} ⚙ 🔬 💜. + +🌐 📱 📟 🎏, 👆 💪 🚶 🔙 👈 📃 ✅ ❔ ⚫. + +🕎 🔀 📥 🆕 🔬 📁. + +👆 😐 🔗 `get_db()` 🔜 📚 💜 🎉. + +💯, 👆 💪 ⚙ 🔗 🔐 📚 👆 *🛃* 💜 🎉 ↩ 1⃣ 👈 🔜 ⚙ 🛎. + +👉 🖌 👥 🔜 ✍ 🍕 💜 🕎 💯. + +## 📁 📊 + +👥 ✍ 🆕 📁 `sql_app/tests/test_sql_app.py`. + +🆕 📁 📊 👀 💖: + +``` hl_lines="9-11" +. +└── sql_app + ├── __init__.py + ├── crud.py + ├── database.py + ├── main.py + ├── models.py + ├── schemas.py + └── tests + ├── __init__.py + └── test_sql_app.py +``` + +## ✍ 🆕 💜 🎉 + +🥇, 👥 ✍ 🆕 💜 🎉 ⏮ 🆕 💜. + +💯 👥 🔜 ⚙ 📁 `test.db` ↩ `sql_app.db`. + +✋ 🎂 🎉 📟 🌅 ⚖ 🌘 🎏, 👥 📁 ⚫. + +```Python hl_lines="8-13" +{!../../../docs_src/sql_databases/sql_app/tests/test_sql_app.py!} +``` + +!!! tip + 👆 💪 📉 ❎ 👈 📟 🚮 ⚫ 🔢 & ⚙ ⚫ ⚪➡ 👯‍♂ `database.py` & `tests/test_sql_app.py`. + + 🊁 & 🎯 🔛 🎯 🔬 📟, 👥 🖚 ⚫. + +## ✍ 💜 + +↩ 🔜 👥 🔜 ⚙ 🆕 💜 🆕 📁, 👥 💪 ⚒ 💭 👥 ✍ 💜 ⏮: + +```Python +Base.metadata.create_all(bind=engine) +``` + +👈 🛎 🀙 `main.py`, ✋ ⏞ `main.py` ⚙ 💜 📁 `sql_app.db`, & 👥 💪 ⚒ 💭 👥 ✍ `test.db` 💯. + +👥 🚮 👈 ⏞ 📥, ⏮ 🆕 📁. + +```Python hl_lines="16" +{!../../../docs_src/sql_databases/sql_app/tests/test_sql_app.py!} +``` + +## 🔗 🔐 + +🔜 👥 ✍ 🔗 🔐 & 🚮 ⚫ 🔐 👆 📱. + +```Python hl_lines="19-24 27" +{!../../../docs_src/sql_databases/sql_app/tests/test_sql_app.py!} +``` + +!!! tip + 📟 `override_get_db()` 🌖 ⚫❔ 🎏 `get_db()`, ✋ `override_get_db()` 👥 ⚙ `TestingSessionLocal` 🔬 💜 ↩. + +## 💯 📱 + +‎ 👥 💪 💯 📱 🛎. + +```Python hl_lines="32-47" +{!../../../docs_src/sql_databases/sql_app/tests/test_sql_app.py!} +``` + +& 🌐 🛠 👥 ⚒ 💜 ⏮ 💯 🔜 `test.db` 💜 ↩ 👑 `sql_app.db`. diff --git a/docs/em/docs/advanced/testing-dependencies.md b/docs/em/docs/advanced/testing-dependencies.md new file mode 100644 index 000000000..104a6325e --- /dev/null +++ b/docs/em/docs/advanced/testing-dependencies.md @@ -0,0 +1,49 @@ +# 🔬 🔗 ⏮ 🔐 + +## 🔑 🔗 ⏮ 🔬 + +📀 😐 🌐❔ 👆 💪 💚 🔐 🔗 ⏮ 🔬. + +👆 🚫 💚 ⏮ 🔗 🏃 (🚫 🙆 🎧-🔗 ⚫ 💪 ✔). + +↩, 👆 💚 🚚 🎏 🔗 👈 🔜 ⚙ 🕎 ⏮ 💯 (🎲 🕎 🎯 💯), & 🔜 🚚 💲 👈 💪 ⚙ 🌐❔ 💲 ⏮ 🔗 ⚙. + +### ⚙ 💌: 🔢 🐕‍🊺 + +🖌 💪 👈 👆 ✔ 🔢 🀝 🐕‍🊺 👈 👆 💪 🀙. + +👆 📚 ⚫ 🀝 & ⚫ 📚 🔓 👩‍💻. + +👉 🐕‍🊺 5⃣📆 🔌 👆 📍 📚, & 🀙 ⚫ 💪 ✊ ➕ 🕰 🌘 🚥 👆 ✔ 🔧 🎁 👩‍💻 💯. + +👆 🎲 💚 💯 🔢 🐕‍🊺 🕐, ✋ 🚫 🎯 🀙 ⚫ 🔠 💯 👈 🏃. + +👉 💌, 👆 💪 🔐 🔗 👈 🀙 👈 🐕‍🊺, & ⚙ 🛃 🔗 👈 📚 🎁 👩‍💻, 🕎 👆 💯. + +### ⚙ `app.dependency_overrides` 🔢 + +👫 💌, 👆 **FastAPI** 🈞 ✔ 🔢 `app.dependency_overrides`, ⚫ 🙅 `dict`. + +🔐 🔗 🔬, 👆 🚮 🔑 ⏮ 🔗 (🔢), & 💲, 👆 🔗 🔐 (➕1⃣ 🔢). + +& ‎ **FastAPI** 🔜 🀙 👈 🔐 ↩ ⏮ 🔗. + +```Python hl_lines="28-29 32" +{!../../../docs_src/dependency_testing/tutorial001.py!} +``` + +!!! tip + 👆 💪 ⚒ 🔗 🔐 🔗 ⚙ 🙆 👆 **FastAPI** 🈞. + + ⏮ 🔗 💪 ⚙ *➡ 🛠 🔢*, *➡ 🛠 👚‍🎚* (🕐❔ 👆 🚫 ⚙ 📚 💲), `.include_router()` 🀙, ♒. + + FastAPI 🔜 💪 🔐 ⚫. + +‎ 👆 💪 ⏲ 👆 🔐 (❎ 👫) ⚒ `app.dependency_overrides` 🛁 `dict`: + +```Python +app.dependency_overrides = {} +``` + +!!! tip + 🚥 👆 💚 🔐 🔗 🕎 ⏮ 💯, 👆 💪 ⚒ 🔐 ▶ 💯 (🔘 💯 🔢) & ⏲ ⚫ 🔚 (🔚 💯 🔢). diff --git a/docs/em/docs/advanced/testing-events.md b/docs/em/docs/advanced/testing-events.md new file mode 100644 index 000000000..d64436eb9 --- /dev/null +++ b/docs/em/docs/advanced/testing-events.md @@ -0,0 +1,7 @@ +# 🔬 🎉: 🕎 - 🀫 + +🕐❔ 👆 💪 👆 🎉 🐕‍🊺 (`startup` & `shutdown`) 🏃 👆 💯, 👆 💪 ⚙ `TestClient` ⏮ `with` 📄: + +```Python hl_lines="9-12 20-24" +{!../../../docs_src/app_testing/tutorial003.py!} +``` diff --git a/docs/em/docs/advanced/testing-websockets.md b/docs/em/docs/advanced/testing-websockets.md new file mode 100644 index 000000000..3b8e7e420 --- /dev/null +++ b/docs/em/docs/advanced/testing-websockets.md @@ -0,0 +1,12 @@ +# 🔬 *⃣ + +👆 💪 ⚙ 🎏 `TestClient` 💯*⃣. + +👉, 👆 ⚙ `TestClient` `with` 📄, 🔗*⃣: + +```Python hl_lines="27-31" +{!../../../docs_src/app_testing/tutorial002.py!} +``` + +!!! note + 🌅 ℹ, ✅ 💃 🧟 🔬 *⃣ . diff --git a/docs/em/docs/advanced/using-request-directly.md b/docs/em/docs/advanced/using-request-directly.md new file mode 100644 index 000000000..faeadb1aa --- /dev/null +++ b/docs/em/docs/advanced/using-request-directly.md @@ -0,0 +1,52 @@ +# ⚙ 📚 🔗 + +🆙 🔜, 👆 ✔ 📣 🍕 📚 👈 👆 💪 ⏮ 👫 🆎. + +✊ 📊 ⚪➡: + +* ➡ 🔢. +* 🎚. +* 🍪. +* ♒. + +& 🔚, **FastAPI** ⚖ 👈 💜, 🏭 ⚫ & 🏭 🧟 👆 🛠 🔁. + +✋ 📀 ⚠ 🌐❔ 👆 💪 💪 🔐 `Request` 🎚 🔗. + +## ℹ 🔃 `Request` 🎚 + +**FastAPI** 🀙 **💃** 🔘, ⏮ 🧜 📚 🧰 🔛 🔝, 👆 💪 ⚙ 💃 `Request` 🎚 🔗 🕐❔ 👆 💪. + +⚫ 🔜 ⛓ 👈 🚥 👆 🀚 📊 ⚪➡ `Request` 🎚 🔗 (🖌, ✍ 💪) ⚫ 🏆 🚫 ✔, 🗜 ⚖ 📄 (⏮ 🗄, 🏧 🛠 👩‍💻 🔢) FastAPI. + +👐 🙆 🎏 🔢 📣 🛎 (🖌, 💪 ⏮ Pydantic 🏷) 🔜 ✔, 🗜, ✍, ♒. + +✋ 📀 🎯 💌 🌐❔ ⚫ ⚠ 🀚 `Request` 🎚. + +## ⚙ `Request` 🎚 🔗 + +➡ 🌈 👆 💚 🀚 👩‍💻 📢 📢/🊠 🔘 👆 *➡ 🛠 🔢*. + +👈 👆 💪 🔐 📚 🔗. + +```Python hl_lines="1 7-8" +{!../../../docs_src/using_request_directly/tutorial001.py!} +``` + +📣 *➡ 🛠 🔢* 🔢 ⏮ 🆎 ➖ `Request` **FastAPI** 🔜 💭 🚶‍♀ `Request` 👈 🔢. + +!!! tip + 🗒 👈 👉 💌, 👥 📣 ➡ 🔢 ‎ 📚 🔢. + + , ➡ 🔢 🔜 ⚗, ✔, 🗜 ✔ 🆎 & ✍ ⏮ 🗄. + + 🎏 🌌, 👆 💪 📣 🙆 🎏 🔢 🛎, & ➡, 🀚 `Request` 💁‍♂. + +## `Request` 🧟 + +👆 💪 ✍ 🌅 ℹ 🔃 `Request` 🎚 🛂 💃 🧟 🕞. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.requests import Request`. + + **FastAPI** 🚚 ⚫ 🔗 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. diff --git a/docs/em/docs/advanced/websockets.md b/docs/em/docs/advanced/websockets.md new file mode 100644 index 000000000..6ba9b999d --- /dev/null +++ b/docs/em/docs/advanced/websockets.md @@ -0,0 +1,184 @@ +# *⃣ + +👆 💪 ⚙ *⃣ ⏮ **FastAPI**. + +## ❎ `WebSockets` + +🥇 👆 💪 ❎ `WebSockets`: + +
+ +```console +$ pip install websockets + +---> 100% +``` + +
+ +## *⃣ 👩‍💻 + +### 🏭 + +👆 🏭 ⚙, 👆 🎲 ✔ 🕞 ✍ ⏮ 🏛 🛠 💖 😥, Vue.js ⚖ 📐. + +& 🔗 ⚙ *⃣ ⏮ 👆 👩‍💻 👆 🔜 🎲 ⚙ 👆 🕞 🚙. + +⚖ 👆 💪 ✔ 🇊🇞 📱 🈞 👈 🔗 ⏮ 👆 *⃣ 👩‍💻 🔗, 🇊🇞 📟. + +⚖ 👆 5⃣📆 ✔ 🙆 🎏 🌌 🔗 ⏮ *⃣ 🔗. + +--- + +✋ 👉 🖌, 👥 🔜 ⚙ 📶 🙅 🕞 📄 ⏮ 🕞, 🌐 🔘 📏 🎻. + +👉, ↗, 🚫 ⚖ & 👆 🚫🔜 ⚙ ⚫ 🏭. + +🏭 👆 🔜 ✔ 1⃣ 🎛 🔛. + +✋ ⚫ 🙅 🌌 🎯 🔛 💜-🚄 *⃣ & ✔ 👷 🖌: + +```Python hl_lines="2 6-38 41-43" +{!../../../docs_src/websockets/tutorial001.py!} +``` + +## ✍ `websocket` + +👆 **FastAPI** 🈞, ✍ `websocket`: + +```Python hl_lines="1 46-47" +{!../../../docs_src/websockets/tutorial001.py!} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.websockets import WebSocket`. + + **FastAPI** 🚚 🎏 `WebSocket` 🔗 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. + +## ⌛ 📧 & 📚 📧 + +👆 *⃣ 🛣 👆 💪 `await` 📧 & 📚 📧. + +```Python hl_lines="48-52" +{!../../../docs_src/websockets/tutorial001.py!} +``` + +👆 💪 📚 & 📚 💱, ✍, & 🎻 💜. + +## 🔄 ⚫ + +🚥 👆 📁 📛 `main.py`, 🏃 👆 🈞 ⏮: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +📂 👆 🖥 http://127.0.0.1:8000. + +👆 🔜 👀 🙅 📃 💖: + + + +👆 💪 🆎 📧 🔢 📊, & 📚 👫: + + + +& 👆 **FastAPI** 🈞 ⏮ *⃣ 🔜 📚 🔙: + + + +👆 💪 📚 (& 📚) 📚 📧: + + + +& 🌐 👫 🔜 ⚙ 🎏 *⃣ 🔗. + +## ⚙ `Depends` & 🎏 + +*⃣ 🔗 👆 💪 🗄 ⚪➡ `fastapi` & ⚙: + +* `Depends` +* `Security` +* `Cookie` +* `Header` +* `Path` +* `Query` + +👫 👷 🎏 🌌 🎏 FastAPI 🔗/*➡ 🛠*: + +```Python hl_lines="66-77 76-91" +{!../../../docs_src/websockets/tutorial002.py!} +``` + +!!! info + 👉 *⃣ ⚫ 🚫 🀙 ⚒ 🔑 🀚 `HTTPException`, ↩ 👥 🀚 `WebSocketException`. + + 👆 💪 ⚙ 📪 📟 ⚪➡ ☑ 📟 🔬 🔧. + +### 🔄 *⃣ ⏮ 🔗 + +🚥 👆 📁 📛 `main.py`, 🏃 👆 🈞 ⏮: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +📂 👆 🖥 http://127.0.0.1:8000. + +📀 👆 💪 ⚒: + +* "🏬 🆔", ⚙ ➡. +* "🀝" ⚙ 🔢 🔢. + +!!! tip + 👀 👈 🔢 `token` 🔜 🍵 🔗. + +⏮ 👈 👆 💪 🔗 *⃣ & ‎ 📚 & 📚 📧: + + + +## 🚚 🔀 & 💗 👩‍💻 + +🕐❔ *⃣ 🔗 📪, `await websocket.receive_text()` 🔜 🀚 `WebSocketDisconnect` ⚠, ❔ 👆 💪 ‎ ✊ & 🍵 💖 👉 🖌. + +```Python hl_lines="81-83" +{!../../../docs_src/websockets/tutorial003.py!} +``` + +🔄 ⚫ 👅: + +* 📂 📱 ⏮ 📚 🖥 📑. +* ✍ 📧 ⚪➡ 👫. +* ‎ 🔐 1⃣ 📑. + +👈 🔜 🀚 `WebSocketDisconnect` ⚠, & 🌐 🎏 👩‍💻 🔜 📚 📧 💖: + +``` +Client #1596980209979 left the chat +``` + +!!! tip + 📱 🔛 ⭐ & 🙅 🖌 🎊 ❔ 🍵 & 📻 📧 📚 *⃣ 🔗. + + ✋ ✔ 🀯 👈, 🌐 🍵 💟, 👁 📇, ⚫ 🔜 🕎 👷 ⏪ 🛠 🏃, & 🔜 🕎 👷 ⏮ 👁 🛠. + + 🚥 👆 💪 🕳 ⏩ 🛠 ⏮ FastAPI ✋ 👈 🌖 🏋, 🐕‍🊺 ✳, ✳ ⚖ 🎏, ✅ 🗜/📻. + +## 🌅 ℹ + +💡 🌅 🔃 🎛, ✅ 💃 🧟: + +* `WebSocket` 🎓. +* 🎓-⚓ *⃣ 🚚. diff --git a/docs/em/docs/advanced/wsgi.md b/docs/em/docs/advanced/wsgi.md new file mode 100644 index 000000000..4d051807f --- /dev/null +++ b/docs/em/docs/advanced/wsgi.md @@ -0,0 +1,37 @@ +# ✅ 🇚🇻 - 🏺, ✳, 🎏 + +👆 💪 🗻 🇚🇻 🈞 👆 👀 ⏮ [🎧 🈞 - 🗻](./sub-applications.md){.internal-link target=_blank}, [⛅ 🗳](./behind-a-proxy.md){.internal-link target=_blank}. + +👈, 👆 💪 ⚙ `WSGIMiddleware` & ⚙ ⚫ 🎁 👆 🇚🇻 🈞, 🖌, 🏺, ✳, ♒. + +## ⚙ `WSGIMiddleware` + +👆 💪 🗄 `WSGIMiddleware`. + +‎ 🎁 🇚🇻 (✅ 🏺) 📱 ⏮ 🛠. + +& ‎ 🗻 👈 🔜 ➡. + +```Python hl_lines="2-3 22" +{!../../../docs_src/wsgi/tutorial001.py!} +``` + +## ✅ ⚫ + +🔜, 🔠 📚 🔜 ➡ `/v1/` 🔜 🍵 🏺 🈞. + +& 🎂 🔜 🍵 **FastAPI**. + +🚥 👆 🏃 ⚫ ⏮ Uvicorn & 🚶 http://localhost:8000/v1/ 👆 🔜 👀 📚 ⚪➡ 🏺: + +```txt +Hello, World from Flask! +``` + +& 🚥 👆 🚶 http://localhost:8000/v2 👆 🔜 👀 📚 ⚪➡ FastAPI: + +```JSON +{ + "message": "Hello World" +} +``` diff --git a/docs/em/docs/alternatives.md b/docs/em/docs/alternatives.md new file mode 100644 index 000000000..6169aa52d --- /dev/null +++ b/docs/em/docs/alternatives.md @@ -0,0 +1,414 @@ +# 🎛, 🌈 & 🔺 + +⚫❔ 😮 **FastAPI**, ❔ ⚫ 🔬 🎏 🎛 & ⚫❔ ⚫ 🇭🇲 ⚪➡ 👫. + +## 🎶 + +**FastAPI** 🚫🔜 🔀 🚥 🚫 ⏮ 👷 🎏. + +📀 ✔ 📚 🧰 ✍ ⏭ 👈 ✔ ℹ 😮 🚮 🏗. + +👀 ✔ ❎ 🏗 🆕 🛠 📚 1⃣2⃣🗓. 🥇 👀 🔄 ❎ 🌐 ⚒ 📔 **FastAPI** ⚙ 📚 🎏 🛠, 🔌-🔌, & 🧰. + +✋ ☝, 📀 🙅‍♂ 🎏 🎛 🌘 🏗 🕳 👈 🚚 🌐 👫 ⚒, ✊ 🏆 💭 ⚪➡ ⏮ 🧰, & 🌀 👫 🏆 🌌 💪, ⚙ 🇪🇞 ⚒ 👈 ➖🚫 💪 ⏭ (🐍 3⃣.6⃣ ➕ 🆎 🔑). + +## ⏮ 🧰 + +### ✳ + +⚫ 🌅 🌟 🐍 🛠 & 🛎 🕎. ⚫ ⚙ 🏗 ⚙ 💖 👱📔. + +⚫ 📶 😆 🔗 ⏮ 🔗 💜 (💖 ✳ ⚖ ✳),, ✔ ☁ 💜 (💖 🗄, ✳, 👞, ♒) 👑 🏪 🚒 🚫 📶 ⏩. + +⚫ ✍ 🏗 🕞 👩‍💻, 🚫 ✍ 🔗 ⚙ 🏛 🕞 (💖 😥, Vue.js & 📐) ⚖ 🎏 ⚙ (💖 ☁ 📳) 🔗 ⏮ ⚫. + +### ✳ 🎂 🛠 + +✳ 🎂 🛠 ✍ 🗜 🧰 🏗 🕞 🔗 ⚙ ✳ 🔘, 📉 🚮 🛠 🛠. + +⚫ ⚙ 📚 🏢 ✅ 🊎, 🟥 👒 & 🎟. + +⚫ 🕐 🥇 🖌 **🏧 🛠 🧟**, & 👉 🎯 🕐 🥇 💭 👈 😮 "🔎" **FastAPI**. + +!!! note + ✳ 🎂 🛠 ✍ ✡ 🇺🇞🏛. 🎏 👌 💃 & Uvicorn, 🔛 ❔ **FastAPI** ⚓. + + +!!! check "😮 **FastAPI** " + ✔ 🏧 🛠 🧟 🕞 👩‍💻 🔢. + +### 🏺 + +🏺 "🕞", ⚫ 🚫 🔌 💜 🛠 🚫 📚 👜 👈 👟 🔢 ✳. + +👉 🊁 & 💪 ✔ 🔚 👜 💖 ⚙ ☁ 💜 👑 💜 💟 ⚙. + +⚫ 📶 🙅, ⚫ 📶 🏋 💡, 👐 🧟 🀚 🙁 📡 ☝. + +⚫ 🛎 ⚙ 🎏 🈞 👈 🚫 🎯 💪 💜, 👩‍💻 🧟, ⚖ 🙆 📚 ⚒ 👈 👟 🏀-🏗 ✳. 👐 📚 👫 ⚒ 💪 🚮 ⏮ 🔌-🔌. + +👉 ⚖ 🍕, & ➖ "🕞" 👈 💪 ↔ 📔 ⚫❔ ⚫❔ 💪 🔑 ⚒ 👈 👀 💚 🚧. + +👐 🊁 🏺, ⚫ 😑 💖 👍 🏏 🏗 🔗. ⏭ 👜 🔎 "✳ 🎂 🛠" 🏺. + +!!! check "😮 **FastAPI** " + â—Ÿ-🛠. ⚒ ⚫ ⏩ 🌀 & 🏏 🧰 & 🍕 💪. + + ✔ 🙅 & ⏩ ⚙ 🕹 ⚙. + + +### 📚 + +**FastAPI** 🚫 🀙 🎛 **📚**. 👫 ↔ 📶 🎏. + +⚫ 🔜 🀙 ⚠ ⚙ 📚 *🔘* FastAPI 🈞. + +✋, FastAPI 🀚 🌈 ⚪➡ 📚. + +**📚** 🗃 *🔗* ⏮ 🔗 (👩‍💻), ⏪ **FastAPI** 🗃 *🏗* 🔗 (💜). + +👫, 🌖 ⚖ 🌘, 🔄 🔚, 🔗 🔠 🎏. + +📚 ✔ 📶 🙅 & 🏋 🔧, ⚫ 📶 ⏩ ⚙, ⏮ 🀔 🔢. ✋ 🎏 🕰, ⚫ 📶 🏋 & 🛃. + +👈 ⚫❔, 💬 🛂 🕞: + +> 📚 1⃣ 🏆 ⏬ 🐍 📊 🌐 🕰 + +🌌 👆 ⚙ ⚫ 📶 🙅. 🖌, `GET` 📚, 👆 🔜 ✍: + +```Python +response = requests.get("http://example.com/some/url") +``` + +FastAPI 😑 🛠 *➡ 🛠* 💪 👀 💖: + +```Python hl_lines="1" +@app.get("/some/url") +def read_url(): + return {"message": "Hello World"} +``` + +👀 🔀 `requests.get(...)` & `@app.get(...)`. + +!!! check "😮 **FastAPI** " + * ✔ 🙅 & 🏋 🛠. + * ⚙ 🇺🇞🔍 👩‍🔬 📛 (🛠) 🔗, 🎯 & 🏋 🌌. + * ✔ 🀔 🔢, ✋ 🏋 🛃. + + +### 🊁 / 🗄 + +👑 ⚒ 👀 💚 ⚪➡ ✳ 🎂 🛠 🏧 🛠 🧟. + +‎ 👀 🔎 👈 📀 🐩 📄 🔗, ⚙ 🎻 (⚖ 📁, ↔ 🎻) 🀙 🊁. + +& 📀 🕞 👩‍💻 🔢 🊁 🛠 ⏪ ✍. , 💆‍♂ 💪 🏗 🊁 🧟 🛠 🔜 ✔ ⚙ 👉 🕞 👩‍💻 🔢 🔁. + +☝, 🊁 👐 💟 🏛, 📁 🗄. + +👈 ⚫❔ 🕐❔ 💬 🔃 ⏬ 2⃣.0⃣ ⚫ ⚠ 💬 "🊁", & ⏬ 3⃣ ➕ "🗄". + +!!! check "😮 **FastAPI** " + 🛠 & ⚙ 📂 🐩 🛠 🔧, ↩ 🛃 🔗. + + & 🛠 🐩-⚓ 👩‍💻 🔢 🧰: + + * 🊁 🎚 + * 📄 + + 👫 2⃣ 👐 ➖ 📶 🌟 & ⚖, ✋ 🔚 ⏩ 🔎, 👆 💪 🔎 💯 🌖 🎛 👩‍💻 🔢 🗄 (👈 👆 💪 ⚙ ⏮ **FastAPI**). + +### 🏺 🎂 🛠 + +📀 📚 🏺 🎂 🛠, ✋ ⏮ 💰 🕰 & 👷 🔘 🔬 👫, 👀 🔎 👈 📚 😞 ⚖ 🚫, ⏮ 📚 🧍 ❔ 👈 ⚒ 👫 🙃. + +### 🍭 + +1⃣ 👑 ⚒ 💪 🛠 ⚙ 📊 "🛠" ❔ ✊ 📊 ⚪➡ 📟 (🐍) & 🏭 ⚫ 🔘 🕳 👈 💪 📚 🔘 🕞. 🖌, 🏭 🎚 ⚗ 📊 ⚪➡ 💜 🔘 🎻 🎚. 🏭 `datetime` 🎚 🔘 🎻, ♒. + +➕1⃣ 🊏 ⚒ 💚 🔗 💜 🔬, ⚒ 💭 👈 💜 ☑, 🀝 🎯 🔢. 🖌, 👈 🏑 `int`, & 🚫 🎲 🎻. 👉 ✎ ⚠ 📚 💜. + +🍵 💜 🔬 ⚙, 👆 🔜 ✔ 🌐 ✅ ✋, 📟. + +👫 ⚒ ⚫❔ 🍭 🏗 🚚. ⚫ 👑 🗃, & 👀 ✔ ⚙ ⚫ 📚 ⏭. + +✋ ⚫ ✍ ⏭ 📀 🔀 🐍 🆎 🔑. , 🔬 🔠 🔗 👆 💪 ⚙ 🎯 🇚🇻 & 🎓 🚚 🍭. + +!!! check "😮 **FastAPI** " + ⚙ 📟 🔬 "🔗" 👈 🚚 💜 🆎 & 🔬, 🔁. + +### Webarg + +➕1⃣ 🊏 ⚒ ✔ 🔗 ✍ 📊 ⚪➡ 📚 📚. + +Webarg 🧰 👈 ⚒ 🚚 👈 🔛 🔝 📚 🛠, 🔌 🏺. + +⚫ ⚙ 🍭 🔘 💜 🔬. & ⚫ ✍ 🎏 👩‍💻. + +⚫ 👑 🧰 & 👀 ✔ ⚙ ⚫ 📚 💁‍♂, ⏭ ✔ **FastAPI**. + +!!! info + Webarg ✍ 🎏 🍭 👩‍💻. + +!!! check "😮 **FastAPI** " + ✔ 🏧 🔬 📚 📚 💜. + +### APISpec + +🍭 & Webarg 🚚 🔬, ✍ & 🛠 🔌-🔌. + +✋ 🧟 ❌. ‎ APISpec ✍. + +⚫ 🔌-📚 🛠 (& 📀 🔌-💃 💁‍♂). + +🌌 ⚫ 👷 👈 👆 ✍ 🔑 🔗 ⚙ 📁 📁 🔘 #⃣ 🔠 🔢 🚚 🛣. + +& ⚫ 🏗 🗄 🔗. + +👈 ❔ ⚫ 👷 🏺, 💃, 🆘, ♒. + +✋ ‎, 👥 ✔ 🔄 ⚠ ✔ â—Ÿ-❕, 🔘 🐍 🎻 (🊏 📁). + +👚‍🎚 💪 🚫 ℹ 🌅 ⏮ 👈. & 🚥 👥 🔀 🔢 ⚖ 🍭 🔗 & 💭 🔀 👈 📁#⃣, 🏗 🔗 🔜 ❌. + +!!! info + APISpec ✍ 🎏 🍭 👩‍💻. + + +!!! check "😮 **FastAPI** " + 🐕‍🊺 📂 🐩 🛠, 🗄. + +### 🏺-Apispec + +⚫ 🏺 🔌 -, 👈 👔 👯‍♂ Webarg, 🍭 & APISpec. + +⚫ ⚙ ℹ ⚪➡ Webarg & 🍭 🔁 🏗 🗄 🔗, ⚙ APISpec. + +⚫ 👑 🧰, 📶 🔜-📈. ⚫ 🔜 🌌 🌖 🌟 🌘 📚 🏺 🔌-🔌 👅 📀. ⚫ 💪 ↩ 🚮 🧟 ➖ 💁‍♂ 🩲 & 📝. + +👉 ❎ ✔ ✍ 📁 (➕1⃣ ❕) 🔘 🐍 ✍. + +👉 🌀 🏺, 🏺-Apispec ⏮ 🍭 & Webarg 👇 💕 👩‍💻 📚 ⏭ 🏗 **FastAPI**. + +⚙ ⚫ ↘ 🏗 📚 🏺 🌕-📚 🚂. 👫 👑 📚 👀 (& 📚 🔢 🏉) ✔ ⚙ 🆙 🔜: + +* https://github.com/tiangolo/full-stack +* https://github.com/tiangolo/full-stack-flask-couchbase +* https://github.com/tiangolo/full-stack-flask-couchdb + +& 👫 🎏 🌕-📚 🚂 🧢 [**FastAPI** 🏗 🚂](project-generation.md){.internal-link target=_blank}. + +!!! info + 🏺-Apispec ✍ 🎏 🍭 👩‍💻. + +!!! check "😮 **FastAPI** " + 🏗 🗄 🔗 🔁, ⚪➡ 🎏 📟 👈 🔬 🛠 & 🔬. + +### NestJS (& 📐) + +👉 ➖🚫 🚫 🐍, NestJS 🕞 (📕) ✳ 🛠 😮 📐. + +⚫ 🏆 🕳 🙁 🎏 ⚫❔ 💪 🔚 ⏮ 🏺-Apispec. + +⚫ ✔ 🛠 🔗 💉 ⚙, 😮 📐 2⃣. ⚫ 🚚 🏀-® "💉" (💖 🌐 🎏 🔗 💉 ⚙ 👀 💭),, ⚫ 🚮 🎭 & 📟 🔁. + +🔢 🔬 ⏮ 📕 🆎 (🎏 🐍 🆎 🔑), 👚‍🎚 🐕‍🊺 👍. + +✋ 📕 📊 🚫 🛡 ⏮ 📹 🕞, ⚫ 🚫🔜 ⚓ 🔛 🆎 🔬 🔬, 🛠 & 🧟 🎏 🕰. ↩ 👉 & 🔧 🚫, 🀚 🔬, 🛠 & 🏧 🔗 ⚡, ⚫ 💪 🚮 👚‍🎚 📚 🥉. , ⚫ ▶ 🔁. + +⚫ 💪 🚫 🍵 🔁 🏷 📶 👍. , 🚥 🎻 💪 📚 🎻 🎚 👈 ✔ 🔘 🏑 👈 🔄 🐊 🎻 🎚, ⚫ 🚫🔜 ☑ 📄 & ✔. + +!!! check "😮 **FastAPI** " + ⚙ 🐍 🆎 ✔ 👑 👚‍🎚 🐕‍🊺. + + ✔ 🏋 🔗 💉 ⚙. 🔎 🌌 📉 📟 🔁. + +### 🀣 + +⚫ 🕐 🥇 📶 ⏩ 🐍 🛠 ⚓ 🔛 `asyncio`. ⚫ ⚒ 📶 🎏 🏺. + +!!! note "📡 ℹ" + ⚫ ⚙ `uvloop` ↩ 🔢 🐍 `asyncio` ➰. 👈 ⚫❔ ⚒ ⚫ ⏩. + + ⚫ 🎯 😮 Uvicorn & 💃, 👈 ⏳ ⏩ 🌘 🀣 📂 📇. + +!!! check "😮 **FastAPI** " + 🔎 🌌 ✔ 😜 🎭. + + 👈 ⚫❔ **FastAPI** ⚓ 🔛 💃, ⚫ ⏩ 🛠 💪 (💯 🥉-🥳 📇). + +### 🊅 + +🊅 ➕1⃣ ↕ 🎭 🐍 🛠, ⚫ 🔧 ⭐, & 👷 🏛 🎏 🛠 💖 🀗. + +⚫ 🏗 ✔ 🔢 👈 📚 2⃣ 🔢, 1⃣ "📚" & 1⃣ "📚". ‎ 👆 "✍" 🍕 ⚪➡ 📚, & "✍" 🍕 📚. ↩ 👉 🔧, ⚫ 🚫 💪 📣 📚 🔢 & 💪 ⏮ 🐩 🐍 🆎 🔑 🔢 🔢. + +, 💜 🔬, 🛠, & 🧟, ✔ ⌛ 📟, 🚫 🔁. ⚖ 👫 ✔ 🛠 🛠 🔛 🔝 🊅, 💖 🀗. 👉 🎏 🔺 🔚 🎏 🛠 👈 😮 🊅 🔧, ✔ 1⃣ 📚 🎚 & 1⃣ 📚 🎚 🔢. + +!!! check "😮 **FastAPI** " + 🔎 🌌 🀚 👑 🎭. + + ‎ ⏮ 🀗 (🀗 ⚓ 🔛 🊅) 😮 **FastAPI** 📣 `response` 🔢 🔢. + + 👐 FastAPI ⚫ 📊, & ⚙ ✎ ⚒ 🎚, 🍪, & 🎛 👔 📟. + +### ♹ + +👀 🔎 ♹ 🥇 ▶ 🏗 **FastAPI**. & ⚫ ✔ 🎏 💭: + +* ⚓ 🔛 🐍 🆎 🔑. +* 🔬 & 🧟 ⚪➡ 👫 🆎. +* 🔗 💉 ⚙. + +⚫ 🚫 ⚙ 💜 🔬, 🛠 & 🧟 🥉-🥳 🗃 💖 Pydantic, ⚫ ✔ 🚮 👍. , 👫 💜 🆎 🔑 🔜 🚫 ♻ 💪. + +⚫ 🚚 🐥 🍖 🌅 🔁 📳. & ⚫ ⚓ 🔛 🇚🇻 (↩ 🔫), ⚫ 🚫 🔧 ✊ 📈 ↕-🎭 🚚 🧰 💖 Uvicorn, 💃 & 🀣. + +🔗 💉 ⚙ 🚚 🏀-® 🔗 & 🔗 ❎ 🧢 🔛 📣 🆎. , ⚫ 🚫 💪 📣 🌅 🌘 1⃣ "🊲" 👈 🚚 🎯 🆎. + +🛣 📣 👁 🥉, ⚙ 🔢 📣 🎏 🥉 (↩ ⚙ 👚‍🎚 👈 💪 🥉 ▶ 🔛 🔝 🔢 👈 🍵 🔗). 👉 🔐 ❔ ✳ 🔚 ⚫ 🌘 ❔ 🏺 (& 💃) 🔚 ⚫. ⚫ 🎏 📟 👜 👈 📶 😆 🔗. + +!!! check "😮 **FastAPI** " + 🔬 ➕ 🔬 💜 🆎 ⚙ "🔢" 💲 🏷 🔢. 👉 📉 👚‍🎚 🐕‍🊺, & ⚫ 🚫 💪 Pydantic ⏭. + + 👉 🀙 😮 🛠 🍕 Pydantic, 🐕‍🊺 🎏 🔬 📄 👗 (🌐 👉 🛠 🔜 ⏪ 💪 Pydantic). + +### 🀗 + +🀗 🕐 🥇 🛠 🛠 📄 🛠 🔢 🆎 ⚙ 🐍 🆎 🔑. 👉 👑 💭 👈 😮 🎏 🧰 🎏. + +⚫ ⚙ 🛃 🆎 🚮 📄 ↩ 🐩 🐍 🆎, ✋ ⚫ 🊏 🔁 ⏩. + +⚫ 🕐 🥇 🛠 🏗 🛃 🔗 📣 🎂 🛠 🎻. + +⚫ 🚫 ⚓ 🔛 🐩 💖 🗄 & 🎻 🔗. ⚫ 🚫🔜 🎯 🛠 ⚫ ⏮ 🎏 🧰, 💖 🊁 🎚. ✋ 🔄, ⚫ 📶 💡 💭. + +⚫ ✔ 😌, ⭐ ⚒: ⚙ 🎏 🛠, ⚫ 💪 ✍ 🔗 & 🇳🇚. + +⚫ ⚓ 🔛 ⏮ 🐩 🔁 🐍 🕞 🛠 (🇚🇻), ⚫ 💪 🚫 🍵 *⃣ & 🎏 👜, 👐 ⚫ ✔ ↕ 🎭 💁‍♂. + +!!! info + 🀗 ✍ ✡ 🗄, 🎏 👌 `isort`, 👑 🧰 🔁 😇 🗄 🐍 📁. + +!!! check "💭 😮 **FastAPI**" + 🀗 😮 🍕 APIStar, & 1⃣ 🧰 👀 🔎 🏆 👍, 🌟 APIStar. + + 🀗 ℹ 😍 **FastAPI** ⚙ 🐍 🆎 🔑 📣 🔢, & 🏗 🔗 ⚖ 🛠 🔁. + + 🀗 😮 **FastAPI** 📣 `response` 🔢 🔢 ⚒ 🎚 & 🍪. + +### APIStar (<= 0⃣.5⃣) + +▶ ⏭ 🀔 🏗 **FastAPI** 👀 🔎 **APIStar** 💜. ⚫ ✔ 🌖 🌐 👀 👀 & ✔ 👑 🔧. + +⚫ 🕐 🥇 🛠 🛠 ⚙ 🐍 🆎 🔑 📣 🔢 & 📚 👈 👀 ⏱ 👀 (⏭ NestJS & ♹). 👀 🔎 ⚫ 🌅 ⚖ 🌘 🎏 🕰 🀗. ✋ APIStar ⚙ 🗄 🐩. + +⚫ ✔ 🏧 💜 🔬, 💜 🛠 & 🗄 🔗 ⚡ ⚓ 🔛 🎏 🆎 🔑 📚 🥉. + +💪 🔗 🔑 🚫 ⚙ 🎏 🐍 🆎 🔑 💖 Pydantic, ⚫ 🍖 🌅 🎏 🍭,, 👚‍🎚 🐕‍🊺 🚫🔜 👍, ✋, APIStar 🏆 💪 🎛. + +⚫ ✔ 🏆 🎭 📇 🕰 (🕎 💥 💃). + +🥇, ⚫ 🚫 ✔ 🏧 🛠 🧟 🕞 🎚, ✋ 👀 💭 👀 💪 🚮 🊁 🎚 ⚫. + +⚫ ✔ 🔗 💉 ⚙. ⚫ ✔ 🏀-® 🊲, 🎏 🧰 🔬 🔛. ✋, ⚫ 👑 ⚒. + +👀 🙅 💪 ⚙ ⚫ 🌕 🏗, ⚫ 🚫 ✔ 💂‍♂ 🛠,, 👀 🚫 🚫 ❎ 🌐 ⚒ 👀 ✔ ⏮ 🌕-📚 🚂 ⚓ 🔛 🏺-Apispec. 👀 ✔ 👇 📈 🏗 ✍ 🚲 📚 ❎ 👈 🛠. + +✋ ‎, 🏗 🎯 🔀. + +⚫ 🙅‍♂ 📏 🛠 🕞 🛠, 👌 💪 🎯 🔛 💃. + +🔜 APIStar ⚒ 🧰 ✔ 🗄 🔧, 🚫 🕞 🛠. + +!!! info + APIStar ✍ ✡ 🇺🇞🏛. 🎏 👚 👈 ✍: + + * ✳ 🎂 🛠 + * 💃 (❔ **FastAPI** ⚓) + * Uvicorn (⚙ 💃 & **FastAPI**) + +!!! check "😮 **FastAPI** " + 🔀. + + 💭 📣 💗 👜 (💜 🔬, 🛠 & 🧟) ⏮ 🎏 🐍 🆎, 👈 🎏 🕰 🚚 👑 👚‍🎚 🐕‍🊺, 🕳 👀 🀔 💎 💭. + + & ⏮ 🔎 📏 🕰 🎏 🛠 & 🔬 📚 🎏 🎛, APIStar 🏆 🎛 💪. + + ‎ APIStar ⛔ 🔀 💜 & 💃 ✍, & 🆕 👻 🏛 ✅ ⚙. 👈 🏁 🌈 🏗 **FastAPI**. + + 👀 🀔 **FastAPI** "🛐 👚‍💌" APIStar, ⏪ 📉 & 📈 ⚒, ⌹ ⚙, & 🎏 🍕, ⚓ 🔛 🏫 ⚪➡ 🌐 👉 ⏮ 🧰. + +## ⚙ **FastAPI** + +### Pydantic + +Pydantic 🗃 🔬 💜 🔬, 🛠 & 🧟 (⚙ 🎻 🔗) ⚓ 🔛 🐍 🆎 🔑. + +👈 ⚒ ⚫ 📶 🏋. + +⚫ ⭐ 🍭. 👐 ⚫ ⏩ 🌘 🍭 📇. & ⚫ ⚓ 🔛 🎏 🐍 🆎 🔑, 👚‍🎚 🐕‍🊺 👑. + +!!! check "**FastAPI** ⚙ ⚫" + 🍵 🌐 💜 🔬, 💜 🛠 & 🏧 🏷 🧟 (⚓ 🔛 🎻 🔗). + + **FastAPI** ‎ ✊ 👈 🎻 🔗 💜 & 🚮 ⚫ 🗄, ↖ ⚪➡ 🌐 🎏 👜 ⚫ 🔚. + +### 💃 + +💃 💿 🔫 🛠/🧰, ❔ 💯 🏗 ↕-🎭 ✳ 🐕‍🊺. + +⚫ 📶 🙅 & 🏋. ⚫ 🔧 💪 🏧, & ✔ 🔧 🊲. + +⚫ ✔: + +* 🀙 🎆 🎭. +* *⃣ 🐕‍🊺. +* -🛠 🖥 📋. +* 🕎 & 🀫 🎉. +* 💯 👩‍💻 🏗 🔛 🇞🇲. +* ⚜, 🗜, 🎻 📁, 🎏 📚. +* 🎉 & 🍪 🐕‍🊺. +* 1⃣0⃣0⃣ 💯 💯 💰. +* 1⃣0⃣0⃣ 💯 🆎 ✍ ✍. +* 👩‍❀‍👚 🏋 🔗. + +💃 ⏳ ⏩ 🐍 🛠 💯. 🕎 💥 Uvicorn, ❔ 🚫 🛠, ✋ 💜. + +💃 🚚 🌐 🔰 🕞 🕞 🛠. + +✋ ⚫ 🚫 🚚 🏧 💜 🔬, 🛠 ⚖ 🧟. + +👈 1⃣ 👑 👜 👈 **FastAPI** 🚮 🔛 🔝, 🌐 ⚓ 🔛 🐍 🆎 🔑 (⚙ Pydantic). 👈, ➕ 🔗 💉 ⚙, 💂‍♂ 🚙, 🗄 🔗 ⚡, ♒. + +!!! note "📡 ℹ" + 🔫 🆕 "🐩" ➖ 🛠 ✳ 🐚 🏉 👚‍🎓. ⚫ 🚫 "🐍 🐩" (🇩🇬), 👐 👫 🛠 🔚 👈. + + 👐, ⚫ ⏪ ➖ ⚙ "🐩" 📚 🧰. 👉 📉 📉 🛠, 👆 💪 🎛 Uvicorn 🙆 🎏 🔫 💜 (💖 👞 ⚖ Hypercorn), ⚖ 👆 💪 🚮 🔫 🔗 🧰, 💖 `python-socketio`. + +!!! check "**FastAPI** ⚙ ⚫" + 🍵 🌐 🐚 🕞 🍕. ❎ ⚒ 🔛 🔝. + + 🎓 `FastAPI` ⚫ 😖 🔗 ⚪➡ 🎓 `Starlette`. + + , 🕳 👈 👆 💪 ⏮ 💃, 👆 💪 ⚫ 🔗 ⏮ **FastAPI**, ⚫ 🌖 💃 🔛 💊. + +### Uvicorn + +Uvicorn 🌩-⏩ 🔫 💜, 🏗 🔛 uvloop & httptool. + +⚫ 🚫 🕞 🛠, ✋ 💜. 🖌, ⚫ 🚫 🚚 🧰 🕹 ➡. 👈 🕳 👈 🛠 💖 💃 (⚖ **FastAPI**) 🔜 🚚 🔛 🔝. + +⚫ 👍 💜 💃 & **FastAPI**. + +!!! check "**FastAPI** 👍 ⚫" + 👑 🕞 💜 🏃 **FastAPI** 🈞. + + 👆 💪 🌀 ⚫ ⏮ 🐁, ✔ 🔁 👁-🛠 💜. + + ✅ 🌅 ℹ [🛠](deployment/index.md){.internal-link target=_blank} 📄. + +## 📇 & 🚅 + +🀔, 🔬, & 👀 🔺 🖖 Uvicorn, 💃 & FastAPI, ✅ 📄 🔃 [📇](benchmarks.md){.internal-link target=_blank}. diff --git a/docs/em/docs/async.md b/docs/em/docs/async.md new file mode 100644 index 000000000..13b362b5d --- /dev/null +++ b/docs/em/docs/async.md @@ -0,0 +1,430 @@ +# 🛠 & 🔁 / ⌛ + +ℹ 🔃 `async def` ❕ *➡ 🛠 🔢* & 🖥 🔃 🔁 📟, 🛠, & 🔁. + +## 🏃 ❓ + +🆑;👩‍⚕: + +🚥 👆 ⚙ 🥉 🥳 🗃 👈 💬 👆 🀙 👫 ⏮ `await`, 💖: + +```Python +results = await some_library() +``` + +‎, 📣 👆 *➡ 🛠 🔢* ⏮ `async def` 💖: + +```Python hl_lines="2" +@app.get('/') +async def read_results(): + results = await some_library() + return results +``` + +!!! note + 👆 💪 🕎 ⚙ `await` 🔘 🔢 ✍ ⏮ `async def`. + +--- + +🚥 👆 ⚙ 🥉 🥳 🗃 👈 🔗 ⏮ 🕳 (💜, 🛠, 📁 ⚙, ♒.) & 🚫 ✔ 🐕‍🊺 ⚙ `await`, (👉 ⏳ 💌 🌅 💜 🗃), ‎ 📣 👆 *➡ 🛠 🔢* 🛎, ⏮ `def`, 💖: + +```Python hl_lines="2" +@app.get('/') +def results(): + results = some_library() + return results +``` + +--- + +🚥 👆 🈞 (😫) 🚫 ✔ 🔗 ⏮ 🕳 🙆 & ⌛ ⚫ 📚, ⚙ `async def`. + +--- + +🚥 👆 🚫 💭, ⚙ 😐 `def`. + +--- + +**🗒**: 👆 💪 🌀 `def` & `async def` 👆 *➡ 🛠 🔢* 🌅 👆 💪 & 🔬 🔠 1⃣ ⚙ 🏆 🎛 👆. FastAPI 🔜 ▶ 👜 ⏮ 👫. + +😆, 🙆 💌 🔛, FastAPI 🔜 👷 🔁 & 📶 ⏩. + +✋ 📄 📶 🔛, ⚫ 🔜 💪 🎭 🛠. + +## 📡 ℹ + +🏛 ⏬ 🐍 ✔ 🐕‍🊺 **"🔁 📟"** ⚙ 🕳 🀙 **"🔁"**, ⏮ **`async` & `await`** ❕. + +➡ 👀 👈 🔀 🍕 📄 🔛: + +* **🔁 📟** +* **`async` & `await`** +* **🔁** + +## 🔁 📟 + +🔁 📟 ⛓ 👈 🇪🇞 👶 ✔ 🌌 💬 💻 / 📋 👶 👈 ☝ 📟, ⚫ 👶 🔜 ✔ ⌛ *🕳 🙆* 🏁 👱 🙆. ➡ 💬 👈 *🕳 🙆* 🀙 "🐌-📁" 👶. + +, ⏮ 👈 🕰, 💻 💪 🚶 & 🎏 👷, ⏪ "🐌-📁" 👶 🏁. + +‎ 💻 / 📋 👶 🔜 👟 🔙 🔠 🕰 ⚫ ✔ 🀞 ↩ ⚫ ⌛ 🔄, ⚖ 🕐❔ ⚫ 👶 🏁 🌐 👷 ⚫ ✔ 👈 ☝. & ⚫ 👶 🔜 👀 🚥 🙆 📋 ⚫ ⌛ ✔ ⏪ 🏁, 🀞 ⚫❔ ⚫ ✔. + +⏭, ⚫ 👶 ✊ 🥇 📋 🏁 (➡ 💬, 👆 "🐌-📁" 👶) & 😣 ⚫❔ ⚫ ✔ ⏮ ⚫. + +👈 "⌛ 🕳 🙆" 🛎 🔗 👀/🅟 🛠 👈 📶 "🐌" (🔬 🚅 🕹 & 💟 💟), 💖 ⌛: + +* 📊 ⚪➡ 👩‍💻 📚 🔘 🕞 +* 📊 📚 👆 📋 📚 👩‍💻 🔘 🕞 +* 🎚 📁 💟 ✍ ⚙ & 🀝 👆 📋 +* 🎚 👆 📋 🀝 ⚙ ✍ 💟 +* 🛰 🛠 🛠 +* 💜 🛠 🏁 +* 💜 🔢 📚 🏁 +* ♒. + +🛠 🕰 🍎 ✎ ⌛ 👀/🅟 🛠, 👫 🀙 👫 "👀/🅟 🔗" 🛠. + +⚫ 🀙 "🔁" ↩ 💻 / 📋 🚫 ✔ "🔁" ⏮ 🐌 📋, ⌛ ☑ 🙍 👈 📋 🏁, ⏪ 🔚 🕳, 💪 ✊ 📋 🏁 & 😣 👷. + +↩ 👈, 💆‍♂ "🔁" ⚙, 🕐 🏁, 📋 💪 ⌛ ⏞ 🐥 👄 (⏲) 💻 / 📋 🏁 ⚫❔ ⚫ 🚶, & ‎ 👟 🔙 ✊ 🏁 & 😣 👷 ⏮ 👫. + +"🔁" (👜 "🔁") 👫 🛎 ⚙ ⚖ "🔁", ↩ 💻 / 📋 ⏩ 🌐 📶 🔁 ⏭ 🔀 🎏 📋, 🚥 👈 🔁 🔌 ⌛. + +### 🛠 & 🍔 + +👉 💭 **🔁** 📟 🔬 🔛 🕣 🀙 **"🛠"**. ⚫ 🎏 ⚪➡ **"🔁"**. + +**🛠** & **🔁** 👯‍♂ 🔗 "🎏 👜 😥 🌅 ⚖ 🌘 🎏 🕰". + +✋ ℹ 🖖 *🛠* & *🔁* 🎏. + +👀 🔺, 🌈 📄 📖 🔃 🍔: + +### 🛠 🍔 + +👆 🚶 ⏮ 👆 🥰 🀚 ⏩ 🥕, 👆 🧍 ⏞ ⏪ 🏧 ✊ ✔ ⚪➡ 👫👫 🚪 👆. 👶 + + + +‎ ⚫ 👆 🔄, 👆 🥉 👆 ✔ 2⃣ 📶 🎀 🍔 👆 🥰 & 👆. 👶 👶 + + + +🏧 💬 🕳 🍳 👚‍🍳 👫 💭 👫 ✔ 🏗 👆 🍔 (✋ 👫 ⏳ 🏗 🕐 ⏮ 👩‍💻). + + + +👆 💞. 👶 + +🏧 🀝 👆 🔢 👆 🔄. + + + +⏪ 👆 ⌛, 👆 🚶 ⏮ 👆 🥰 & ⚒ 🏓, 👆 🧎 & 💬 ⏮ 👆 🥰 📏 🕰 (👆 🍔 📶 🎀 & ✊ 🕰 🏗). + +👆 🏖 🏓 ⏮ 👆 🥰, ⏪ 👆 ⌛ 🍔, 👆 💪 💞 👈 🕰 😮 ❔ 👌, 🐚 & 🙃 👆 🥰 👶 👶 👶. + + + +⏪ ⌛ & 💬 👆 🥰, ⚪➡ 🕰 🕰, 👆 ✅ 🔢 🖥 🔛 ⏲ 👀 🚥 ⚫ 👆 🔄 ⏪. + +‎ ☝, ⚫ 😒 👆 🔄. 👆 🚶 ⏲, 🀚 👆 🍔 & 👟 🔙 🏓. + + + +👆 & 👆 🥰 🍎 🍔 & ✔ 👌 🕰. 👶 + + + +!!! info + 🌹 🖌 👯 🍏. 👶 + +--- + +🌈 👆 💻 / 📋 👶 👈 📖. + +⏪ 👆 ⏞, 👆 ⛜ 👶, ⌛ 👆 🔄, 🚫 🔚 🕳 📶 "😌". ✋ ⏞ ⏩ ↩ 🏧 🕎 ✊ ✔ (🚫 🏗 👫), 👈 👌. + +‎, 🕐❔ ⚫ 👆 🔄, 👆 ☑ "😌" 👷, 👆 🛠 🍣, 💭 ⚫❔ 👆 💚, 🀚 👆 🥰 ⚒, 💞, ✅ 👈 👆 🀝 ☑ 💵 ⚖ 💳, ✅ 👈 👆 🈚 ☑, ✅ 👈 ✔ ✔ ☑ 🏬, ♒. + +✋ ‎, ✋ 👆 🚫 ✔ 👆 🍔, 👆 👷 ⏮ 🏧 "🔛 ⏞" ⏞, ↩ 👆 ✔ ⌛ 👶 👆 🍔 🔜. + +✋ 👆 🚶 ↖ ⚪➡ ⏲ & 🧎 🏓 ⏮ 🔢 👆 🔄, 👆 💪 🎛 👶 👆 🙋 👆 🥰, & "👷" 👶 👶 🔛 👈. ‎ 👆 🔄 🔚 🕳 📶 "😌" 😏 ⏮ 👆 🥰 👶. + +‎ 🏧 👶 💬 "👀 🏁 ⏮ 🔚 🍔" 🚮 👆 🔢 🔛 ⏲ 🖥, ✋ 👆 🚫 🊘 💖 😜 ⏪ 🕐❔ 🖥 🔢 🔀 👆 🔄 🔢. 👆 💭 🙅‍♂ 1⃣ 🔜 📎 👆 🍔 ↩ 👆 ✔ 🔢 👆 🔄, & 👫 ✔ 👫. + +👆 ⌛ 👆 🥰 🏁 📖 (🏁 ⏮ 👷 👶 / 📋 ➖ 🛠 👶), 😀 🖐 & 💬 👈 👆 🔜 🍔 ⏞. + +‎ 👆 🚶 ⏲ 👶, ▶ 📋 👈 🔜 🏁 👶, ⚒ 🍔, 💬 👏 & ✊ 👫 🏓. 👈 🏁 👈 🔁 / 📋 🔗 ⏮ ⏲ ⏹. 👈 🔄, ✍ 🆕 📋, "🍎 🍔" 👶 👶, ✋ ⏮ 1⃣ "🀚 🍔" 🏁 ⏹. + +### 🔗 🍔 + +🔜 ➡ 🌈 👫 ➖🚫 🚫 "🛠 🍔", ✋ "🔗 🍔". + +👆 🚶 ⏮ 👆 🥰 🀚 🔗 ⏩ 🥕. + +👆 🧍 ⏞ ⏪ 📚 (➡ 💬 8⃣) 🏧 👈 🎏 🕰 🍳 ✊ ✔ ⚪➡ 👫👫 🚪 👆. + +👱 ⏭ 👆 ⌛ 👫 🍔 🔜 ⏭ 🍂 ⏲ ↩ 🔠 8⃣ 🏧 🚶 & 🏗 🍔 ▶ ↖ ⏭ 💆‍♂ ⏭ ✔. + + + +‎ ⚫ 😒 👆 🔄, 👆 🥉 👆 ✔ 2⃣ 📶 🎀 🍔 👆 🥰 & 👆. + +👆 💞 👶. + + + +🏧 🚶 👚‍🍳. + +👆 ⌛, 🧍 🚪 ⏲ 👶, 👈 🙅‍♂ 1⃣ 🙆 ✊ 👆 🍔 ⏭ 👆, 📀 🙅‍♂ 🔢 🔄. + + + +👆 & 👆 🥰 😩 🚫 ➡ 🙆 🀚 🚪 👆 & ✊ 👆 🍔 🕐❔ 👫 🛬, 👆 🚫🔜 💞 🙋 👆 🥰. 👶 + +👉 "🔁" 👷, 👆 "🔁" ⏮ 🏧/🍳 👶 👶. 👆 ✔ ⌛ 👶 & 📀 ☑ 🙍 👈 🏧/🍳 👶 👶 🏁 🍔 & 🀝 👫 👆, ⚖ ⏪, 👱 🙆 💪 ✊ 👫. + + + +‎ 👆 🏧/🍳 👶 👶 😒 👟 🔙 ⏮ 👆 🍔, ⏮ 📏 🕰 ⌛ 👶 📀 🚪 ⏲. + + + +👆 ✊ 👆 🍔 & 🚶 🏓 ⏮ 👆 🥰. + +👆 🍎 👫, & 👆 🔚. ⏹ + + + +📀 🚫 🌅 💬 ⚖ 😏 🌅 🕰 💞 ⌛ 👶 🚪 ⏲. 👶 + +!!! info + 🌹 🖌 👯 🍏. 👶 + +--- + +👉 😐 🔗 🍔, 👆 💻 / 📋 👶 ⏮ 2⃣ 🕹 (👆 & 👆 🥰), 👯‍♂ ⌛ 👶 & 💡 👫 🙋 👶 "⌛ 🔛 ⏲" 👶 📏 🕰. + +⏩ 🥕 🏪 ✔ 8⃣ 🕹 (🏧/🍳). ⏪ 🛠 🍔 🏪 💪 ✔ ✔ 🕎 2⃣ (1⃣ 🏧 & 1⃣ 🍳). + +✋, 🏁 💡 🚫 🏆. 👶 + +--- + +👉 🔜 🔗 🌓 📖 🍔. 👶 + +🌅 "🎰 👚‍❀‍👚" 🖌 👉, 🌈 🏊. + +🆙 ⏳, 🏆 🏊 ✔ 💗 🏧 👶 👶 👶 👶 👶 👶 👶 👶 & 🊏 ⏞ 👶 👶 👶 👶 👶 👶 👶 👶. + +🌐 🏧 🔚 🌐 👷 ⏮ 1⃣ 👩‍💻 ⏮ 🎏 👶 👶 👶. + +& 👆 ✔ ⌛ 👶 ⏞ 📏 🕰 ⚖ 👆 💞 👆 🔄. + +👆 🎲 🚫🔜 💚 ✊ 👆 🥰 👶 ⏮ 👆 👷 🏊 👶. + +### 🍔 🏁 + +👉 😐 "⏩ 🥕 🍔 ⏮ 👆 🥰", 📀 📚 ⌛ 👶, ⚫ ⚒ 📚 🌅 🔑 ✔ 🛠 ⚙ ⏞ 👶 👶. + +👉 💌 🌅 🕞 🈞. + +📚, 📚 👩‍💻, ✋ 👆 💜 ⌛ 👶 👫 🚫--👍 🔗 📚 👫 📚. + +& ‎ ⌛ 👶 🔄 📚 👟 🔙. + +👉 "⌛" 👶 ⚖ ⏲, ✋, ⚖ ⚫ 🌐, ⚫ 📚 ⌛ 🔚. + +👈 ⚫❔ ⚫ ⚒ 📚 🔑 ⚙ 🔁 ⏞ 👶 👶 📟 🕞 🔗. + +👉 😇 🔀 ⚫❔ ⚒ ✳ 🌟 (✋ ✳ 🚫 🔗) & 👈 💪 🚶 🛠 🇪🇞. + +& 👈 🎏 🎚 🎭 👆 🀚 ⏮ **FastAPI**. + +& 👆 💪 ✔ 🔁 & 🔀 🎏 🕰, 👆 🀚 ↕ 🎭 🌘 🌅 💯 ✳ 🛠 & 🔛 🇷🇪 ⏮ 🚶, ❔ ✍ 🇪🇞 🔐 🅱 (🌐 👏 💃). + +### 🛠 👍 🌘 🔁 ❓ + +😆 ❗ 👈 🚫 🛐 📖. + +🛠 🎏 🌘 🔁. & ⚫ 👻 🔛 **🎯** 😐 👈 🔌 📚 ⌛. ↩ 👈, ⚫ 🛎 📚 👍 🌘 🔁 🕞 🈞 🛠. ✋ 🚫 🌐. + +, ⚖ 👈 👅, 🌈 📄 📏 📖: + +> 👆 ✔ 🧹 🊏, 💩 🏠. + +*😆, 👈 🎂 📖*. + +--- + +📀 🙅‍♂ ⌛ 👶 🙆, 📚 👷 🔚, 🔛 💗 🥉 🏠. + +👆 💪 ✔ 🔄 🍔 🖌, 🥇 🏠 🧖‍♂, ‎ 👚‍🍳, ✋ 👆 🚫 ⌛ 👶 🕳, 🧹 & 🧹, 🔄 🚫🔜 📉 🕳. + +⚫ 🔜 ✊ 🎏 💞 🕰 🏁 ⏮ ⚖ 🍵 🔄 (🛠) & 👆 🔜 ✔ ⌛ 🎏 💞 👷. + +✋ 👉 💌, 🚥 👆 💪 ✊ 8⃣ 👰-🏧/🍳/🔜-🧹, & 🔠 1⃣ 👫 (➕ 👆) 💪 ✊ 🏒 🏠 🧹 ⚫, 👆 💪 🌐 👷 **🔗**, ⏮ ➕ ℹ, & 🏁 🌅 🔜. + +👉 😐, 🔠 1⃣ 🧹 (🔌 👆) 🔜 🕹, 🀞 👫 🍕 👚‍🏭. + +& 🏆 🛠 🕰 ✊ ☑ 👷 (↩ ⌛), & 👷 💻 ⌛ 💜, 👫 🀙 👫 ⚠ "💜 🎁". + +--- + +⚠ 🖌 💜 🔗 🛠 👜 👈 🚚 🏗 🧪 🏭. + +🖌: + +* **🎧** ⚖ **🖌 🏭**. +* **💻 👓**: 🖌 ✍ 💯 🔅, 🔠 🔅 ✔ 3⃣ 💲 / 🎚, 🏭 👈 🛎 🚚 💻 🕳 🔛 📚 🔅, 🌐 🎏 🕰. +* **🎰 🏫**: ⚫ 🛎 🚚 📚 "✖" & "🖌" ✖. 💭 🊏 📋 ⏮ 🔢 & ✖ 🌐 👫 👯‍♂ 🎏 🕰. +* **⏬ 🏫**: 👉 🎧-🏑 🎰 🏫,, 🎏 ✔. ⚫ 👈 📀 🚫 👁 📋 🔢 ✖, ✋ 🊏 ⚒ 👫, & 📚 💌, 👆 ⚙ 🎁 🕹 🏗 & / ⚖ ⚙ 👈 🏷. + +### 🛠 ➕ 🔁: 🕞 ➕ 🎰 🏫 + +⏮ **FastAPI** 👆 💪 ✊ 📈 🛠 👈 📶 ⚠ 🕞 🛠 (🎏 👑 🧲 ✳). + +✋ 👆 💪 🐄 💰 🔁 & 💟 (✔ 💗 🛠 🏃‍♂ 🔗) **💜 🎁** ⚖ 💖 👈 🎰 🏫 ⚙. + +👈, ➕ 🙅 👐 👈 🐍 👑 🇪🇞 **💜 🧪**, 🎰 🏫 & ✎ ⏬ 🏫, ⚒ FastAPI 📶 👍 🏏 💜 🧪 / 🎰 🏫 🕞 🔗 & 🈞 (👪 📚 🎏). + +👀 ❔ 🏆 👉 🔁 🏭 👀 📄 🔃 [🛠](deployment/index.md){.internal-link target=_blank}. + +## `async` & `await` + +🏛 ⏬ 🐍 ✔ 📶 🏋 🌌 🔬 🔁 📟. 👉 ⚒ ⚫ 👀 💖 😐 "🔁" 📟 & "⌛" 👆 ▶ 🙍. + +🕐❔ 📀 🛠 👈 🔜 🚚 ⌛ ⏭ 🀝 🏁 & ✔ 🐕‍🊺 👉 🆕 🐍 ⚒, 👆 💪 📟 ⚫ 💖: + +```Python +burgers = await get_burgers(2) +``` + +🔑 📥 `await`. ⚫ 💬 🐍 👈 ⚫ ✔ ⌛ ⏞ `get_burgers(2)` 🏁 🔚 🚮 👜 👶 ⏭ ♻ 🏁 `burgers`. ⏮ 👈, 🐍 🔜 💭 👈 ⚫ 💪 🚶 & 🕳 🙆 👶 👶 👐 (💖 📚 ➕1⃣ 📚). + +`await` 👷, ⚫ ✔ 🔘 🔢 👈 🐕‍🊺 👉 🔀. 👈, 👆 📣 ⚫ ⏮ `async def`: + +```Python hl_lines="1" +async def get_burgers(number: int): + # Do some asynchronous stuff to create the burgers + return burgers +``` + +...↩ `def`: + +```Python hl_lines="2" +# This is not asynchronous +def get_sequential_burgers(number: int): + # Do some sequential stuff to create the burgers + return burgers +``` + +⏮ `async def`, 🐍 💭 👈, 🔘 👈 🔢, ⚫ ✔ 🀔 `await` 🧬, & 👈 ⚫ 💪 "⏞" ⏞ 🛠 👈 🔢 & 🚶 🕳 🙆 👶 ⏭ 👟 🔙. + +🕐❔ 👆 💚 🀙 `async def` 🔢, 👆 ✔ "⌛" ⚫. , 👉 🏆 🚫 👷: + +```Python +# This won't work, because get_burgers was defined with: async def +burgers = get_burgers(2) +``` + +--- + +, 🚥 👆 ⚙ 🗃 👈 💬 👆 👈 👆 💪 🀙 ⚫ ⏮ `await`, 👆 💪 ✍ *➡ 🛠 🔢* 👈 ⚙ ⚫ ⏮ `async def`, 💖: + +```Python hl_lines="2-3" +@app.get('/burgers') +async def read_burgers(): + burgers = await get_burgers(2) + return burgers +``` + +### 🌅 📡 ℹ + +👆 💪 ✔ 👀 👈 `await` 💪 🕎 ⚙ 🔘 🔢 🔬 ⏮ `async def`. + +✋ 🎏 🕰, 🔢 🔬 ⏮ `async def` ✔ "⌛". , 🔢 ⏮ `async def` 💪 🕎 🀙 🔘 🔢 🔬 ⏮ `async def` 💁‍♂. + +, 🔃 🥚 & 🐔, ❔ 👆 🀙 🥇 `async` 🔢 ❓ + +🚥 👆 👷 ⏮ **FastAPI** 👆 🚫 ✔ 😟 🔃 👈, ↩ 👈 "🥇" 🔢 🔜 👆 *➡ 🛠 🔢*, & FastAPI 🔜 💭 ❔ ▶ 👜. + +✋ 🚥 👆 💚 ⚙ `async` / `await` 🍵 FastAPI, 👆 💪 ⚫ 👍. + +### ✍ 👆 👍 🔁 📟 + +💃 (& **FastAPI**) ⚓ 🔛 AnyIO, ❔ ⚒ ⚫ 🔗 ⏮ 👯‍♂ 🐍 🐩 🗃 ✳ & 🎻. + +🎯, 👆 💪 🔗 ⚙ AnyIO 👆 🏧 🛠 ⚙ 💌 👈 🚚 🌅 🏧 ⚓ 👆 👍 📟. + +& 🚥 👆 🚫 ⚙ FastAPI, 👆 💪 ✍ 👆 👍 🔁 🈞 ⏮ AnyIO 🏆 🔗 & 🀚 🚮 💰 (✅ *📊 🛠*). + +### 🎏 📚 🔁 📟 + +👉 👗 ⚙ `async` & `await` 📶 🆕 🇪🇞. + +✋ ⚫ ⚒ 👷 ⏮ 🔁 📟 📚 ⏩. + +👉 🎏 ❕ (⚖ 🌖 🌓) 🔌 ⏳ 🏛 ⏬ 🕞 (🖥 & ✳). + +✋ ⏭ 👈, 🚚 🔁 📟 🌖 🏗 & ⚠. + +⏮ ⏬ 🐍, 👆 💪 ✔ ⚙ 🧵 ⚖ 🐁. ✋ 📟 🌌 🌖 🏗 🀔, ℹ, & 💭 🔃. + +⏮ ⏬ ✳ / 🖥 🕞, 👆 🔜 ✔ ⚙ "⏲". ❔ ↘ ⏲ 🔥😈. + +## 🔁 + +**🔁** 📶 🎀 ⚖ 👜 📚 `async def` 🔢. 🐍 💭 👈 ⚫ 🕳 💖 🔢 👈 ⚫ 💪 ▶ & 👈 ⚫ 🔜 🔚 ☝, ✋ 👈 ⚫ 5⃣📆 ⏞ ⏞ 🔘 💁‍♂, 🕐❔ 📀 `await` 🔘 ⚫. + +✋ 🌐 👉 🛠 ⚙ 🔁 📟 ⏮ `async` & `await` 📚 🕰 🔬 ⚙ "🔁". ⚫ ⭐ 👑 🔑 ⚒ 🚶, "🔁". + +## 🏁 + +➡ 👀 🎏 🔀 ⚪➡ 🔛: + +> 🏛 ⏬ 🐍 ✔ 🐕‍🊺 **"🔁 📟"** ⚙ 🕳 🀙 **"🔁"**, ⏮ **`async` & `await`** ❕. + +👈 🔜 ⚒ 🌅 🔑 🔜. 👶 + +🌐 👈 ⚫❔ 🏋 FastAPI (🔘 💃) & ⚫❔ ⚒ ⚫ ✔ ✅ 🎆 🎭. + +## 📶 📡 ℹ + +!!! warning + 👆 💪 🎲 🚶 👉. + + 👉 📶 📡 ℹ ❔ **FastAPI** 👷 🔘. + + 🚥 👆 ✔ 📡 💡 (🈶-🏋, 🧵, 🍫, ♒.) & 😟 🔃 ❔ FastAPI 🍵 `async def` 🆚 😐 `def`, 🚶 ‎. + +### ➡ 🛠 🔢 + +🕐❔ 👆 📣 *➡ 🛠 🔢* ⏮ 😐 `def` ↩ `async def`, ⚫ 🏃 🔢 🧵 👈 ‎ ⌛, ↩ ➖ 🀙 🔗 (⚫ 🔜 🍫 💜). + +🚥 👆 👟 ⚪➡ ➕1⃣ 🔁 🛠 👈 🔚 🚫 👷 🌌 🔬 🔛 & 👆 ⚙ ⚖ 🙃 📊-🕎 *➡ 🛠 🔢* ⏮ ✅ `def` 🀪 🎭 📈 (🔃 1⃣0⃣0⃣ 💓), 🙏 🗒 👈 **FastAPI** ⭐ 🔜 🔄. 👫 💌, ⚫ 👻 ⚙ `async def` 🚥 👆 *➡ 🛠 🔢* ⚙ 📟 👈 🎭 🚧 👀/🅟. + +, 👯‍♂ ⚠, 🀞 👈 **FastAPI** 🔜 [⏩](/#performance){.internal-link target=_blank} 🌘 (⚖ 🌘 ⭐) 👆 ⏮ 🛠. + +### 🔗 + +🎏 ✔ [🔗](/tutorial/dependencies/index.md){.internal-link target=_blank}. 🚥 🔗 🐩 `def` 🔢 ↩ `async def`, ⚫ 🏃 🔢 🧵. + +### 🎧-🔗 + +👆 💪 ✔ 💗 🔗 & [🎧-🔗](/tutorial/dependencies/sub-dependencies.md){.internal-link target=_blank} 🚫 🔠 🎏 (🔢 🔢 🔑), 👫 💪 ✍ ⏮ `async def` & ⏮ 😐 `def`. ⚫ 🔜 👷, & 🕐 ✍ ⏮ 😐 `def` 🔜 🀙 🔛 🔢 🧵 (⚪➡ 🧵) ↩ ➖ "⌛". + +### 🎏 🚙 🔢 + +🙆 🎏 🚙 🔢 👈 👆 🀙 🔗 💪 ✍ ⏮ 😐 `def` ⚖ `async def` & FastAPI 🏆 🚫 📉 🌌 👆 🀙 ⚫. + +👉 🔅 🔢 👈 FastAPI 🀙 👆: *➡ 🛠 🔢* & 🔗. + +🚥 👆 🚙 🔢 😐 🔢 ⏮ `def`, ⚫ 🔜 🀙 🔗 (👆 ✍ ⚫ 👆 📟), 🚫 🧵, 🚥 🔢 ✍ ⏮ `async def` ‎ 👆 🔜 `await` 👈 🔢 🕐❔ 👆 🀙 ⚫ 👆 📟. + +--- + +🔄, 👉 📶 📡 ℹ 👈 🔜 🎲 ⚠ 🚥 👆 👟 🔎 👫. + +⏪, 👆 🔜 👍 ⏮ 📄 ⚪➡ 📄 🔛: 🏃 ❓. diff --git a/docs/em/docs/benchmarks.md b/docs/em/docs/benchmarks.md new file mode 100644 index 000000000..003c3f62d --- /dev/null +++ b/docs/em/docs/benchmarks.md @@ -0,0 +1,34 @@ +# 📇 + +🔬 🇞🇲 📇 🎊 **FastAPI** 🈞 🏃‍♂ 🔜 Uvicorn 1⃣ ⏩ 🐍 🛠 💪, 🕎 🔛 💃 & Uvicorn 👫 (⚙ 🔘 FastAPI). (*) + +✋ 🕐❔ ✅ 📇 & 🔺 👆 🔜 ✔ 📄 🀯. + +## 📇 & 🚅 + +🕐❔ 👆 ✅ 📇, ⚫ ⚠ 👀 📚 🧰 🎏 🆎 🔬 🌓. + +🎯, 👀 Uvicorn, 💃 & FastAPI 🔬 👯‍♂ (👪 📚 🎏 🧰). + +🙅 ⚠ ❎ 🧰, 👍 🎭 ⚫ 🔜 🀚. & 🏆 📇 🚫 💯 🌖 ⚒ 🚚 🧰. + +🔗 💖: + +* **Uvicorn**: 🔫 💜 + * **💃**: (⚙ Uvicorn) 🕞 🕞 + * **FastAPI**: (⚙ 💃) 🛠 🕞 ⏮ 📚 🌖 ⚒ 🏗 🔗, ⏮ 💜 🔬, ♒. + +* **Uvicorn**: + * 🔜 ✔ 🏆 🎭, ⚫ 🚫 ✔ 🌅 ➕ 📟 ↖ ⚪➡ 💜 ⚫. + * 👆 🚫🔜 ✍ 🈞 Uvicorn 🔗. 👈 🔜 ⛓ 👈 👆 📟 🔜 ✔ 🔌 🌖 ⚖ 🌘, 🌘, 🌐 📟 🚚 💃 (⚖ **FastAPI**). & 🚥 👆 👈, 👆 🏁 🈞 🔜 ✔ 🎏 🌥 ✔ ⚙ 🛠 & 📉 👆 📱 📟 & 🐛. + * 🚥 👆 ⚖ Uvicorn, 🔬 ⚫ 🛡 👞, Hypercorn, ✳, ♒. 🈞 💜. +* **💃**: + * 🔜 ✔ ⏭ 🏆 🎭, ⏮ Uvicorn. 👐, 💃 ⚙ Uvicorn 🏃. , ⚫ 🎲 💪 🕎 🀚 "🐌" 🌘 Uvicorn ✔ 🛠 🌅 📟. + * ✋ ⚫ 🚚 👆 🧰 🏗 🙅 🕞 🈞, ⏮ 🕹 ⚓ 🔛 ➡, ♒. + * 🚥 👆 ⚖ 💃, 🔬 ⚫ 🛡 🀣, 🏺, ✳, ♒. 🕞 🛠 (⚖ 🕞). +* **FastAPI**: + * 🎏 🌌 👈 💃 ⚙ Uvicorn & 🚫🔜 ⏩ 🌘 ⚫, **FastAPI** ⚙ 💃, ⚫ 🚫🔜 ⏩ 🌘 ⚫. + * FastAPI 🚚 🌅 ⚒ 🔛 🔝 💃. ⚒ 👈 👆 🌖 🕧 💪 🕐❔ 🏗 🔗, 💖 💜 🔬 & 🛠. & ⚙ ⚫, 👆 🀚 🏧 🧟 🆓 (🏧 🧟 🚫 🚮 🌥 🏃‍♂ 🈞, ⚫ 🏗 🔛 🕎). + * 🚥 👆 🚫 ⚙ FastAPI & ⚙ 💃 🔗 (⚖ ➕1⃣ 🧰, 💖 🀣, 🏺, 🆘, ♒) 👆 🔜 ✔ 🛠 🌐 💜 🔬 & 🛠 👆. , 👆 🏁 🈞 🔜 ✔ 🎏 🌥 🚥 ⚫ 🏗 ⚙ FastAPI. & 📚 💌, 👉 💜 🔬 & 🛠 🊏 💞 📟 ✍ 🈞. + * , ⚙ FastAPI 👆 ♻ 🛠 🕰, 🐛, ⏞ 📟, & 👆 🔜 🎲 🀚 🎏 🎭 (⚖ 👍) 👆 🔜 🚥 👆 🚫 ⚙ ⚫ (👆 🔜 ✔ 🛠 ⚫ 🌐 👆 📟). + * 🚥 👆 ⚖ FastAPI, 🔬 ⚫ 🛡 🕞 🈞 🛠 (⚖ ⚒ 🧰) 👈 🚚 💜 🔬, 🛠 & 🧟, 💖 🏺-apispec, NestJS, ♹, ♒. 🛠 ⏮ 🛠 🏧 💜 🔬, 🛠 & 🧟. diff --git a/docs/em/docs/contributing.md b/docs/em/docs/contributing.md new file mode 100644 index 000000000..7749d27a1 --- /dev/null +++ b/docs/em/docs/contributing.md @@ -0,0 +1,465 @@ +# 🛠 - 📉 + +🥇, 👆 💪 💚 👀 🔰 🌌 [ℹ FastAPI & 🀚 ℹ](help-fastapi.md){.internal-link target=_blank}. + +## 🛠 + +🚥 👆 ⏪ 🖖 🗃 & 👆 💭 👈 👆 💪 ⏬ 🀿 📟, 📥 📄 ⚒ 🆙 👆 🌐. + +### 🕹 🌐 ⏮ `venv` + +👆 💪 ✍ 🕹 🌐 📁 ⚙ 🐍 `venv` 🕹: + +
+ +```console +$ python -m venv env +``` + +
+ +👈 🔜 ✍ 📁 `./env/` ⏮ 🐍 💱 & ‎ 👆 🔜 💪 ❎ 📊 👈 ❎ 🌐. + +### 🔓 🌐 + +🔓 🆕 🌐 ⏮: + +=== "💟, 🇞🇻" + +
+ + ```console + $ source ./env/bin/activate + ``` + +
+ +=== "🚪 📋" + +
+ + ```console + $ .\env\Scripts\Activate.ps1 + ``` + +
+ +=== "🚪 🎉" + + ⚖ 🚥 👆 ⚙ 🎉 🖥 (✅ 🐛 🎉): + +
+ + ```console + $ source ./env/Scripts/activate + ``` + +
+ +✅ ⚫ 👷, ⚙: + +=== "💟, 🇞🇻, 🚪 🎉" + +
+ + ```console + $ which pip + + some/directory/fastapi/env/bin/pip + ``` + +
+ +=== "🚪 📋" + +
+ + ```console + $ Get-Command pip + + some/directory/fastapi/env/bin/pip + ``` + +
+ +🚥 ⚫ 🎊 `pip` 💱 `env/bin/pip` ‎ ⚫ 👷. 👶 + +⚒ 💭 👆 ✔ 📰 🐖 ⏬ 🔛 👆 🕹 🌐 ❎ ❌ 🔛 ⏭ 📶: + +
+ +```console +$ python -m pip install --upgrade pip + +---> 100% +``` + +
+ +!!! tip + 🔠 🕰 👆 ❎ 🆕 📊 ⏮ `pip` 🔜 👈 🌐, 🔓 🌐 🔄. + + 👉 ⚒ 💭 👈 🚥 👆 ⚙ 📶 📋 ❎ 👈 📊, 👆 ⚙ 1⃣ ⚪➡ 👆 🇧🇿 🌐 & 🚫 🙆 🎏 👈 💪 ❎ 🌐. + +### 🐖 + +⏮ 🔓 🌐 🔬 🔛: + +
+ +```console +$ pip install -e ."[dev,doc,test]" + +---> 100% +``` + +
+ +⚫ 🔜 ❎ 🌐 🔗 & 👆 🇧🇿 FastAPI 👆 🇧🇿 🌐. + +#### ⚙ 👆 🇧🇿 FastAPI + +🚥 👆 ✍ 🐍 📁 👈 🗄 & ⚙ FastAPI, & 🏃 ⚫ ⏮ 🐍 ⚪➡ 👆 🇧🇿 🌐, ⚫ 🔜 ⚙ 👆 🇧🇿 FastAPI ℹ 📟. + +& 🚥 👆 ℹ 👈 🇧🇿 FastAPI ℹ 📟, ⚫ ❎ ⏮ `-e`, 🕐❔ 👆 🏃 👈 🐍 📁 🔄, ⚫ 🔜 ⚙ 🍋 ⏬ FastAPI 👆 ✍. + +👈 🌌, 👆 🚫 ✔ "❎" 👆 🇧🇿 ⏬ 💪 💯 🔠 🔀. + +### 📁 + +📀 ✍ 👈 👆 💪 🏃 👈 🔜 📁 & 🧹 🌐 👆 📟: + +
+ +```console +$ bash scripts/format.sh +``` + +
+ +⚫ 🔜 🚘-😇 🌐 👆 🗄. + +⚫ 😇 👫 ☑, 👆 💪 ✔ FastAPI ❎ 🌐 👆 🌐, ⏮ 📋 📄 🔛 ⚙ `-e`. + +## 🩺 + +🥇, ⚒ 💭 👆 ⚒ 🆙 👆 🌐 🔬 🔛, 👈 🔜 ❎ 🌐 📄. + +🧟 ⚙ ⬜. + +& 📀 ➕ 🧰/✍ 🥉 🍵 ✍ `./scripts/docs.py`. + +!!! tip + 👆 🚫 💪 👀 📟 `./scripts/docs.py`, 👆 ⚙ ⚫ 📋 ⏞. + +🌐 🧟 ✍ 📁 📁 `./docs/en/`. + +📚 🔰 ✔ 🍫 📟. + +🌅 💌, 👫 🍫 📟 ☑ 🏁 🈞 👈 💪 🏃. + +👐, 👈 🍫 📟 🚫 ✍ 🔘 ✍, 👫 🐍 📁 `./docs_src/` 📁. + +& 👈 🐍 📁 🔌/💉 🧟 🕐❔ 🏭 🕞. + +### 🩺 💯 + +🏆 💯 🀙 🏃 🛡 🖌 ℹ 📁 🧟. + +👉 ℹ ⚒ 💭 👈: + +* 🧟 🆙 📅. +* 🧟 🖌 💪 🏃. +* 🌅 ⚒ 📔 🧟, 🚚 💯 💰. + +⏮ 🇧🇿 🛠, 📀 ✍ 👈 🏗 🕞 & ✅ 🙆 🔀, 🖖-🔫: + +
+ +```console +$ python ./scripts/docs.py live + +[INFO] Serving on http://127.0.0.1:8008 +[INFO] Start watching changes +[INFO] Start detecting changes +``` + +
+ +⚫ 🔜 🍊 🧟 🔛 `http://127.0.0.1:8008`. + +👈 🌌, 👆 💪 ✍ 🧟/ℹ 📁 & 👀 🔀 🖖. + +#### 🏎 ✳ (📊) + +👩‍🌟 📥 🎊 👆 ❔ ⚙ ✍ `./scripts/docs.py` ⏮ `python` 📋 🔗. + +✋ 👆 💪 ⚙ 🏎 ✳, & 👆 🔜 🀚 ✍ 👆 📶 📋 ⏮ ❎ 🛠. + +🚥 👆 ❎ 🏎 ✳, 👆 💪 ❎ 🛠 ⏮: + +
+ +```console +$ typer --install-completion + +zsh completion installed in /home/user/.bashrc. +Completion will take effect once you restart the terminal. +``` + +
+ +### 📱 & 🩺 🎏 🕰 + +🚥 👆 🏃 🖌 ⏮, ✅: + +
+ +```console +$ uvicorn tutorial001:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +Uvicorn 🔢 🔜 ⚙ ⛮ `8000`, 🧟 🔛 ⛮ `8008` 🏆 🚫 ⚔. + +### ✍ + +ℹ ⏮ ✍ 📶 🌅 👍 ❗ & ⚫ 💪 🚫 🔚 🍵 ℹ ⚪➡ 👪. 👶 👶 + +📥 📶 ℹ ⏮ ✍. + +#### 💁‍♂ & 📄 + +* ✅ ⏳ ♻ 🚲 📚 👆 🇪🇞 & 🚮 📄 ✔ 🔀 ⚖ ✔ 👫. + +!!! tip + 👆 💪 🚮 🏀 ⏮ 🔀 🔑 ♻ 🚲 📚. + + ✅ 🩺 🔃 ❎ 🚲 📚 📄 ✔ ⚫ ⚖ 📚 🔀. + +* ✅ ❔ 👀 🚥 📀 1⃣ 🛠 ✍ 👆 🇪🇞. + +* 🚮 👁 🚲 📚 📍 📃 💬. 👈 🔜 ⚒ ⚫ 🌅 ⏩ 🎏 📄 ⚫. + +🇪🇞 👀 🚫 💬, 👀 🔜 ⌛ 📚 🎏 📄 ✍ ⏭ 🔗. + +* 👆 💪 ✅ 🚥 📀 ✍ 👆 🇪🇞 & 🚮 📄 👫, 👈 🔜 ℹ 👀 💭 👈 ✍ ☑ & 👀 💪 🔗 ⚫. + +* ⚙ 🎏 🐍 🖌 & 🕎 💬 ✍ 🩺. 👆 🚫 ✔ 🔀 🕳 👉 👷. + +* ⚙ 🎏 🖌, 📁 📛, & 🔗. 👆 🚫 ✔ 🔀 🕳 ⚫ 👷. + +* ✅ 2⃣-🔀 📟 🇪🇞 👆 💚 💬 👆 💪 ⚙ 🏓 📇 💟 6⃣3⃣9⃣-1⃣ 📟. + +#### ♻ 🇪🇞 + +➡ 💬 👆 💚 💬 📃 🇪🇞 👈 ⏪ ✔ ✍ 📃, 💖 🇪🇞. + +💌 🇪🇞, 2⃣-🔀 📟 `es`. , 📁 🇪🇞 ✍ 🔎 `docs/es/`. + +!!! tip + 👑 ("🛂") 🇪🇞 🇪🇞, 🔎 `docs/en/`. + +🔜 🏃 🖖 💜 🩺 🇪🇞: + +
+ +```console +// Use the command "live" and pass the language code as a CLI argument +$ python ./scripts/docs.py live es + +[INFO] Serving on http://127.0.0.1:8008 +[INFO] Start watching changes +[INFO] Start detecting changes +``` + +
+ +🔜 👆 💪 🚶 http://127.0.0.1:8008 & 👀 👆 🔀 🖖. + +🚥 👆 👀 FastAPI 🩺 🕞, 👆 🔜 👀 👈 🔠 🇪🇞 ✔ 🌐 📃. ✋ 📃 🚫 💬 & ✔ 📚 🔃 ❌ ✍. + +✋ 🕐❔ 👆 🏃 ⚫ 🌐 💖 👉, 👆 🔜 🕎 👀 📃 👈 ⏪ 💬. + +🔜 ➡ 💬 👈 👆 💚 🚮 ✍ 📄 [⚒](features.md){.internal-link target=_blank}. + +* 📁 📁: + +``` +docs/en/docs/features.md +``` + +* 📋 ⚫ ⚫❔ 🎏 🗺 ✋ 🇪🇞 👆 💚 💬, ✅: + +``` +docs/es/docs/features.md +``` + +!!! tip + 👀 👈 🕎 🔀 ➡ & 📁 📛 🇪🇞 📟, ⚪➡ `en` `es`. + +* 🔜 📂 ⬜ 📁 📁 🇪🇞: + +``` +docs/en/mkdocs.yml +``` + +* 🔎 🥉 🌐❔ 👈 `docs/features.md` 🔎 📁 📁. 👱 💖: + +```YAML hl_lines="8" +site_name: FastAPI +# More stuff +nav: +- FastAPI: index.md +- Languages: + - en: / + - es: /es/ +- features.md +``` + +* 📂 ⬜ 📁 📁 🇪🇞 👆 ✍, ✅: + +``` +docs/es/mkdocs.yml +``` + +* 🚮 ⚫ 📀 ☑ 🎏 🗺 ⚫ 🇪🇞, ✅: + +```YAML hl_lines="8" +site_name: FastAPI +# More stuff +nav: +- FastAPI: index.md +- Languages: + - en: / + - es: /es/ +- features.md +``` + +⚒ 💭 👈 🚥 📀 🎏 ⛔, 🆕 ⛔ ⏮ 👆 ✍ ⚫❔ 🎏 ✔ 🇪🇞 ⏬. + +🚥 👆 🚶 👆 🖥 👆 🔜 👀 👈 🔜 🩺 🎊 👆 🆕 📄. 👶 + +🔜 👆 💪 💬 ⚫ 🌐 & 👀 ❔ ⚫ 👀 👆 🖊 📁. + +#### 🆕 🇪🇞 + +➡ 💬 👈 👆 💚 🚮 ✍ 🇪🇞 👈 🚫 💬, 🚫 📃. + +➡ 💬 👆 💚 🚮 ✍ 🇭🇹, & ⚫ 🚫 📀 🩺. + +✅ 🔗 ⚪➡ 🔛, 📟 "🇭🇹" `ht`. + +⏭ 🔁 🏃 ✍ 🏗 🆕 ✍ 📁: + +
+ +```console +// Use the command new-lang, pass the language code as a CLI argument +$ python ./scripts/docs.py new-lang ht + +Successfully initialized: docs/ht +Updating ht +Updating en +``` + +
+ +🔜 👆 💪 ✅ 👆 📟 👚‍🎚 ⏳ ✍ 📁 `docs/ht/`. + +!!! tip + ✍ 🥇 🚲 📚 ⏮ 👉, ⚒ 🆙 📳 🆕 🇪🇞, ⏭ ❎ ✍. + + 👈 🌌 🎏 💪 ℹ ⏮ 🎏 📃 ⏪ 👆 👷 🔛 🥇 🕐. 👶 + +▶ ✍ 👑 📃, `docs/ht/index.md`. + +‎ 👆 💪 😣 ⏮ ⏮ 👩‍🌟, "♻ 🇪🇞". + +##### 🆕 🇪🇞 🚫 🐕‍🊺 + +🚥 🕐❔ 🏃‍♂ 🖖 💜 ✍ 👆 🀚 ❌ 🔃 🇪🇞 🚫 ➖ 🐕‍🊺, 🕳 💖: + +``` + raise TemplateNotFound(template) +jinja2.exceptions.TemplateNotFound: partials/language/xx.html +``` + +👈 ⛓ 👈 🎢 🚫 🐕‍🊺 👈 🇪🇞 (👉 💌, ⏮ ❌ 2⃣-🔀 📟 `xx`). + +✋ 🚫 😟, 👆 💪 ⚒ 🎢 🇪🇞 🇪🇞 & ‎ 💬 🎚 🩺. + +🚥 👆 💪 👈, ✍ `mkdocs.yml` 👆 🆕 🇪🇞, ⚫ 🔜 ✔ 🕳 💖: + +```YAML hl_lines="5" +site_name: FastAPI +# More stuff +theme: + # More stuff + language: xx +``` + +🔀 👈 🇪🇞 ⚪➡ `xx` (⚪➡ 👆 🇪🇞 📟) `en`. + +‎ 👆 💪 ▶ 🖖 💜 🔄. + +#### 🎮 🏁 + +🕐❔ 👆 ⚙ ✍ `./scripts/docs.py` ⏮ `live` 📋 ⚫ 🕎 🎊 📁 & ✍ 💪 ⏮ 🇪🇞. + +✋ 🕐 👆 🔚, 👆 💪 💯 ⚫ 🌐 ⚫ 🔜 👀 💳. + +👈, 🥇 🏗 🌐 🩺: + +
+ +```console +// Use the command "build-all", this will take a bit +$ python ./scripts/docs.py build-all + +Updating es +Updating en +Building docs for: en +Building docs for: es +Successfully built docs for: es +Copying en index.md to README.md +``` + +
+ +👈 🏗 🌐 🩺 `./docs_build/` 🔠 🇪🇞. 👉 🔌 ❎ 🙆 📁 ⏮ ❌ ✍, ⏮ 🗒 💬 👈 "👉 📁 🚫 ✔ ✍". ✋ 👆 🚫 ✔ 🕳 ⏮ 👈 📁. + +‎ ⚫ 🏗 🌐 👈 🔬 ⬜ 🕞 🔠 🇪🇞, 🌀 👫, & 🏗 🏁 🔢 `./site/`. + +‎ 👆 💪 🍊 👈 ⏮ 📋 `serve`: + +
+ +```console +// Use the command "serve" after running "build-all" +$ python ./scripts/docs.py serve + +Warning: this is a very simple server. For development, use mkdocs serve instead. +This is here only to preview a site with translations already built. +Make sure you run the build-all command first. +Serving at: http://127.0.0.1:8008 +``` + +
+ +## 💯 + +📀 ✍ 👈 👆 💪 🏃 🌐 💯 🌐 📟 & 🏗 💰 📄 🕞: + +
+ +```console +$ bash scripts/test-cov-html.sh +``` + +
+ +👉 📋 🏗 📁 `./htmlcov/`, 🚥 👆 📂 📁 `./htmlcov/index.html` 👆 🖥, 👆 💪 🔬 🖥 🇹🇌 📟 👈 📔 💯, & 👀 🚥 📀 🙆 🇹🇌 ❌. diff --git a/docs/em/docs/deployment/concepts.md b/docs/em/docs/deployment/concepts.md new file mode 100644 index 000000000..8ce775411 --- /dev/null +++ b/docs/em/docs/deployment/concepts.md @@ -0,0 +1,311 @@ +# 🛠 🔧 + +🕐❔ 🛠 **FastAPI** 🈞, ⚖ 🀙, 🙆 🆎 🕞 🛠, 📀 📚 🔧 👈 👆 🎲 💅 🔃, & ⚙ 👫 👆 💪 🔎 **🏆 ☑** 🌌 **🛠 👆 🈞**. + +⚠ 🔧: + +* 💂‍♂ - 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +👥 🔜 👀 ❔ 👫 🔜 📉 **🛠**. + +🔚, 🏆 🎯 💪 **🍊 👆 🛠 👩‍💻** 🌌 👈 **🔐**, **❎ 📉**, & ⚙ **📊 ℹ** (🖌 🛰 💜/🕹 🎰) ♻ 💪. 👶 + +👀 🔜 💬 👆 🍖 🌖 🔃 👫 **🔧** 📥, & 👈 🔜 🀞 🀝 👆 **🀔** 👆 🔜 💪 💭 ❔ 🛠 👆 🛠 📶 🎏 🌐, 🎲 **🔮** 🕐 👈 🚫 🔀. + +🀔 👫 🔧, 👆 🔜 💪 **🔬 & 🔧** 🏆 🌌 🛠 **👆 👍 🔗**. + +⏭ 📃, 👀 🔜 🀝 👆 🌅 **🧱 🍮** 🛠 FastAPI 🈞. + +✋ 🔜, ➡ ✅ 👉 ⚠ **⚛ 💭**. 👫 🔧 ✔ 🙆 🎏 🆎 🕞 🛠. 👶 + +## 💂‍♂ - 🇺🇞🔍 + +[⏮ 📃 🔃 🇺🇞🔍](./https.md){.internal-link target=_blank} 👥 🇭🇲 🔃 ❔ 🇺🇞🔍 🚚 🔐 👆 🛠. + +👥 👀 👈 🇺🇞🔍 🛎 🚚 🊲 **🔢** 👆 🈞 💜, **🀝 ❎ 🗳**. + +& 📀 ✔ 🕳 🈚 **♻ 🇺🇞🔍 📄**, ⚫ 💪 🎏 🊲 ⚖ ⚫ 💪 🕳 🎏. + +### 🖌 🧰 🇺🇞🔍 + +🧰 👆 💪 ⚙ 🀝 ❎ 🗳: + +* Traefik + * 🔁 🍵 📄 🔕 👶 +* 📥 + * 🔁 🍵 📄 🔕 👶 +* 👌 + * ⏮ 🔢 🊲 💖 Certbot 📄 🔕 +* ✳ + * ⏮ 🔢 🊲 💖 Certbot 📄 🔕 +* Kubernete ⏮ 🚧 🕹 💖 👌 + * ⏮ 🔢 🊲 💖 🛂-👚‍💌 📄 🔕 +* 🍵 🔘 ☁ 🐕‍🊺 🍕 👫 🐕‍🊺 (✍ 🔛 👶) + +➕1⃣ 🎛 👈 👆 💪 ⚙ **☁ 🐕‍🊺** 👈 🔚 🌖 👷 ✅ ⚒ 🆙 🇺🇞🔍. ⚫ 💪 ✔ 🚫 ⚖ 🈚 👆 🌅, ♒. ✋ 👈 💌, 👆 🚫🔜 ✔ ⚒ 🆙 🀝 ❎ 🗳 👆. + +👀 🔜 🎊 👆 🧱 🖌 ⏭ 📃. + +--- + +‎ ⏭ 🔧 🀔 🌐 🔃 📋 🏃 👆 ☑ 🛠 (✅ Uvicorn). + +## 📋 & 🛠 + +👥 🔜 💬 📚 🔃 🏃 "**🛠**", ⚫ ⚠ ✔ ☯ 🔃 ⚫❔ ⚫ ⛓, & ⚫❔ 🔺 ⏮ 🔀 "**📋**". + +### ⚫❔ 📋 + +🔀 **📋** 🛎 ⚙ 🔬 📚 👜: + +* **📟** 👈 👆 ✍, **🐍 📁**. +* **📁** 👈 💪 **🛠** 🏃‍♂ ⚙, 🖌: `python`, `python.exe` ⚖ `uvicorn`. +* 🎯 📋 ⏪ ⚫ **🏃‍♂** 🔛 🏗 ⚙, ⚙ 💜, & ♻ 👜 🔛 💟. 👉 🀙 **🛠**. + +### ⚫❔ 🛠 + +🔀 **🛠** 🛎 ⚙ 🌖 🎯 🌌, 🕎 🔗 👜 👈 🏃 🏃‍♂ ⚙ (💖 🏁 ☝ 🔛): + +* 🎯 📋 ⏪ ⚫ **🏃‍♂** 🔛 🏃‍♂ ⚙. + * 👉 🚫 🔗 📁, 🚫 📟, ⚫ 🔗 **🎯** 👜 👈 ➖ **🛠** & 🔄 🏃‍♂ ⚙. +* 🙆 📋, 🙆 📟, **💪 🕎 👜** 🕐❔ ⚫ ➖ **🛠**. , 🕐❔ 📀 **🛠 🏃**. +* 🛠 💪 **❎** (⚖ "💥") 👆, ⚖ 🏃‍♂ ⚙. 👈 ☝, ⚫ ⛔ 🏃/➖ 🛠, & ⚫ 💪 **🙅‍♂ 📏 👜**. +* 🔠 🈞 👈 👆 ✔ 🏃 🔛 👆 💻 ✔ 🛠 ⛅ ⚫, 🔠 🏃‍♂ 📋, 🔠 🚪, ♒. & 📀 🛎 📚 🛠 🏃 **🎏 🕰** ⏪ 💻 🔛. +* 📀 💪 **💗 🛠** **🎏 📋** 🏃 🎏 🕰. + +🚥 👆 ✅ 👅 "📋 👚‍💌" ⚖ "⚙ 🖥" (⚖ 🎏 🧰) 👆 🏃‍♂ ⚙, 👆 🔜 💪 👀 📚 👈 🛠 🏃‍♂. + +& , 🖌, 👆 🔜 🎲 👀 👈 📀 💗 🛠 🏃 🎏 🖥 📋 (🊎, 💄, 📐, ♒). 👫 🛎 🏃 1⃣ 🛠 📍 📑, ➕ 🎏 ➕ 🛠. + + + +--- + +🔜 👈 👥 💭 🔺 🖖 ⚖ **🛠** & **📋**, ➡ 😣 💬 🔃 🛠. + +## 🏃‍♂ 🔛 🕎 + +🌅 💌, 🕐❔ 👆 ✍ 🕞 🛠, 👆 💚 ⚫ **🕧 🏃‍♂**, ➡, 👈 👆 👩‍💻 💪 🕧 🔐 ⚫. 👉 ↗, 🚥 👆 ✔ 🎯 🀔 ⚫❔ 👆 💚 ⚫ 🏃 🕎 🎯 ⚠, ✋ 🌅 🕰 👆 💚 ⚫ 🕧 🏃‍♂ & **💪**. + +### 🛰 💜 + +🕐❔ 👆 ⚒ 🆙 🛰 💜 (☁ 💜, 🕹 🎰, ♒.) 🙅 👜 👆 💪 🏃 Uvicorn (⚖ 🎏) ❎, 🎏 🌌 👆 🕐❔ 🛠 🌐. + +& ⚫ 🔜 👷 & 🔜 ⚠ **⏮ 🛠**. + +✋ 🚥 👆 🔗 💜 💞, **🏃‍♂ 🛠** 🔜 🎲 ☠. + +& 🚥 💜 ⏏ (🖌 ⏮ ℹ, ⚖ 🛠 ⚪➡ ☁ 🐕‍🊺) 👆 🎲 **🏆 🚫 👀 ⚫**. & ↩ 👈, 👆 🏆 🚫 💭 👈 👆 ✔ ⏏ 🛠 ❎. , 👆 🛠 🔜 🚧 ☠. 👶 + +### 🏃 🔁 🔛 🕎 + +🏢, 👆 🔜 🎲 💚 💜 📋 (✅ Uvicorn) ▶ 🔁 🔛 💜 🕎, & 🍵 💪 🙆 **🗿 🏥**, ✔ 🛠 🕧 🏃 ⏮ 👆 🛠 (✅ Uvicorn 🏃‍♂ 👆 FastAPI 📱). + +### 🎏 📋 + +🏆 👉, 👆 🔜 🛎 ✔ **🎏 📋** 👈 🔜 ⚒ 💭 👆 🈞 🏃 🔛 🕎. & 📚 💌, ⚫ 🔜 ⚒ 💭 🎏 🊲 ⚖ 🈞 🏃, 🖌, 💜. + +### 🖌 🧰 🏃 🕎 + +🖌 🧰 👈 💪 👉 👚‍🏭: + +* ☁ +* Kubernete +* ☁ ✍ +* ☁ 🐝 📳 +* ✳ +* 👚‍💻 +* 🍵 🔘 ☁ 🐕‍🊺 🍕 👫 🐕‍🊺 +* 🎏... + +👀 🔜 🀝 👆 🌅 🧱 🖌 ⏭ 📃. + +## ⏏ + +🎏 ⚒ 💭 👆 🈞 🏃 🔛 🕎, 👆 🎲 💚 ⚒ 💭 ⚫ **⏏** ⏮ ❌. + +### 👥 ⚒ ❌ + +👥, 🗿, ⚒ **❌**, 🌐 🕰. 🖥 🌖 *🕧* ✔ **🐛** 🕵‍♂ 🎏 🥉. 👶 + +& 👥 👩‍💻 🚧 📉 📟 👥 🔎 👈 🐛 & 👥 🛠 🆕 ⚒ (🎲 ❎ 🆕 🐛 💁‍♂ 👶). + +### 🀪 ❌ 🔁 🍵 + +🕐❔ 🏗 🕞 🔗 ⏮ FastAPI, 🚥 📀 ❌ 👆 📟, FastAPI 🔜 🛎 🔌 ⚫ 👁 📚 👈 ⏲ ❌. 🛡 + +👩‍💻 🔜 🀚 **5⃣0⃣0⃣ 🔗 💜 ❌** 👈 📚, ✋ 🈞 🔜 😣 👷 ⏭ 📚 ↩ 💥 🍕. + +### 🊏 ❌ - 💥 + +👐, 📀 5⃣📆 💌 🌐❔ 👥 ✍ 📟 👈 **💥 🎂 🈞** ⚒ Uvicorn & 🐍 💥. 👶 + +& , 👆 🔜 🎲 🚫 💚 🈞 🚧 ☠ ↩ 📀 ❌ 1⃣ 🥉, 👆 🎲 💚 ⚫ **😣 🏃** 🌘 *➡ 🛠* 👈 🚫 💔. + +### ⏏ ⏮ 💥 + +✋ 👈 💌 ⏮ 🀙 👎 ❌ 👈 💥 🏃‍♂ **🛠**, 👆 🔜 💚 🔢 🊲 👈 🈚 **🔁** 🛠, 🌘 👩‍❀‍👚 🕰... + +!!! tip + ...👐 🚥 🎂 🈞 **💥 ⏪** ⚫ 🎲 🚫 ⚒ 🔑 🚧 🔁 ⚫ ♟. ✋ 📚 💌, 👆 🔜 🎲 👀 ⚫ ⏮ 🛠, ⚖ 🌘 ▶ ⏮ 🛠. + + ➡ 🎯 🔛 👑 💌, 🌐❔ ⚫ 💪 💥 🍕 🎯 💌 **🔮**, & ⚫ ⚒ 🔑 ⏏ ⚫. + +👆 🔜 🎲 💚 ✔ 👜 🈚 🔁 👆 🈞 **🔢 🊲**, ↩ 👈 ☝, 🎏 🈞 ⏮ Uvicorn & 🐍 ⏪ 💥, 📀 🕳 🎏 📟 🎏 📱 👈 💪 🕳 🔃 ⚫. + +### 🖌 🧰 ⏏ 🔁 + +🏆 💌, 🎏 🧰 👈 ⚙ **🏃 📋 🔛 🕎** ⚙ 🍵 🏧 **⏏**. + +🖌, 👉 💪 🍵: + +* ☁ +* Kubernete +* ☁ ✍ +* ☁ 🐝 📳 +* ✳ +* 👚‍💻 +* 🍵 🔘 ☁ 🐕‍🊺 🍕 👫 🐕‍🊺 +* 🎏... + +## 🧬 - 🛠 & 💟 + +⏮ FastAPI 🈞, ⚙ 💜 📋 💖 Uvicorn, 🏃‍♂ ⚫ 🕐 **1⃣ 🛠** 💪 🍊 💗 👩‍💻 🔁. + +✋ 📚 💌, 👆 🔜 💚 🏃 📚 👚‍🏭 🛠 🎏 🕰. + +### 💗 🛠 - 👚‍🏭 + +🚥 👆 ✔ 🌅 👩‍💻 🌘 ⚫❔ 👁 🛠 💪 🍵 (🖌 🚥 🕹 🎰 🚫 💁‍♂ 🊏) & 👆 ✔ **💗 🐚** 💜 💜, ‎ 👆 💪 ✔ **💗 🛠** 🏃‍♂ ⏮ 🎏 🈞 🎏 🕰, & 📎 🌐 📚 👪 👫. + +🕐❔ 👆 🏃 **💗 🛠** 🎏 🛠 📋, 👫 🛎 🀙 **👚‍🏭**. + +### 👚‍🏭 🛠 & ⛮ + +💭 ⚪➡ 🩺 [🔃 🇺🇞🔍](./https.md){.internal-link target=_blank} 👈 🕎 1⃣ 🛠 💪 👂 🔛 1⃣ 🌀 ⛮ & 📢 📢 💜 ❓ + +👉 ☑. + +, 💪 ✔ **💗 🛠** 🎏 🕰, 📀 ✔ **👁 🛠 👂 🔛 ⛮** 👈 ‎ 📶 📻 🔠 👚‍🏭 🛠 🌌. + +### 💟 📍 🛠 + +🔜, 🕐❔ 📋 📐 👜 💟, 🖌, 🎰 🏫 🏷 🔢, ⚖ 🎚 ⭕ 📁 🔢, 🌐 👈 **🍎 👄 💟 (💟)** 💜. + +& 💗 🛠 🛎 **🚫 💰 🙆 💟**. 👉 ⛓ 👈 🔠 🏃 🛠 ✔ 🚮 👍 👜, 🔢, & 💟. & 🚥 👆 😩 ⭕ 💞 💟 👆 📟, **🔠 🛠** 🔜 🍎 🌓 💞 💟. + +### 💜 💟 + +🖌, 🚥 👆 📟 📐 🎰 🏫 🏷 ⏮ **1⃣ 💟 📐**, 🕐❔ 👆 🏃 1⃣ 🛠 ⏮ 👆 🛠, ⚫ 🔜 🍎 🌘 1⃣ 💟 💟. & 🚥 👆 ▶ **4⃣ 🛠** (4⃣ 👚‍🏭), 🔠 🔜 🍎 1⃣ 💟 💟. 🌐, 👆 🛠 🔜 🍎 **4⃣ 💟 💟**. + +& 🚥 👆 🛰 💜 ⚖ 🕹 🎰 🕎 ✔ 3⃣ 💟 💟, 🔄 📐 🌅 🌘 4⃣ 💟 💟 🔜 🀕 ⚠. 👶 + +### 💗 🛠 - 🖌 + +👉 🖌, 📀 **👚‍💌 🛠** 👈 ▶ & 🎛 2⃣ **👚‍🏭 🛠**. + +👉 👚‍💌 🛠 🔜 🎲 1⃣ 👂 🔛 **⛮** 📢. & ⚫ 🔜 📶 🌐 📻 👚‍🏭 🛠. + +👈 👚‍🏭 🛠 🔜 🕐 🏃‍♂ 👆 🈞, 👫 🔜 🎭 👑 📊 📚 **📚** & 📚 **📚**, & 👫 🔜 📐 🕳 👆 🚮 🔢 💟. + + + +& ↗, 🎏 🎰 🔜 🎲 ✔ **🎏 🛠** 🏃 👍, ↖ ⚪➡ 👆 🈞. + +😌 ℹ 👈 🌐 **💜 ⚙** 🔠 🛠 💪 **🪀** 📚 🀭 🕰, ✋ **💟 (💟)** 🛎 🚧 🌖 ⚖ 🌘 **⚖**. + +🚥 👆 ✔ 🛠 👈 🔚 ⭐ 💞 📊 🔠 🕰 & 👆 ✔ 📚 👩‍💻, ‎ **💜 🛠** 🔜 🎲 *⚖* (↩ 🕧 🔜 🆙 & 🔜 🔜). + +### 🖌 🧬 🧰 & 🎛 + +📀 💪 📚 🎯 🏆 👉, & 👀 🔜 💬 👆 🌅 🔃 🎯 🎛 ⏭ 📃, 🖌 🕐❔ 💬 🔃 ☁ & 📊. + +👑 ⚛ 🀔 👈 📀 ✔ **👁** 🊲 🚚 **⛮** **📢 📢**. & ‎ ⚫ ✔ ✔ 🌌 **📶** 📻 🔁 **🛠/👚‍🏭**. + +📥 💪 🌀 & 🎛: + +* **🐁** 🛠 **Uvicorn 👚‍🏭** + * 🐁 🔜 **🛠 👚‍💌** 👂 🔛 **📢** & **⛮**, 🧬 🔜 ✔ **💗 Uvicorn 👚‍🏭 🛠** +* **Uvicorn** 🛠 **Uvicorn 👚‍🏭** + * 1⃣ Uvicorn **🛠 👚‍💌** 🔜 👂 🔛 **📢** & **⛮**, & ⚫ 🔜 ▶ **💗 Uvicorn 👚‍🏭 🛠** +* **Kubernete** & 🎏 📎 **📊 ⚙** + * 🕳 **☁** 🧜 🔜 👂 🔛 **📢** & **⛮**. 🧬 🔜 ✔ **💗 📊**, 🔠 ⏮ **1⃣ Uvicorn 🛠** 🏃‍♂ +* **☁ 🐕‍🊺** 👈 🍵 👉 👆 + * ☁ 🐕‍🊺 🔜 🎲 **🍵 🧬 👆**. ⚫ 🔜 🎲 ➡ 👆 🔬 **🛠 🏃**, ⚖ **📊 🖌** ⚙, 🙆 💌, ⚫ 🔜 🌅 🎲 **👁 Uvicorn 🛠**, & ☁ 🐕‍🊺 🔜 🈚 🔁 ⚫. + +!!! tip + 🚫 😟 🚥 👫 🏬 🔃 **📊**, ☁, ⚖ Kubernete 🚫 ⚒ 📚 🔑. + + 👀 🔜 💬 👆 🌅 🔃 📊 🖌, ☁, Kubernete, ♒. 🔮 📃: [FastAPI 📊 - ☁](./docker.md){.internal-link target=_blank}. + +## ⏮ 🔁 ⏭ ▶ + +📀 📚 💌 🌐❔ 👆 💚 🎭 📶 **⏭ ▶** 👆 🈞. + +🖌, 👆 💪 💚 🏃 **💜 🛠**. + +✋ 🌅 💌, 👆 🔜 💚 🎭 👉 🔁 🕎 **🕐**. + +, 👆 🔜 💚 ✔ **👁 🛠** 🎭 👈 **⏮ 🔁**, ⏭ ▶ 🈞. + +& 👆 🔜 ✔ ⚒ 💭 👈 ⚫ 👁 🛠 🏃 👈 ⏮ 🔁 ** 🚥 ⏮, 👆 ▶ **💗 🛠** (💗 👚‍🏭) 🈞 ⚫. 🚥 👈 🔁 🏃 **💗 🛠**, 👫 🔜 **❎** 👷 🏃‍♂ ⚫ 🔛 **🔗**, & 🚥 📶 🕳 💎 💖 💜 🛠, 👫 💪 🀕 ⚔ ⏮ 🔠 🎏. + +↗, 📀 💌 🌐❔ 📀 🙅‍♂ ⚠ 🏃 ⏮ 🔁 💗 🕰, 👈 💌, ⚫ 📚 ⏩ 🍵. + +!!! tip + , ✔ 🀯 👈 ⚓ 🔛 👆 🖥, 💌 👆 **5⃣📆 🚫 💪 🙆 ⏮ 🔁** ⏭ ▶ 👆 🈞. + + 👈 💌, 👆 🚫🔜 ✔ 😟 🔃 🙆 👉. 🀷 + +### 🖌 ⏮ 🔁 🎛 + +👉 🔜 **🪀 🙇** 🔛 🌌 👆 **🛠 👆 ⚙**, & ⚫ 🔜 🎲 🔗 🌌 👆 ▶ 📋, 🚚 ⏏, ♒. + +📥 💪 💭: + +* "🕑 📊" Kubernete 👈 🏃 ⏭ 👆 📱 📊 +* 🎉 ✍ 👈 🏃 ⏮ 🔁 & ‎ ▶ 👆 🈞 + * 👆 🔜 💪 🌌 ▶/⏏ *👈* 🎉 ✍, 🔍 ❌, ♒. + +!!! tip + 👀 🔜 🀝 👆 🌅 🧱 🖌 🔚 👉 ⏮ 📊 🔮 📃: [FastAPI 📊 - ☁](./docker.md){.internal-link target=_blank}. + +## ℹ 🛠 + +👆 💜(Ⓜ) () **ℹ**, 👆 💪 🍎 ⚖ **⚙**, ⏮ 👆 📋, 📊 🕰 🔛 💜, & 💟 💟 💪. + +❔ 🌅 ⚙ ℹ 👆 💚 😩/♻ ❓ ⚫ 💪 ⏩ 💭 "🚫 🌅", ✋ 🌌, 👆 🔜 🎲 💚 🍎 **🌅 💪 🍵 💥**. + +🚥 👆 💞 3⃣ 💜 ✋ 👆 ⚙ 🕎 🐥 🍖 👫 💟 & 💜, 👆 🎲 **🗑 💞** 👶, & 🎲 **🗑 💜 🔊 🏋** 👶, ♒. + +👈 💌, ⚫ 💪 👻 ✔ 🕎 2⃣ 💜 & ⚙ ↕ 🌐 👫 ℹ (💜, 💟, 💟, 🕞 💿, ♒). + +🔛 🎏 ✋, 🚥 👆 ✔ 2⃣ 💜 & 👆 ⚙ **1⃣0⃣0⃣ 💯 👫 💜 & 💟**, ☝ 1⃣ 🛠 🔜 💭 🌅 💟, & 💜 🔜 ✔ ⚙ 💟 "💟" (❔ 💪 💯 🕰 🐌), ⚖ **💥**. ⚖ 1⃣ 🛠 💪 💪 📊 & 🔜 ✔ ⌛ ⏭ 💜 🆓 🔄. + +👉 💌, ⚫ 🔜 👍 🀚 **1⃣ ➕ 💜** & 🏃 🛠 🔛 ⚫ 👈 👫 🌐 ✔ **🥃 💟 & 💜 🕰**. + +📀 🀞 👈 🀔 👆 ✔ **🌵** ⚙ 👆 🛠. 🎲 ⚫ 🚶 🊠, ⚖ 🎲 🎏 🐕‍🊺 ⚖ 🀖 ▶ ⚙ ⚫. & 👆 💪 💚 ✔ ➕ ℹ 🔒 👈 💌. + +👆 💪 🚮 **❌ 🔢** 🎯, 🖌, 🕳 **🖖 5⃣0⃣ 💯 9⃣0⃣ 💯** ℹ 🛠. ☝ 👈 📚 🎲 👑 👜 👆 🔜 💚 ⚖ & ⚙ ⚒ 👆 🛠. + +👆 💪 ⚙ 🙅 🧰 💖 `htop` 👀 💜 & 💟 ⚙ 👆 💜 ⚖ 💞 ⚙ 🔠 🛠. ⚖ 👆 💪 ⚙ 🌖 🏗 ⚖ 🧰, ❔ 5⃣📆 📎 🀭 💜, ♒. + +## 🌃 + +👆 ✔ 👂 📥 👑 🔧 👈 👆 🔜 🎲 💪 ✔ 🀯 🕐❔ 🀔 ❔ 🛠 👆 🈞: + +* 💂‍♂ - 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +🀔 👉 💭 & ❔ ✔ 👫 🔜 🀝 👆 🀔 💪 ✊ 🙆 🚫 🕐❔ 🛠 & 🛠 👆 🛠. 👶 + +⏭ 📄, 👀 🔜 🀝 👆 🌅 🧱 🖌 💪 🎛 👆 💪 ⏩. 👶 diff --git a/docs/em/docs/deployment/deta.md b/docs/em/docs/deployment/deta.md new file mode 100644 index 000000000..89b6c4bdb --- /dev/null +++ b/docs/em/docs/deployment/deta.md @@ -0,0 +1,258 @@ +# 🛠 FastAPI 🔛 🪔 + +👉 📄 👆 🔜 💡 ❔ 💪 🛠 **FastAPI** 🈞 🔛 🪔 ⚙ 🆓 📄. 👶 + +⚫ 🔜 ✊ 👆 🔃 **1⃣0⃣ ⏲**. + +!!! info + 🪔 **FastAPI** 💰. 👶 + +## 🔰 **FastAPI** 📱 + +* ✍ 📁 👆 📱, 🖌, `./fastapideta/` & ⛔ 🔘 ⚫. + +### FastAPI 📟 + +* ✍ `main.py` 📁 ⏮: + +```Python +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int): + return {"item_id": item_id} +``` + +### 📄 + +🔜, 🎏 📁 ✍ 📁 `requirements.txt` ⏮: + +```text +fastapi +``` + +!!! tip + 👆 🚫 💪 ❎ Uvicorn 🛠 🔛 🪔, 👐 👆 🔜 🎲 💚 ❎ ⚫ 🌐 💯 👆 📱. + +### 📁 📊 + +👆 🔜 🔜 ✔ 1⃣ 📁 `./fastapideta/` ⏮ 2⃣ 📁: + +``` +. +└── main.py +└── requirements.txt +``` + +## ✍ 🆓 🪔 🏧 + +🔜 ✍ 🆓 🏧 🔛 🪔, 👆 💪 📧 & 🔐. + +👆 🚫 💪 💳. + +## ❎ ✳ + +🕐 👆 ✔ 👆 🏧, ❎ 🪔 ✳: + +=== "💟, 🇞🇻" + +
+ + ```console + $ curl -fsSL https://get.deta.dev/cli.sh | sh + ``` + +
+ +=== "🚪 📋" + +
+ + ```console + $ iwr https://get.deta.dev/cli.ps1 -useb | iex + ``` + +
+ +⏮ ❎ ⚫, 📂 🆕 📶 👈 ❎ ✳ 🔍. + +🆕 📶, ✔ 👈 ⚫ ☑ ❎ ⏮: + +
+ +```console +$ deta --help + +Deta command line interface for managing deta micros. +Complete documentation available at https://docs.deta.sh + +Usage: + deta [flags] + deta [command] + +Available Commands: + auth Change auth settings for a deta micro + +... +``` + +
+ +!!! tip + 🚥 👆 ✔ ⚠ ❎ ✳, ✅ 🛂 🪔 🩺. + +## 💳 ⏮ ✳ + +🔜 💳 🪔 ⚪➡ ✳ ⏮: + +
+ +```console +$ deta login + +Please, log in from the web page. Waiting.. +Logged in successfully. +``` + +
+ +👉 🔜 📂 🕞 🖥 & 🔓 🔁. + +## 🛠 ⏮ 🪔 + +⏭, 🛠 👆 🈞 ⏮ 🪔 ✳: + +
+ +```console +$ deta new + +Successfully created a new micro + +// Notice the "endpoint" 🔍 + +{ + "name": "fastapideta", + "runtime": "python3.7", + "endpoint": "https://qltnci.deta.dev", + "visor": "enabled", + "http_auth": "enabled" +} + +Adding dependencies... + + +---> 100% + + +Successfully installed fastapi-0.61.1 pydantic-1.7.2 starlette-0.13.6 +``` + +
+ +👆 🔜 👀 🎻 📧 🎏: + +```JSON hl_lines="4" +{ + "name": "fastapideta", + "runtime": "python3.7", + "endpoint": "https://qltnci.deta.dev", + "visor": "enabled", + "http_auth": "enabled" +} +``` + +!!! tip + 👆 🛠 🔜 ✔ 🎏 `"endpoint"` 📛. + +## ✅ ⚫ + +🔜 📂 👆 🖥 👆 `endpoint` 📛. 🖌 🔛 ⚫ `https://qltnci.deta.dev`, ✋ 👆 🔜 🎏. + +👆 🔜 👀 🎻 📚 ⚪➡ 👆 FastAPI 📱: + +```JSON +{ + "Hello": "World" +} +``` + +& 🔜 🚶 `/docs` 👆 🛠, 🖌 🔛 ⚫ 🔜 `https://qltnci.deta.dev/docs`. + +⚫ 🔜 🎊 👆 🩺 💖: + + + +## 🛠 📢 🔐 + +🔢, 🪔 🔜 🍵 🀝 ⚙ 🍪 👆 🏧. + +✋ 🕐 👆 🔜, 👆 💪 ⚒ ⚫ 📢 ⏮: + +
+ +```console +$ deta auth disable + +Successfully disabled http auth +``` + +
+ +🔜 👆 💪 💰 👈 📛 ⏮ 🙆 & 👫 🔜 💪 🔐 👆 🛠. 👶 + +## 🇺🇞🔍 + +㊗ ❗ 👆 🛠 👆 FastAPI 📱 🪔 ❗ 👶 👶 + +, 👀 👈 🪔 ☑ 🍵 🇺🇞🔍 👆, 👆 🚫 ✔ ✊ 💅 👈 & 💪 💭 👈 👆 👩‍💻 🔜 ✔ 🔐 🗜 🔗. 👶 👶 + +## ✅ 🕶 + +⚪➡ 👆 🩺 🎚 (👫 🔜 📛 💖 `https://qltnci.deta.dev/docs`) 📚 📚 👆 *➡ 🛠* `/items/{item_id}`. + +🖌 ⏮ 🆔 `5`. + +🔜 🚶 https://web.deta.sh. + +👆 🔜 👀 📀 📄 ◀ 🀙 "â—Ÿ" ⏮ 🔠 👆 📱. + +👆 🔜 👀 📑 ⏮ "ℹ", & 📑 "🕶", 🚶 📑 "🕶". + +📀 👆 💪 ✔ ⏮ 📚 📚 👆 📱. + +👆 💪 ✍ 👫 & 🏀-🀟 👫. + + + +## 💡 🌅 + +☝, 👆 🔜 🎲 💚 🏪 💜 👆 📱 🌌 👈 😣 🔘 🕰. 👈 👆 💪 ⚙ 🪔 🧢, ⚫ ✔ 👍 **🆓 🎚**. + +👆 💪 ✍ 🌅 🪔 🩺. + +## 🛠 🔧 + +👟 🔙 🔧 👥 🔬 [🛠 🔧](./concepts.md){.internal-link target=_blank}, 📥 ❔ 🔠 👫 🔜 🍵 ⏮ 🪔: + +* **🇺🇞🔍**: 🍵 🪔, 👫 🔜 🀝 👆 📁 & 🍵 🇺🇞🔍 🔁. +* **🏃‍♂ 🔛 🕎**: 🍵 🪔, 🍕 👫 🐕‍🊺. +* **⏏**: 🍵 🪔, 🍕 👫 🐕‍🊺. +* **🧬**: 🍵 🪔, 🍕 👫 🐕‍🊺. +* **💟**: 📉 🔁 🪔, 👆 💪 📧 👫 📈 ⚫. +* **⏮ 🔁 ⏭ ▶**: 🚫 🔗 🐕‍🊺, 👆 💪 ⚒ ⚫ 👷 ⏮ 👫 💟 ⚙ ⚖ 🌖 ✍. + +!!! note + 🪔 🔧 ⚒ ⚫ ⏩ (& 🆓) 🛠 🙅 🈞 🔜. + + ⚫ 💪 📉 📚 ⚙ 💌, ✋ 🎏 🕰, ⚫ 🚫 🐕‍🊺 🎏, 💖 ⚙ 🔢 💜 (↖ ⚪➡ 🪔 👍 ☁ 💜 ⚙), 🛃 🕹 🎰, ♒. + + 👆 💪 ✍ 🌅 ℹ 🪔 🩺 👀 🚥 ⚫ ▶ ⚒ 👆. diff --git a/docs/em/docs/deployment/docker.md b/docs/em/docs/deployment/docker.md new file mode 100644 index 000000000..51ece5599 --- /dev/null +++ b/docs/em/docs/deployment/docker.md @@ -0,0 +1,698 @@ +# FastAPI 📊 - ☁ + +🕐❔ 🛠 FastAPI 🈞 ⚠ 🎯 🏗 **💟 📊 🖌**. ⚫ 🛎 🔚 ⚙ **☁**. 👆 💪 ‎ 🛠 👈 📊 🖌 1⃣ 👩‍❀‍👚 💪 🌌. + +⚙ 💟 📊 ✔ 📚 📈 ✅ **💂‍♂**, **🔬**, **🊁**, & 🎏. + +!!! tip + 🏃 & ⏪ 💭 👉 💩 ❓ 🊘 [`Dockerfile` 🔛 👶](#build-a-docker-image-for-fastapi). + +
+📁 🎮 👶 + +```Dockerfile +FROM python:3.9 + +WORKDIR /code + +COPY ./requirements.txt /code/requirements.txt + +RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt + +COPY ./app /code/app + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] + +# If running behind a proxy like Nginx or Traefik add --proxy-headers +# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"] +``` + +
+ +## ⚫❔ 📊 + +📊 (✎ 💟 📊) 📶 **💿** 🌌 📊 🈞 ✅ 🌐 👫 🔗 & 💪 📁 ⏪ 🚧 👫 ❎ ⚪➡ 🎏 📊 (🎏 🈞 ⚖ 🊲) 🎏 ⚙. + +💟 📊 🏃 ⚙ 🎏 💟 💟 🊠 (🎰, 🕹 🎰, ☁ 💜, ♒). 👉 ⛓ 👈 👫 📶 💿 (🔬 🌕 🕹 🎰 👍 🎂 🏃‍♂ ⚙). + +👉 🌌, 📊 🍎 **🐥 ℹ**, 💞 ⭐ 🏃‍♂ 🛠 🔗 (🕹 🎰 🔜 🍎 🌅 🌅). + +📊 ✔ 👫 👍 **❎** 🏃‍♂ 🛠 (🛎 1⃣ 🛠), 📁 ⚙, & 🕞, 🔬 🛠, 💂‍♂, 🛠, ♒. + +## ⚫❔ 📊 🖌 + +**📊** 🏃 ⚪➡ **📊 🖌**. + +📊 🖌 **🎻** ⏬ 🌐 📁, 🌐 🔢, & 🔢 📋/📋 👈 🔜 🎁 📊. **🎻** 📥 ⛓ 👈 📊 **🖌** 🚫 🏃, ⚫ 🚫 ➖ 🛠, ⚫ 🕎 📊 📁 & 🗃. + +🔅 "**📊 🖌**" 👈 🏪 🎻 🎚,"**📊**" 🛎 🔗 🏃‍♂ 👐, 👜 👈 ➖ **🛠**. + +🕐❔ **📊** ▶ & 🏃‍♂ (▶ ⚪➡ **📊 🖌**) ⚫ 💪 ✍ ⚖ 🔀 📁, 🌐 🔢, ♒. 👈 🔀 🔜 🔀 🕎 👈 📊, ✋ 🔜 🚫 😣 👜 📊 🖌 (🔜 🚫 🖊 💟). + +📊 🖌 ⭐ **📋** 📁 & 🎚, ✅ `python` & 📁 `main.py`. + +& **📊** ⚫ (🔅 **📊 🖌**) ☑ 🏃 👐 🖌, ⭐ **🛠**. 👐, 📊 🏃 🕎 🕐❔ ⚫ ✔ **🛠 🏃** (& 🛎 ⚫ 🕎 👁 🛠). 📊 ⛔ 🕐❔ 📀 🙅‍♂ 🛠 🏃 ⚫. + +## 📊 🖌 + +☁ ✔ 1⃣ 👑 🧰 ✍ & 🛠 **📊 🖌** & **📊**. + +& 📀 📢 ☁ 🎡 ⏮ 🏀-⚒ **🛂 📊 🖌** 📚 🧰, 🌐, 💜, & 🈞. + +🖌, 📀 🛂 🐍 🖌. + +& 📀 📚 🎏 🖌 🎏 👜 💖 💜, 🖌: + +* ✳ +* ✳ +* ✳ +* ✳, ♒. + +⚙ 🏀-⚒ 📊 🖌 ⚫ 📶 ⏩ **🌀** & ⚙ 🎏 🧰. 🖌, 🔄 👅 🆕 💜. 🌅 💌, 👆 💪 ⚙ **🛂 🖌**, & 🔗 👫 ⏮ 🌐 🔢. + +👈 🌌, 📚 💌 👆 💪 💡 🔃 📊 & ☁ & 🏀-⚙ 👈 💡 ⏮ 📚 🎏 🧰 & 🊲. + +, 👆 🔜 🏃 **💗 📊** ⏮ 🎏 👜, 💖 💜, 🐍 🈞, 🕞 💜 ⏮ 😥 🕞 🈞, & 🔗 👫 👯‍♂ 📚 👫 🔗 🕞. + +🌐 📊 🧟 ⚙ (💖 ☁ ⚖ Kubernete) ✔ 👫 🕞 ⚒ 🛠 🔘 👫. + +## 📊 & 🛠 + +**📊 🖌** 🛎 🔌 🚮 🗃 🔢 📋 ⚖ 📋 👈 🔜 🏃 🕐❔ **📊** ▶ & 🔢 🚶‍♀ 👈 📋. 📶 🎏 ⚫❔ 🔜 🚥 ⚫ 📋 ⏞. + +🕐❔ **📊** ▶, ⚫ 🔜 🏃 👈 📋/📋 (👐 👆 💪 🔐 ⚫ & ⚒ ⚫ 🏃 🎏 📋/📋). + +📊 🏃 📏 **👑 🛠** (📋 ⚖ 📋) 🏃. + +📊 🛎 ✔ **👁 🛠**, ✋ ⚫ 💪 ▶ ✳ ⚪➡ 👑 🛠, & 👈 🌌 👆 🔜 ✔ **💗 🛠** 🎏 📊. + +✋ ⚫ 🚫 💪 ✔ 🏃‍♂ 📊 🍵 **🌘 1⃣ 🏃‍♂ 🛠**. 🚥 👑 🛠 ⛔, 📊 ⛔. + +## 🏗 ☁ 🖌 FastAPI + +🆗, ➡ 🏗 🕳 🔜 ❗ 👶 + +👀 🔜 🎊 👆 ❔ 🏗 **☁ 🖌** FastAPI **⚪➡ 🖌**, ⚓ 🔛 **🛂 🐍** 🖌. + +👉 ⚫❔ 👆 🔜 💚 **🏆 💌**, 🖌: + +* ⚙ **Kubernete** ⚖ 🎏 🧰 +* 🕐❔ 🏃‍♂ 🔛 **🍓 👲** +* ⚙ ☁ 🐕‍🊺 👈 🔜 🏃 📊 🖌 👆, ♒. + +### 📊 📄 + +👆 🔜 🛎 ✔ **📊 📄** 👆 🈞 📁. + +⚫ 🔜 🪀 ✎ 🔛 🧰 👆 ⚙ **❎** 👈 📄. + +🌅 ⚠ 🌌 ⚫ ✔ 📁 `requirements.txt` ⏮ 📊 📛 & 👫 ⏬, 1⃣ 📍 ⏞. + +👆 🔜 ↗ ⚙ 🎏 💭 👆 ✍ [🔃 FastAPI ⏬](./versions.md){.internal-link target=_blank} ⚒ ↔ ⏬. + +🖌, 👆 `requirements.txt` 💪 👀 💖: + +``` +fastapi>=0.68.0,<0.69.0 +pydantic>=1.8.0,<2.0.0 +uvicorn>=0.15.0,<0.16.0 +``` + +& 👆 🔜 🛎 ❎ 👈 📊 🔗 ⏮ `pip`, 🖌: + +
+ +```console +$ pip install -r requirements.txt +---> 100% +Successfully installed fastapi pydantic uvicorn +``` + +
+ +!!! info + 📀 🎏 📁 & 🧰 🔬 & ❎ 📊 🔗. + + 👀 🔜 🎊 👆 🖌 ⚙ 🎶 ⏪ 📄 🔛. 👶 + +### ✍ **FastAPI** 📟 + +* ✍ `app` 📁 & ⛔ ⚫. +* ✍ 🛁 📁 `__init__.py`. +* ✍ `main.py` 📁 ⏮: + +```Python +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} +``` + +### 📁 + +🔜 🎏 🏗 📁 ✍ 📁 `Dockerfile` ⏮: + +```{ .dockerfile .annotate } +# (1) +FROM python:3.9 + +# (2) +WORKDIR /code + +# (3) +COPY ./requirements.txt /code/requirements.txt + +# (4) +RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt + +# (5) +COPY ./app /code/app + +# (6) +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] +``` + +1⃣. ▶ ⚪➡ 🛂 🐍 🧢 🖌. + +2⃣. ⚒ ⏮ 👷 📁 `/code`. + + 👉 🌐❔ 👥 🔜 🚮 `requirements.txt` 📁 & `app` 📁. + +3⃣. 📁 📁 ⏮ 📄 `/code` 📁. + + 📁 **🕎** 📁 ⏮ 📄 🥇, 🚫 🎂 📟. + + 👉 📁 **🚫 🔀 🛎**, ☁ 🔜 🔍 ⚫ & ⚙ **💟** 👉 🔁, 🛠 💟 ⏭ 🔁 💁‍♂. + +4⃣. ❎ 📊 🔗 📄 📁. + + `--no-cache-dir` 🎛 💬 `pip` 🚫 🖊 ⏬ 📊 🌐, 👈 🕎 🚥 `pip` 🔜 🏃 🔄 ❎ 🎏 📊, ✋ 👈 🚫 💌 🕐❔ 👷 ⏮ 📊. + + !!! note + `--no-cache-dir` 🕎 🔗 `pip`, ⚫ ✔ 🕳 ⏮ ☁ ⚖ 📊. + + `--upgrade` 🎛 💬 `pip` ♻ 📊 🚥 👫 ⏪ ❎. + + ↩ ⏮ 🔁 🖚 📁 💪 🔍 **☁ 💟**, 👉 🔁 🔜 **⚙ ☁ 💟** 🕐❔ 💪. + + ⚙ 💟 👉 🔁 🔜 **🖊** 👆 📚 **🕰** 🕐❔ 🏗 🖌 🔄 & 🔄 ⏮ 🛠, ↩ **⏬ & ❎** 🌐 🔗 **🔠 🕰**. + +5⃣. 📁 `./app` 📁 🔘 `/code` 📁. + + 👉 ✔ 🌐 📟 ❔ ⚫❔ **🔀 🌅 🛎** ☁ **💟** 🏆 🚫 ⚙ 👉 ⚖ 🙆 **📄 🔁** 💪. + + , ⚫ ⚠ 🚮 👉 **🏘 🔚** `Dockerfile`, 🔬 📊 🖌 🏗 🕰. + +6⃣. ⚒ **📋** 🏃 `uvicorn` 💜. + + `CMD` ✊ 📇 🎻, 🔠 👫 🎻 ⚫❔ 👆 🔜 🆎 📋 ⏞ 👜 🚀. + + 👉 📋 🔜 🏃 ⚪➡ **⏮ 👷 📁**, 🎏 `/code` 📁 👆 ⚒ 🔛 ⏮ `WORKDIR /code`. + + ↩ 📋 🔜 ▶ `/code` & 🔘 ⚫ 📁 `./app` ⏮ 👆 📟, **Uvicorn** 🔜 💪 👀 & **🗄** `app` ⚪➡ `app.main`. + +!!! tip + 📄 ⚫❔ 🔠 ⏞ 🔚 🖊 🔠 🔢 💭 📟. 👶 + +👆 🔜 🔜 ✔ 📁 📊 💖: + +``` +. +├── app +│   ├── __init__.py +│ └── main.py +├── Dockerfile +└── requirements.txt +``` + +#### ⛅ 🀝 ❎ 🗳 + +🚥 👆 🏃‍♂ 👆 📊 ⛅ 🀝 ❎ 🗳 (📐 ⚙) 💖 👌 ⚖ Traefik, 🚮 🎛 `--proxy-headers`, 👉 🔜 💬 Uvicorn 💙 🎚 📚 👈 🗳 💬 ⚫ 👈 🈞 🏃 ⛅ 🇺🇞🔍, ♒. + +```Dockerfile +CMD ["uvicorn", "app.main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"] +``` + +#### ☁ 💟 + +📀 ⚠ 🎱 👉 `Dockerfile`, 👥 🥇 📁 **📁 ⏮ 🔗 😞**, 🚫 🎂 📟. ➡ 👀 💬 👆 ⚫❔ 👈. + +```Dockerfile +COPY ./requirements.txt /code/requirements.txt +``` + +☁ & 🎏 🧰 **🏗** 👉 📊 🖌 **🔁**, 🚮 **1⃣ 🧜 🔛 🔝 🎏**, ▶ ⚪➡ 🔝 `Dockerfile` & ❎ 🙆 📁 ✍ 🔠 👩‍🌟 `Dockerfile`. + +☁ & 🎏 🧰 ⚙ **🔗 💟** 🕐❔ 🏗 🖌, 🚥 📁 🚫 🔀 ↩ 🏁 🕰 🏗 📊 🖌, ‎ ⚫ 🔜 **🏀-⚙ 🎏 🧜** ✍ 🏁 🕰, ↩ 🖚 📁 🔄 & 🏗 🆕 🧜 ⚪➡ 🖌. + +❎ 📁 📁 🚫 🎯 📉 👜 💁‍♂ 🌅, ✋ ↩ ⚫ ⚙ 💟 👈 🔁, ⚫ 💪 **⚙ 💟 ⏭ 🔁**. 🖌, ⚫ 💪 ⚙ 💟 👩‍🌟 👈 ❎ 🔗 ⏮: + +```Dockerfile +RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt +``` + +📁 ⏮ 📊 📄 **🏆 🚫 🔀 🛎**. , 🖚 🕎 👈 📁, ☁ 🔜 💪 **⚙ 💟** 👈 🔁. + +& ‎, ☁ 🔜 💪 **⚙ 💟 ⏭ 🔁** 👈 ⏬ & ❎ 👈 🔗. & 📥 🌐❔ 👥 **🖊 📚 🕰**. 👶 ...& ❎ 😩 ⌛. 👶 👶 + +⏬ & ❎ 📊 🔗 **💪 ✊ ⏲**, ✋ ⚙ **💟** 🔜 **✊ 🥈** 🌅. + +& 👆 🔜 🏗 📊 🖌 🔄 & 🔄 ⏮ 🛠 ✅ 👈 👆 📟 🔀 👷, 📀 📚 📈 🕰 👉 🔜 🖊. + +‎, 🏘 🔚 `Dockerfile`, 👥 📁 🌐 📟. 👉 ⚫❔ **🔀 🏆 🛎**, 👥 🚮 ⚫ 🏘 🔚, ↩ 🌖 🕧, 🕳 ⏮ 👉 🔁 🔜 🚫 💪 ⚙ 💟. + +```Dockerfile +COPY ./app /code/app +``` + +### 🏗 ☁ 🖌 + +🔜 👈 🌐 📁 🥉, ➡ 🏗 📊 🖌. + +* 🚶 🏗 📁 (🌐❔ 👆 `Dockerfile` , ⚗ 👆 `app` 📁). +* 🏗 👆 FastAPI 🖌: + +
+ +```console +$ docker build -t myimage . + +---> 100% +``` + +
+ +!!! tip + 👀 `.` 🔚, ⚫ 🌓 `./`, ⚫ 💬 ☁ 📁 ⚙ 🏗 📊 🖌. + + 👉 💌, ⚫ 🎏 ⏮ 📁 (`.`). + +### ▶ ☁ 📊 + +* 🏃 📊 ⚓ 🔛 👆 🖌: + +
+ +```console +$ docker run -d --name mycontainer -p 80:80 myimage +``` + +
+ +## ✅ ⚫ + +👆 🔜 💪 ✅ ⚫ 👆 ☁ 📊 📛, 🖌: http://192.168.99.100/items/5?q=somequery ⚖ http://127.0.0.1/items/5?q=somequery (⚖ 🌓, ⚙ 👆 ☁ 🊠). + +👆 🔜 👀 🕳 💖: + +```JSON +{"item_id": 5, "q": "somequery"} +``` + +## 🎓 🛠 🩺 + +🔜 👆 💪 🚶 http://192.168.99.100/docs ⚖ http://127.0.0.1/docs (⚖ 🌓, ⚙ 👆 ☁ 🊠). + +👆 🔜 👀 🏧 🎓 🛠 🧟 (🚚 🊁 🎚): + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) + +## 🎛 🛠 🩺 + +& 👆 💪 🚶 http://192.168.99.100/redoc ⚖ http://127.0.0.1/redoc (⚖ 🌓, ⚙ 👆 ☁ 🊠). + +👆 🔜 👀 🎛 🏧 🧟 (🚚 📄): + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) + +## 🏗 ☁ 🖌 ⏮ 👁-📁 FastAPI + +🚥 👆 FastAPI 👁 📁, 🖌, `main.py` 🍵 `./app` 📁, 👆 📁 📊 💪 👀 💖 👉: + +``` +. +├── Dockerfile +├── main.py +└── requirements.txt +``` + +‎ 👆 🔜 ✔ 🔀 🔗 ➡ 📁 📁 🔘 `Dockerfile`: + +```{ .dockerfile .annotate hl_lines="10 13" } +FROM python:3.9 + +WORKDIR /code + +COPY ./requirements.txt /code/requirements.txt + +RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt + +# (1) +COPY ./main.py /code/ + +# (2) +CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"] +``` + +1⃣. 📁 `main.py` 📁 `/code` 📁 🔗 (🍵 🙆 `./app` 📁). + +2⃣. 🏃 Uvicorn & 💬 ⚫ 🗄 `app` 🎚 ⚪➡ `main` (↩ 🏭 ⚪➡ `app.main`). + +‎ 🔆 Uvicorn 📋 ⚙ 🆕 🕹 `main` ↩ `app.main` 🗄 FastAPI 🎚 `app`. + +## 🛠 🔧 + +➡ 💬 🔄 🔃 🎏 [🛠 🔧](./concepts.md){.internal-link target=_blank} ⚖ 📊. + +📊 ✎ 🧰 📉 🛠 **🏗 & 🛠** 🈞, ✋ 👫 🚫 🛠 🎯 🎯 🍵 👉 **🛠 🔧**, & 📀 📚 💪 🎛. + +**👍 📰** 👈 ⏮ 🔠 🎏 🎛 📀 🌌 📔 🌐 🛠 🔧. 👶 + +➡ 📄 👉 **🛠 🔧** ⚖ 📊: + +* 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +## 🇺🇞🔍 + +🚥 👥 🎯 🔛 **📊 🖌** FastAPI 🈞 (& ⏪ 🏃‍♂ **📊**), 🇺🇞🔍 🛎 🔜 🍵 **🗜** ➕1⃣ 🧰. + +⚫ 💪 ➕1⃣ 📊, 🖌 ⏮ Traefik, 🚚 **🇺🇞🔍** & **🏧** 🛠 **📄**. + +!!! tip + Traefik ✔ 🛠 ⏮ ☁, Kubernete, & 🎏, ⚫ 📶 ⏩ ⚒ 🆙 & 🔗 🇺🇞🔍 👆 📊 ⏮ ⚫. + +👐, 🇺🇞🔍 💪 🍵 ☁ 🐕‍🊺 1⃣ 👫 🐕‍🊺 (⏪ 🏃 🈞 📊). + +## 🏃‍♂ 🔛 🕎 & ⏏ + +📀 🛎 ➕1⃣ 🧰 🈚 **▶ & 🏃‍♂** 👆 📊. + +⚫ 💪 **☁** 🔗, **☁ ✍**, **Kubernete**, **☁ 🐕‍🊺**, ♒. + +🌅 (⚖ 🌐) 💌, 📀 🙅 🎛 🛠 🏃 📊 🔛 🕎 & 🛠 ⏏ 🔛 ❌. 🖌, ☁, ⚫ 📋 ⏞ 🎛 `--restart`. + +🍵 ⚙ 📊, ⚒ 🈞 🏃 🔛 🕎 & ⏮ ⏏ 💪 ⚠ & ⚠. ✋ 🕐❔ **👷 ⏮ 📊** 🌅 💌 👈 🛠 🔌 🔢. 👶 + +## 🧬 - 🔢 🛠 + +🚥 👆 ✔ 🌑 🎰 ⏮ **☁**, ☁ 🐝 📳, 🖖, ⚖ ➕1⃣ 🎏 🏗 ⚙ 🛠 📎 📊 🔛 💗 🎰, ‎ 👆 🔜 🎲 💚 **🍵 🧬** **🌑 🎚** ↩ ⚙ **🛠 👚‍💌** (💖 🐁 ⏮ 👚‍🏭) 🔠 📊. + +1⃣ 📚 📎 📊 🧟 ⚙ 💖 Kubernete 🛎 ✔ 🛠 🌌 🚚 **🧬 📊** ⏪ 🔗 **📐 ⚖** 📚 📚. 🌐 **🌑 🎚**. + +📚 💌, 👆 🔜 🎲 💚 🏗 **☁ 🖌 ⚪➡ 🖌** [🔬 🔛](#dockerfile), ❎ 👆 🔗, & 🏃‍♂ **👁 Uvicorn 🛠** ↩ 🏃‍♂ 🕳 💖 🐁 ⏮ Uvicorn 👚‍🏭. + +### 📐 ⚙ + +🕐❔ ⚙ 📊, 👆 🔜 🛎 ✔ 🊲 **👂 🔛 👑 ⛮**. ⚫ 💪 🎲 ➕1⃣ 📊 👈 **🀝 ❎ 🗳** 🍵 **🇺🇞🔍** ⚖ 🎏 🧰. + +👉 🊲 🔜 ✊ **📐** 📚 & 📎 👈 👪 👚‍🏭 (🀞) **⚖** 🌌, ⚫ 🛎 🀙 **📐 ⚙**. + +!!! tip + 🎏 **🀝 ❎ 🗳** 🊲 ⚙ 🇺🇞🔍 🔜 🎲 **📐 ⚙**. + +& 🕐❔ 👷 ⏮ 📊, 🎏 ⚙ 👆 ⚙ ▶ & 🛠 👫 🔜 ⏪ ✔ 🔗 🧰 📶 **🕞 📻** (✅ 🇺🇞🔍 📚) ⚪➡ 👈 **📐 ⚙** (👈 💪 **🀝 ❎ 🗳**) 📊(Ⓜ) ⏮ 👆 📱. + +### 1⃣ 📐 ⚙ - 💗 👚‍🏭 📊 + +🕐❔ 👷 ⏮ **Kubernete** ⚖ 🎏 📎 📊 🧟 ⚙, ⚙ 👫 🔗 🕞 🛠 🔜 ✔ 👁 **📐 ⚙** 👈 👂 🔛 👑 **⛮** 📶 📻 (📚) 🎲 **💗 📊** 🏃 👆 📱. + +🔠 👫 📊 🏃‍♂ 👆 📱 🔜 🛎 ✔ **1⃣ 🛠** (✅ Uvicorn 🛠 🏃 👆 FastAPI 🈞). 👫 🔜 🌐 **🌓 📊**, 🏃‍♂ 🎏 👜, ✋ 🔠 ⏮ 🚮 👍 🛠, 💟, ♒. 👈 🌌 👆 🔜 ✊ 📈 **🛠** **🎏 🐚** 💜, ⚖ **🎏 🎰**. + +& 📎 📊 ⚙ ⏮ **📐 ⚙** 🔜 **📎 📚** 🔠 1⃣ 📊 ⏮ 👆 📱 **🔄**. , 🔠 📚 💪 🍵 1⃣ 💗 **🔁 📊** 🏃 👆 📱. + +& 🛎 👉 **📐 ⚙** 🔜 💪 🍵 📚 👈 🚶 *🎏* 📱 👆 🌑 (✅ 🎏 🆔, ⚖ 🔜 🎏 📛 ➡ 🔡), & 🔜 📶 👈 📻 ▶ 📊 *👈 🎏* 🈞 🏃‍♂ 👆 🌑. + +### 1⃣ 🛠 📍 📊 + +👉 🆎 😐, 👆 🎲 🔜 💚 ✔ **👁 (Uvicorn) 🛠 📍 📊**, 👆 🔜 ⏪ 🚚 🧬 🌑 🎚. + +, 👉 💌, 👆 **🔜 🚫** 💚 ✔ 🛠 👚‍💌 💖 🐁 ⏮ Uvicorn 👚‍🏭, ⚖ Uvicorn ⚙ 🚮 👍 Uvicorn 👚‍🏭. 👆 🔜 💚 ✔ **👁 Uvicorn 🛠** 📍 📊 (✋ 🎲 💗 📊). + +✔ ➕1⃣ 🛠 👚‍💌 🔘 📊 (🔜 ⏮ 🐁 ⚖ Uvicorn 🛠 Uvicorn 👚‍🏭) 🔜 🕎 🚮 **🙃 🔀** 👈 👆 🌅 🎲 ⏪ ✊ 💅 ⏮ 👆 🌑 ⚙. + +### 📊 ⏮ 💗 🛠 & 🎁 💌 + +↗, 📀 **🎁 💌** 🌐❔ 👆 💪 💚 ✔ **📊** ⏮ **🐁 🛠 👚‍💌** ▶ 📚 **Uvicorn 👚‍🏭 🛠** 🔘. + +📚 💌, 👆 💪 ⚙ **🛂 ☁ 🖌** 👈 🔌 **🐁** 🛠 👚‍💌 🏃‍♂ 💗 **Uvicorn 👚‍🏭 🛠**, & 🔢 ⚒ 🔆 🔢 👚‍🏭 ⚓ 🔛 ⏮ 💜 🐚 🔁. 👀 🔜 💬 👆 🌅 🔃 ⚫ 🔛 [🛂 ☁ 🖌 ⏮ 🐁 - Uvicorn](#official-docker-image-with-gunicorn-uvicorn). + +📥 🖌 🕐❔ 👈 💪 ⚒ 🔑: + +#### 🙅 📱 + +👆 💪 💚 🛠 👚‍💌 📊 🚥 👆 🈞 **🙅 🥃** 👈 👆 🚫 💪 (🐥 🚫) 👌-🎶 🔢 🛠 💁‍♂ 🌅, & 👆 💪 ⚙ 🏧 🔢 (⏮ 🛂 ☁ 🖌), & 👆 🏃‍♂ ⚫ 🔛 **👁 💜**, 🚫 🌑. + +#### ☁ ✍ + +👆 💪 🛠 **👁 💜** (🚫 🌑) ⏮ **☁ ✍**, 👆 🚫🔜 ✔ ⏩ 🌌 🛠 🧬 📊 (⏮ ☁ ✍) ⏪ 🛡 🔗 🕞 & **📐 ⚖**. + +‎ 👆 💪 💚 ✔ **👁 📊** ⏮ **🛠 👚‍💌** ▶ **📚 👚‍🏭 🛠** 🔘. + +#### 🀎 & 🎏 🀔 + +👆 💪 ✔ **🎏 🀔** 👈 🔜 ⚒ ⚫ ⏩ ✔ **👁 📊** ⏮ **💗 🛠** ↩ ✔ **💗 📊** ⏮ **👁 🛠** 🔠 👫. + +🖌 (🪀 🔛 👆 🖥) 👆 💪 ✔ 🧰 💖 🀎 🏭 🎏 📊 👈 🔜 ✔ 🔐 **🔠 📚** 👈 👟. + +👉 💌, 🚥 👆 ✔ **💗 📊**, 🔢, 🕐❔ 🀎 👟 **✍ ⚖**, ⚫ 🔜 🀚 🕐 **👁 📊 🔠 🕰** (📊 👈 🍵 👈 🎯 📚), ↩ 🀚 **📈 ⚖** 🌐 🔁 📊. + +‎, 👈 💌, ⚫ 💪 🙅 ✔ **1⃣ 📊** ⏮ **💗 🛠**, & 🇧🇿 🧰 (✅ 🀎 🏭) 🔛 🎏 📊 📈 🀎 ⚖ 🌐 🔗 🛠 & 🎊 👈 ⚖ 🔛 👈 👁 📊. + +--- + +👑 ☝, **👌** 👉 **🚫 ✍ 🗿** 👈 👆 ✔ 😄 ⏩. 👆 💪 ⚙ 👫 💭 **🔬 👆 👍 ⚙ 💌** & 💭 ⚫❔ 👍 🎯 👆 ⚙, ✅ 👅 ❔ 🛠 🔧: + +* 💂‍♂ - 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +## 💟 + +🚥 👆 🏃 **👁 🛠 📍 📊** 👆 🔜 ✔ 🌅 ⚖ 🌘 👍-🔬, ⚖, & 📉 💞 💟 🍎 🔠 👈 📊 (🌅 🌘 1⃣ 🚥 👫 🔁). + +& ‎ 👆 💪 ⚒ 👈 🎏 💟 📉 & 📄 👆 📳 👆 📊 🧟 ⚙ (🖌 **Kubernete**). 👈 🌌 ⚫ 🔜 💪 **🔁 📊** **💪 🎰** ✊ 🔘 🏧 💞 💟 💪 👫, & 💞 💪 🎰 🌑. + +🚥 👆 🈞 **🙅**, 👉 🔜 🎲 **🚫 ⚠**, & 👆 💪 🚫 💪 ✔ 🏋 💟 📉. ✋ 🚥 👆 **⚙ 📚 💟** (🖌 ⏮ **🎰 🏫** 🏷), 👆 🔜 ✅ ❔ 🌅 💟 👆 😩 & 🔆 **🔢 📊** 👈 🏃 **🔠 🎰** (& 🎲 🚮 🌖 🎰 👆 🌑). + +🚥 👆 🏃 **💗 🛠 📍 📊** (🖌 ⏮ 🛂 ☁ 🖌) 👆 🔜 ✔ ⚒ 💭 👈 🔢 🛠 ▶ 🚫 **🍎 🌖 💟** 🌘 ⚫❔ 💪. + +## ⏮ 🔁 ⏭ ▶ & 📊 + +🚥 👆 ⚙ 📊 (✅ ☁, Kubernete), ‎ 📀 2⃣ 👑 🎯 👆 💪 ⚙. + +### 💗 📊 + +🚥 👆 ✔ **💗 📊**, 🎲 🔠 1⃣ 🏃 **👁 🛠** (🖌, **Kubernete** 🌑), ‎ 👆 🔜 🎲 💚 ✔ **🎏 📊** 🔚 👷 **⏮ 📶** 👁 📊, 🏃 👁 🛠, **⏭** 🏃 🔁 👚‍🏭 📊. + +!!! info + 🚥 👆 ⚙ Kubernete, 👉 🔜 🎲 🕑 📊. + +🚥 👆 ⚙ 💌 📀 🙅‍♂ ⚠ 🏃‍♂ 👈 ⏮ 📶 **💗 🕰 🔗** (🖌 🚥 👆 🚫 🏃 💜 🛠, ✋ ✅ 🚥 💜 🔜), ‎ 👆 💪 🚮 👫 🔠 📊 ▶ ⏭ ▶ 👑 🛠. + +### 👁 📊 + +🚥 👆 ✔ 🙅 🖥, ⏮ **👁 📊** 👈 ‎ ▶ 💗 **👚‍🏭 🛠** (⚖ 1⃣ 🛠), ‎ 👆 💪 🏃 👈 ⏮ 🔁 🎏 📊, ▶ ⏭ ▶ 🛠 ⏮ 📱. 🛂 ☁ 🖌 🐕‍🊺 👉 🔘. + +## 🛂 ☁ 🖌 ⏮ 🐁 - Uvicorn + +📀 🛂 ☁ 🖌 👈 🔌 🐁 🏃‍♂ ⏮ Uvicorn 👚‍🏭, ℹ ⏮ 📃: [💜 👚‍🏭 - 🐁 ⏮ Uvicorn](./server-workers.md){.internal-link target=_blank}. + +👉 🖌 🔜 ⚠ ✎ ⚠ 🔬 🔛: [📊 ⏮ 💗 🛠 & 🎁 💌](#containers-with-multiple-processes-and-special-cases). + +* tiangolo/uvicorn-🐁-fastapi. + +!!! warning + 📀 ↕ 🀞 👈 👆 **🚫** 💪 👉 🧢 🖌 ⚖ 🙆 🎏 🎏 1⃣, & 🔜 👻 📆 🏗 🖌 ⚪➡ 🖌 [🔬 🔛: 🏗 ☁ 🖌 FastAPI](#build-a-docker-image-for-fastapi). + +👉 🖌 ✔ **🚘-📳** 🛠 🔌 ⚒ **🔢 👚‍🏭 🛠** ⚓ 🔛 💜 🐚 💪. + +⚫ ✔ **🀔 🔢**, ✋ 👆 💪 🔀 & ℹ 🌐 📳 ⏮ **🌐 🔢** ⚖ 📳 📁. + +⚫ 🐕‍🊺 🏃 **⏮ 🔁 ⏭ ▶** ⏮ ✍. + +!!! tip + 👀 🌐 📳 & 🎛, 🚶 ☁ 🖌 📃: Tiangolo/uvicorn-🐁-fastapi. + +### 🔢 🛠 🔛 🛂 ☁ 🖌 + +**🔢 🛠** 🔛 👉 🖌 **📊 🔁** ⚪➡ 💜 **🐚** 💪. + +👉 ⛓ 👈 ⚫ 🔜 🔄 **🗜** 🌅 **🎭** ⚪➡ 💜 💪. + +👆 💪 🔆 ⚫ ⏮ 📳 ⚙ **🌐 🔢**, ♒. + +✋ ⚫ ⛓ 👈 🔢 🛠 🪀 🔛 💜 📊 🏃, **💞 💟 🍎** 🔜 🪀 🔛 👈. + +, 🚥 👆 🈞 🍎 📚 💟 (🖌 ⏮ 🎰 🏫 🏷), & 👆 💜 ✔ 📚 💜 🐚 **✋ 🐥 💟**, ‎ 👆 📊 💪 🔚 🆙 🔄 ⚙ 🌅 💟 🌘 ⚫❔ 💪, & 🀕 🎭 📚 (⚖ 💥). 👶 + +### ✍ `Dockerfile` + +📥 ❔ 👆 🔜 ✍ `Dockerfile` ⚓ 🔛 👉 🖌: + +```Dockerfile +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9 + +COPY ./requirements.txt /app/requirements.txt + +RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt + +COPY ./app /app +``` + +### 🊏 🈞 + +🚥 👆 ⏩ 📄 🔃 🏗 [🊏 🈞 ⏮ 💗 📁](../tutorial/bigger-applications.md){.internal-link target=_blank}, 👆 `Dockerfile` 💪 ↩ 👀 💖: + +```Dockerfile hl_lines="7" +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9 + +COPY ./requirements.txt /app/requirements.txt + +RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt + +COPY ./app /app/app +``` + +### 🕐❔ ⚙ + +👆 🔜 🎲 **🚫** ⚙ 👉 🛂 🧢 🖌 (⚖ 🙆 🎏 🎏 1⃣) 🚥 👆 ⚙ **Kubernete** (⚖ 🎏) & 👆 ⏪ ⚒ **🧬** 🌑 🎚, ⏮ 💗 **📊**. 📚 💌, 👆 👍 📆 **🏗 🖌 ⚪➡ 🖌** 🔬 🔛: [🏗 ☁ 🖌 FastAPI](#build-a-docker-image-for-fastapi). + +👉 🖌 🔜 ⚠ ✎ 🎁 💌 🔬 🔛 [📊 ⏮ 💗 🛠 & 🎁 💌](#containers-with-multiple-processes-and-special-cases). 🖌, 🚥 👆 🈞 **🙅 🥃** 👈 ⚒ 🔢 🔢 🛠 ⚓ 🔛 💜 👷 👍, 👆 🚫 💚 😥 ⏮ ❎ 🛠 🧬 🌑 🎚, & 👆 🚫 🏃 🌅 🌘 1⃣ 📊 ⏮ 👆 📱. ⚖ 🚥 👆 🛠 ⏮ **☁ ✍**, 🏃 🔛 👁 💜, ♒. + +## 🛠 📊 🖌 + +⏮ ✔ 📊 (☁) 🖌 📀 📚 🌌 🛠 ⚫. + +🖌: + +* ⏮ **☁ ✍** 👁 💜 +* ⏮ **Kubernete** 🌑 +* ⏮ ☁ 🐝 📳 🌑 +* ⏮ ➕1⃣ 🧰 💖 🖖 +* ⏮ ☁ 🐕‍🊺 👈 ✊ 👆 📊 🖌 & 🛠 ⚫ + +## ☁ 🖌 ⏮ 🎶 + +🚥 👆 ⚙ 🎶 🛠 👆 🏗 🔗, 👆 💪 ⚙ ☁ 👁-▶ 🏗: + +```{ .dockerfile .annotate } +# (1) +FROM python:3.9 as requirements-stage + +# (2) +WORKDIR /tmp + +# (3) +RUN pip install poetry + +# (4) +COPY ./pyproject.toml ./poetry.lock* /tmp/ + +# (5) +RUN poetry export -f requirements.txt --output requirements.txt --without-hashes + +# (6) +FROM python:3.9 + +# (7) +WORKDIR /code + +# (8) +COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt + +# (9) +RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt + +# (10) +COPY ./app /code/app + +# (11) +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] +``` + +1⃣. 👉 🥇 ▶, ⚫ 🌟 `requirements-stage`. + +2⃣. ⚒ `/tmp` ⏮ 👷 📁. + + 📥 🌐❔ 👥 🔜 🏗 📁 `requirements.txt` + +3⃣. ❎ 🎶 👉 ☁ ▶. + +4⃣. 📁 `pyproject.toml` & `poetry.lock` 📁 `/tmp` 📁. + + ↩ ⚫ ⚙ `./poetry.lock*` (▶ ⏮ `*`), ⚫ 🏆 🚫 💥 🚥 👈 📁 🚫 💪. + +5⃣. 🏗 `requirements.txt` 📁. + +6⃣. 👉 🏁 ▶, 🕳 📥 🔜 🛡 🏁 📊 🖌. + +7⃣. ⚒ ⏮ 👷 📁 `/code`. + +8⃣. 📁 `requirements.txt` 📁 `/code` 📁. + + 👉 📁 🕎 🖖 ⏮ ☁ ▶, 👈 ⚫❔ 👥 ⚙ `--from-requirements-stage` 📁 ⚫. + +9⃣. ❎ 📊 🔗 🏗 `requirements.txt` 📁. + +1⃣0⃣. 📁 `app` 📁 `/code` 📁. + +1⃣1⃣. 🏃 `uvicorn` 📋, 💬 ⚫ ⚙ `app` 🎚 🗄 ⚪➡ `app.main`. + +!!! tip + 🖊 💭 🔢 👀 ⚫❔ 🔠 ⏞ 🔚. + +**☁ ▶** 🍕 `Dockerfile` 👈 👷 **🍕 📊 🖌** 👈 🕎 ⚙ 🏗 📁 ⚙ ⏪. + +🥇 ▶ 🔜 🕎 ⚙ **❎ 🎶** & **🏗 `requirements.txt`** ⏮ 👆 🏗 🔗 ⚪➡ 🎶 `pyproject.toml` 📁. + +👉 `requirements.txt` 📁 🔜 ⚙ ⏮ `pip` ⏪ **⏭ ▶**. + +🏁 📊 🖌 **🕎 🏁 ▶** 🛡. ⏮ ▶(Ⓜ) 🔜 ❎. + +🕐❔ ⚙ 🎶, ⚫ 🔜 ⚒ 🔑 ⚙ **☁ 👁-▶ 🏗** ↩ 👆 🚫 🀙 💪 ✔ 🎶 & 🚮 🔗 ❎ 🏁 📊 🖌, 👆 **🕎 💪** ✔ 🏗 `requirements.txt` 📁 ❎ 👆 🏗 🔗. + +‎ ⏭ (& 🏁) ▶ 👆 🔜 🏗 🖌 🌅 ⚖ 🌘 🎏 🌌 🔬 ⏭. + +### ⛅ 🀝 ❎ 🗳 - 🎶 + +🔄, 🚥 👆 🏃‍♂ 👆 📊 ⛅ 🀝 ❎ 🗳 (📐 ⚙) 💖 👌 ⚖ Traefik, 🚮 🎛 `--proxy-headers` 📋: + +```Dockerfile +CMD ["uvicorn", "app.main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"] +``` + +## 🌃 + +⚙ 📊 ⚙ (✅ ⏮ **☁** & **Kubernete**) ⚫ ▶ 📶 🎯 🍵 🌐 **🛠 🔧**: + +* 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +🌅 💌, 👆 🎲 🏆 🚫 💚 ⚙ 🙆 🧢 🖌, & ↩ **🏗 📊 🖌 ⚪➡ 🖌** 1⃣ ⚓ 🔛 🛂 🐍 ☁ 🖌. + +✊ 💅 **✔** 👩‍🌟 `Dockerfile` & **☁ 💟** 👆 💪 **📉 🏗 🕰**, 📉 👆 📈 (& ❎ 😩). 👶 + +🎯 🎁 💌, 👆 💪 💚 ⚙ 🛂 ☁ 🖌 FastAPI. 👶 diff --git a/docs/em/docs/deployment/https.md b/docs/em/docs/deployment/https.md new file mode 100644 index 000000000..3feb3a2c2 --- /dev/null +++ b/docs/em/docs/deployment/https.md @@ -0,0 +1,190 @@ +# 🔃 🇺🇞🔍 + +⚫ ⏩ 🀔 👈 🇺🇞🔍 🕳 👈 "🛠" ⚖ 🚫. + +✋ ⚫ 🌌 🌖 🏗 🌘 👈. + +!!! tip + 🚥 👆 🏃 ⚖ 🚫 💅, 😣 ⏮ ⏭ 📄 🔁 🔁 👩‍🌟 ⚒ 🌐 🆙 ⏮ 🎏 ⚒. + +**💡 🔰 🇺🇞🔍**, ⚪➡ 🏬 🀔, ✅ https://howhttps.works/. + +🔜, ⚪➡ **👩‍💻 🀔**, 📥 📚 👜 ✔ 🀯 ⏪ 💭 🔃 🇺🇞🔍: + +* 🇺🇞🔍, **💜** 💪 **✔ "📄"** 🏗 **🥉 🥳**. + * 📚 📄 🀙 **🏆** ⚪➡ 🥉 🥳, 🚫 "🏗". +* 📄 ✔ **1⃣2⃣🗓**. + * 👫 **🕛**. + * & ‎ 👫 💪 **♻**, **🏆 🔄** ⚪➡ 🥉 🥳. +* 🔐 🔗 🔚 **🕞 🎚**. + * 👈 1⃣ 🧜 **🔛 🇺🇞🔍**. + * , **📄 & 🔐** 🍵 🔚 **⏭ 🇺🇞🔍**. +* **🕞 🚫 💭 🔃 "🆔"**. 🕎 🔃 📢 📢. + * ℹ 🔃 **🎯 🆔** 📚 🚶 **🇺🇞🔍 💜**. +* **🇺🇞🔍 📄** "✔" **🎯 🆔**, ✋ 🛠 & 🔐 🔚 🕞 🎚, **⏭ 💭** ❔ 🆔 ➖ 🙅 ⏮. +* **🔢**, 👈 🔜 ⛓ 👈 👆 💪 🕎 ✔ **1⃣ 🇺🇞🔍 📄 📍 📢 📢**. + * 🙅‍♂ 🀔 ❔ 🊏 👆 💜 ⚖ ❔ 🀪 🔠 🈞 👆 ✔ 🔛 ⚫ 💪. + * 📀 **⚗** 👉, 👐. +* 📀 **↔** **🀝** 🛠 (1⃣ 🚚 🔐 🕞 🎚, ⏭ 🇺🇞🔍) 🀙 **👲**. + * 👉 👲 ↔ ✔ 1⃣ 👁 💜 (⏮ **👁 📢 📢**) ✔ **📚 🇺🇞🔍 📄** & 🍊 **💗 🇺🇞🔍 🆔/🈞**. + * 👉 👷, **👁** 🊲 (📋) 🏃 🔛 💜, 👂 🔛 **📢 📢 📢**, 🔜 ✔ **🌐 🇺🇞🔍 📄** 💜. +* **⏮** 🏆 🔐 🔗, 📻 🛠 **🇺🇞🔍**. + * 🎚 **🗜**, ✋ 👫 ➖ 📚 ⏮ **🇺🇞🔍 🛠**. + +⚫ ⚠ 💡 ✔ **1⃣ 📋/🇺🇞🔍 💜** 🏃 🔛 💜 (🎰, 🊠, ♒.) & **🛠 🌐 🇺🇞🔍 🍕**: 📚 **🗜 🇺🇞🔍 📚**, 📚 **🗜 🇺🇞🔍 📚** ☑ 🇺🇞🔍 🈞 🏃 🎏 💜 ( **FastAPI** 🈞, 👉 💌), ✊ **🇺🇞🔍 📚** ⚪➡ 🈞, **🗜 ⚫** ⚙ ☑ **🇺🇞🔍 📄** & 📚 ⚫ 🔙 👩‍💻 ⚙ **🇺🇞🔍**. 👉 💜 🛎 🀙 **🀝 ❎ 🗳**. + +🎛 👆 💪 ⚙ 🀝 ❎ 🗳: + +* Traefik (👈 💪 🍵 📄 🔕) +* 📥 (👈 💪 🍵 📄 🔕) +* 👌 +* ✳ + +## ➡ 🗜 + +⏭ ➡ 🗜, 👫 **🇺🇞🔍 📄** 💲 💙 🥉 🥳. + +🛠 📎 1⃣ 👫 📄 ⚙ ⚠, 🚚 📠 & 📄 😥. + +✋ ‎ **➡ 🗜** ✍. + +⚫ 🏗 ⚪➡ 💟 🏛. ⚫ 🚚 **🇺🇞🔍 📄 🆓**, 🏧 🌌. 👫 📄 ⚙ 🌐 🐩 🔐 💂‍♂, & 📏-🖖 (🔃 3⃣ 🗓), **💂‍♂ 🀙 👍** ↩ 👫 📉 🔆. + +🆔 🔐 ✔ & 📄 🏗 🔁. 👉 ✔ 🏧 🔕 👫 📄. + +💭 🏧 🛠 & 🔕 👫 📄 👈 👆 💪 ✔ **🔐 🇺🇞🔍, 🆓, ♟**. + +## 🇺🇞🔍 👩‍💻 + +📥 🖌 ❔ 🇺🇞🔍 🛠 💪 👀 💖, 🔁 🔁, 💞 🙋 ✎ 💭 ⚠ 👩‍💻. + +### 🆔 📛 + +⚫ 🔜 🎲 🌐 ▶ 👆 **🏗** **🆔 📛**. ‎, 👆 🔜 🔗 ⚫ 🏓 💜 (🎲 👆 🎏 ☁ 🐕‍🊺). + +👆 🔜 🎲 🀚 ☁ 💜 (🕹 🎰) ⚖ 🕳 🎏, & ⚫ 🔜 ✔ 🔧 **📢 📢 📢**. + +🏓 💜(Ⓜ) 👆 🔜 🔗 ⏺ ("`A record`") ☝ **👆 🆔** 📢 **📢 📢 👆 💜**. + +👆 🔜 🎲 👉 🕐, 🥇 🕰, 🕐❔ ⚒ 🌐 🆙. + +!!! tip + 👉 🆔 📛 🍕 🌌 ⏭ 🇺🇞🔍, ✋ 🌐 🪀 🔛 🆔 & 📢 📢, ⚫ 💞 💬 ⚫ 📥. + +### 🏓 + +🔜 ➡ 🎯 🔛 🌐 ☑ 🇺🇞🔍 🍕. + +🥇, 🖥 🔜 ✅ ⏮ **🏓 💜** ⚫❔ **📢 🆔**, 👉 💌, `someapp.example.com`. + +🏓 💜 🔜 💬 🖥 ⚙ 🎯 **📢 📢**. 👈 🔜 📢 📢 📢 ⚙ 👆 💜, 👈 👆 🔗 🏓 💜. + + + +### 🀝 🀝 ▶ + +🖥 🔜 ‎ 🔗 ⏮ 👈 📢 📢 🔛 **⛮ 4⃣4⃣3⃣** (🇺🇞🔍 ⛮). + +🥇 🍕 📻 🛠 🔗 🖖 👩‍💻 & 💜 & 💭 🔐 🔑 👫 🔜 ⚙, ♒. + + + +👉 🔗 🖖 👩‍💻 & 💜 🛠 🀝 🔗 🀙 **🀝 🀝**. + +### 🀝 ⏮ 👲 ↔ + +**🕎 1⃣ 🛠** 💜 💪 👂 🔛 🎯 **⛮** 🎯 **📢 📢**. 📀 💪 🎏 🛠 👂 🔛 🎏 ⛮ 🎏 📢 📢, ✋ 🕎 1⃣ 🔠 🌀 📢 📢 & ⛮. + +🀝 (🇺🇞🔍) ⚙ 🎯 ⛮ `443` 🔢. 👈 ⛮ 👥 🔜 💪. + +🕎 1⃣ 🛠 💪 👂 🔛 👉 ⛮, 🛠 👈 🔜 ⚫ 🔜 **🀝 ❎ 🗳**. + +🀝 ❎ 🗳 🔜 ✔ 🔐 1⃣ ⚖ 🌅 **🀝 📄** (🇺🇞🔍 📄). + +⚙ **👲 ↔** 🔬 🔛, 🀝 ❎ 🗳 🔜 ✅ ❔ 🀝 (🇺🇞🔍) 📄 💪 ⚫ 🔜 ⚙ 👉 🔗, ⚙ 1⃣ 👈 🏏 🆔 📈 👩‍💻. + +👉 💌, ⚫ 🔜 ⚙ 📄 `someapp.example.com`. + + + +👩‍💻 ⏪ **💙** 👚‍💌 👈 🏗 👈 🀝 📄 (👉 💌 ➡ 🗜, ✋ 👥 🔜 👀 🔃 👈 ⏪), ⚫ 💪 **✔** 👈 📄 ☑. + +‎, ⚙ 📄, 👩‍💻 & 🀝 ❎ 🗳 **💭 ❔ 🗜** 🎂 **🕞 📻**. 👉 🏁 **🀝 🀝** 🍕. + +⏮ 👉, 👩‍💻 & 💜 ✔ **🗜 🕞 🔗**, 👉 ⚫❔ 🀝 🚚. & ‎ 👫 💪 ⚙ 👈 🔗 ▶ ☑ **🇺🇞🔍 📻**. + +& 👈 ⚫❔ **🇺🇞🔍** , ⚫ ✅ **🇺🇞🔍** 🔘 **🔐 🀝 🔗** ↩ 😁 (💜) 🕞 🔗. + +!!! tip + 👀 👈 🔐 📻 🔚 **🕞 🎚**, 🚫 🇺🇞🔍 🎚. + +### 🇺🇞🔍 📚 + +🔜 👈 👩‍💻 & 💜 (🎯 🖥 & 🀝 ❎ 🗳) ✔ **🗜 🕞 🔗**, 👫 💪 ▶ **🇺🇞🔍 📻**. + +, 👩‍💻 📚 **🇺🇞🔍 📚**. 👉 🇺🇞🔍 📚 🔘 🗜 🀝 🔗. + + + +### 🗜 📚 + +🀝 ❎ 🗳 🔜 ⚙ 🔐 ✔ **🗜 📚**, & 🔜 📶 **✅ (🗜) 🇺🇞🔍 📚** 🛠 🏃 🈞 (🖌 🛠 ⏮ Uvicorn 🏃‍♂ FastAPI 🈞). + + + +### 🇺🇞🔍 📚 + +🈞 🔜 🛠 📚 & 📚 **✅ (💜) 🇺🇞🔍 📚** 🀝 ❎ 🗳. + + + +### 🇺🇞🔍 📚 + +🀝 ❎ 🗳 🔜 ‎ **🗜 📚** ⚙ ⚛ ✔ ⏭ (👈 ▶ ⏮ 📄 `someapp.example.com`), & 📚 ⚫ 🔙 🖥. + +⏭, 🖥 🔜 ✔ 👈 📚 ☑ & 🗜 ⏮ ▶ 🔐 🔑, ♒. ⚫ 🔜 ‎ **🗜 📚** & 🛠 ⚫. + + + +👩‍💻 (🖥) 🔜 💭 👈 📚 👟 ⚪➡ ☑ 💜 ↩ ⚫ ⚙ ⚛ 👫 ✔ ⚙ **🇺🇞🔍 📄** ⏭. + +### 💗 🈞 + +🎏 💜 (⚖ 💜), 📀 💪 **💗 🈞**, 🖌, 🎏 🛠 📋 ⚖ 💜. + +🕎 1⃣ 🛠 💪 🚚 🎯 📢 & ⛮ (🀝 ❎ 🗳 👆 🖌) ✋ 🎏 🈞/🛠 💪 🏃 🔛 💜(Ⓜ) 💁‍♂, 📏 👫 🚫 🔄 ⚙ 🎏 **🌀 📢 📢 & ⛮**. + + + +👈 🌌, 🀝 ❎ 🗳 💪 🍵 🇺🇞🔍 & 📄 **💗 🆔**, 💗 🈞, & ‎ 📶 📚 ▶ 🈞 🔠 💌. + +### 📄 🔕 + +☝ 🔮, 🔠 📄 🔜 **🕛** (🔃 3⃣ 🗓 ⏮ 🏗 ⚫). + +& ‎, 📀 🔜 ➕1⃣ 📋 (💌 ⚫ ➕1⃣ 📋, 💌 ⚫ 💪 🎏 🀝 ❎ 🗳) 👈 🔜 💬 ➡ 🗜, & ♻ 📄(Ⓜ). + + + +**🀝 📄** **🔗 ⏮ 🆔 📛**, 🚫 ⏮ 📢 📢. + +, ♻ 📄, 🔕 📋 💪 **🎊** 🛃 (➡ 🗜) 👈 ⚫ 👐 **"👍" & 🎛 👈 🆔**. + +👈, & 🏗 🎏 🈞 💪, 📀 📚 🌌 ⚫ 💪 ⚫. 🌟 🌌: + +* **🔀 🏓 ⏺**. + * 👉, 🔕 📋 💪 🐕‍🊺 🔗 🏓 🐕‍🊺,, ⚓ 🔛 🏓 🐕‍🊺 👆 ⚙, 👉 5⃣📆 ⚖ 💪 🚫 🎛. +* **🏃 💜** (🌘 ⏮ 📄 🛠 🛠) 🔛 📢 📢 📢 🔗 ⏮ 🆔. + * 👥 💬 🔛, 🕎 1⃣ 🛠 💪 👂 🔛 🎯 📢 & ⛮. + * 👉 1⃣ 🀔 ⚫❔ ⚫ 📶 ⚠ 🕐❔ 🎏 🀝 ❎ 🗳 ✊ 💅 📄 🔕 🛠. + * ⏪, 👆 💪 ✔ ⛔ 🀝 ❎ 🗳 😖, ▶ 🔕 📋 📎 📄, ‎ 🔗 👫 ⏮ 🀝 ❎ 🗳, & ‎ ⏏ 🀝 ❎ 🗳. 👉 🚫 💯, 👆 📱(Ⓜ) 🔜 🚫 💪 ⏮ 🕰 👈 🀝 ❎ 🗳 📆. + +🌐 👉 🔕 🛠, ⏪ 🍊 📱, 1⃣ 👑 🀔 ⚫❔ 👆 🔜 💚 ✔ **🎏 ⚙ 🍵 🇺🇞🔍** ⏮ 🀝 ❎ 🗳 ↩ ⚙ 🀝 📄 ⏮ 🈞 💜 🔗 (✅ Uvicorn). + +## 🌃 + +✔ **🇺🇞🔍** 📶 ⚠, & **🎯** 🏆 💌. 🌅 🎯 👆 👩‍💻 ✔ 🚮 🀭 🇺🇞🔍 🔃 **🀔 👉 🔧** & ❔ 👫 👷. + +✋ 🕐 👆 💭 🔰 ℹ **🇺🇞🔍 👩‍💻** 👆 💪 💪 🌀 & 🔗 🎏 🧰 ℹ 👆 🛠 🌐 🙅 🌌. + +⏭ 📃, 👀 🔜 🎊 👆 📚 🧱 🖌 ❔ ⚒ 🆙 **🇺🇞🔍** **FastAPI** 🈞. 👶 diff --git a/docs/em/docs/deployment/index.md b/docs/em/docs/deployment/index.md new file mode 100644 index 000000000..1010c589f --- /dev/null +++ b/docs/em/docs/deployment/index.md @@ -0,0 +1,21 @@ +# 🛠 - 🎶 + +🛠 **FastAPI** 🈞 📶 ⏩. + +## ⚫❔ 🔚 🛠 ⛓ + +**🛠** 🈞 ⛓ 🎭 💪 📶 ⚒ ⚫ **💪 👩‍💻**. + +**🕞 🛠**, ⚫ 🛎 🔌 🚮 ⚫ **🛰 🎰**, ⏮ **💜 📋** 👈 🚚 👍 🎭, ⚖, ♒, 👈 👆 **👩‍💻** 💪 **🔐** 🈞 ♻ & 🍵 🔁 ⚖ ⚠. + +👉 🔅 **🛠** ▶, 🌐❔ 👆 🕧 🔀 📟, 💔 ⚫ & ♻ ⚫, ⛔ & 🔁 🛠 💜, ♒. + +## 🛠 🎛 + +📀 📚 🌌 ⚫ ⚓ 🔛 👆 🎯 ⚙ 💌 & 🧰 👈 👆 ⚙. + +👆 💪 **🛠 💜** 👆 ⚙ 🌀 🧰, 👆 💪 ⚙ **☁ 🐕‍🊺** 👈 🔚 🍕 👷 👆, ⚖ 🎏 💪 🎛. + +👀 🔜 🎊 👆 👑 🔧 👆 🔜 🎲 ✔ 🀯 🕐❔ 🛠 **FastAPI** 🈞 (👐 🌅 ⚫ ✔ 🙆 🎏 🆎 🕞 🈞). + +👆 🔜 👀 🌖 ℹ ✔ 🀯 & ⚒ ⚫ ⏭ 📄. 👶 diff --git a/docs/em/docs/deployment/manually.md b/docs/em/docs/deployment/manually.md new file mode 100644 index 000000000..f27b423e2 --- /dev/null +++ b/docs/em/docs/deployment/manually.md @@ -0,0 +1,145 @@ +# 🏃 💜 ❎ - Uvicorn + +👑 👜 👆 💪 🏃 **FastAPI** 🈞 🛰 💜 🎰 🔫 💜 📋 💖 **Uvicorn**. + +📀 3⃣ 👑 🎛: + +* Uvicorn: ↕ 🎭 🔫 💜. +* Hypercorn: 🔫 💜 🔗 ⏮ 🇺🇞🔍/2⃣ & 🎻 👪 🎏 ⚒. +* 👞: 🔫 💜 🏗 ✳ 📻. + +## 💜 🎰 & 💜 📋 + +📀 🀪 ℹ 🔃 📛 ✔ 🀯. 👶 + +🔀 "**💜**" 🛎 ⚙ 🔗 👯‍♂ 🛰/☁ 💻 (⚛ ⚖ 🕹 🎰) & 📋 👈 🏃‍♂ 🔛 👈 🎰 (✅ Uvicorn). + +✔ 👈 🀯 🕐❔ 👆 ✍ "💜" 🏢, ⚫ 💪 🔗 1⃣ 📚 2⃣ 👜. + +🕐❔ 🔗 🛰 🎰, ⚫ ⚠ 🀙 ⚫ **💜**, ✋ **🎰**, **💟** (🕹 🎰), **🕞**. 👈 🌐 🔗 🆎 🛰 🎰, 🛎 🏃‍♂ 💟, 🌐❔ 👆 🏃 📋. + +## ❎ 💜 📋 + +👆 💪 ❎ 🔫 🔗 💜 ⏮: + +=== "Uvicorn" + + * Uvicorn, 🌩-⏩ 🔫 💜, 🏗 🔛 uvloop & httptool. + +
+ + ```console + $ pip install "uvicorn[standard]" + + ---> 100% + ``` + +
+ + !!! tip + ❎ `standard`, Uvicorn 🔜 ❎ & ⚙ 👍 ➕ 🔗. + + 👈 ✅ `uvloop`, ↕-🎭 💧-♻ `asyncio`, 👈 🚚 🊏 🛠 🎭 📈. + +=== "Hypercorn" + + * Hypercorn, 🔫 💜 🔗 ⏮ 🇺🇞🔍/2⃣. + +
+ + ```console + $ pip install hypercorn + + ---> 100% + ``` + +
+ + ...⚖ 🙆 🎏 🔫 💜. + +## 🏃 💜 📋 + +👆 💪 ‎ 🏃 👆 🈞 🎏 🌌 👆 ✔ ⌛ 🔰, ✋ 🍵 `--reload` 🎛, ✅: + +=== "Uvicorn" + +
+ + ```console + $ uvicorn main:app --host 0.0.0.0 --port 80 + + INFO: Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit) + ``` + +
+ +=== "Hypercorn" + +
+ + ```console + $ hypercorn main:app --bind 0.0.0.0:80 + + Running on 0.0.0.0:8080 over http (CTRL + C to quit) + ``` + +
+ +!!! warning + 💭 ❎ `--reload` 🎛 🚥 👆 ⚙ ⚫. + + `--reload` 🎛 🍎 🌅 🌅 ℹ, 🌅 ⚠, ♒. + + ⚫ ℹ 📚 ⏮ **🛠**, ✋ 👆 **🚫🔜 🚫** ⚙ ⚫ **🏭**. + +## Hypercorn ⏮ 🎻 + +💃 & **FastAPI** ⚓ 🔛 AnyIO, ❔ ⚒ 👫 🔗 ⏮ 👯‍♂ 🐍 🐩 🗃 ✳ & 🎻. + +👐, Uvicorn ⏳ 🕎 🔗 ⏮ ✳, & ⚫ 🛎 ⚙ `uvloop`, ↕-🎭 💧-♻ `asyncio`. + +✋ 🚥 👆 💚 🔗 ⚙ **🎻**, ‎ 👆 💪 ⚙ **Hypercorn** ⚫ 🐕‍🊺 ⚫. 👶 + +### ❎ Hypercorn ⏮ 🎻 + +🥇 👆 💪 ❎ Hypercorn ⏮ 🎻 🐕‍🊺: + +
+ +```console +$ pip install "hypercorn[trio]" +---> 100% +``` + +
+ +### 🏃 ⏮ 🎻 + +‎ 👆 💪 🚶‍♀ 📋 ⏞ 🎛 `--worker-class` ⏮ 💲 `trio`: + +
+ +```console +$ hypercorn main:app --worker-class trio +``` + +
+ +& 👈 🔜 ▶ Hypercorn ⏮ 👆 📱 ⚙ 🎻 👩‍💻. + +🔜 👆 💪 ⚙ 🎻 🔘 👆 📱. ⚖ 👍, 👆 💪 ⚙ AnyIO, 🚧 👆 📟 🔗 ⏮ 👯‍♂ 🎻 & ✳. 👶 + +## 🛠 🔧 + +👫 🖌 🏃 💜 📋 (📧.Ⓜ Uvicorn), ▶ **👁 🛠**, 👂 🔛 🌐 📢 (`0.0.0.0`) 🔛 🔁 ⛮ (✅ `80`). + +👉 🔰 💭. ✋ 👆 🔜 🎲 💚 ✊ 💅 🌖 👜, 💖: + +* 💂‍♂ - 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* 🧬 (🔢 🛠 🏃) +* 💟 +* ⏮ 🔁 ⏭ ▶ + +👀 🔜 💬 👆 🌅 🔃 🔠 👫 🔧, ❔ 💭 🔃 👫, & 🧱 🖌 ⏮ 🎛 🍵 👫 ⏭ 📃. 👶 diff --git a/docs/em/docs/deployment/server-workers.md b/docs/em/docs/deployment/server-workers.md new file mode 100644 index 000000000..ca068d744 --- /dev/null +++ b/docs/em/docs/deployment/server-workers.md @@ -0,0 +1,178 @@ +# 💜 👚‍🏭 - 🐁 ⏮ Uvicorn + +➡ ✅ 🔙 👈 🛠 🔧 ⚪➡ ⏭: + +* 💂‍♂ - 🇺🇞🔍 +* 🏃‍♂ 🔛 🕎 +* ⏏ +* **🧬 (🔢 🛠 🏃)** +* 💟 +* ⏮ 🔁 ⏭ ▶ + +🆙 👉 ☝, ⏮ 🌐 🔰 🩺, 👆 ✔ 🎲 🏃‍♂ **💜 📋** 💖 Uvicorn, 🏃‍♂ **👁 🛠**. + +🕐❔ 🛠 🈞 👆 🔜 🎲 💚 ✔ **🧬 🛠** ✊ 📈 **💗 🐚** & 💪 🍵 🌅 📚. + +👆 👀 ⏮ 📃 🔃 [🛠 🔧](./concepts.md){.internal-link target=_blank}, 📀 💗 🎛 👆 💪 ⚙. + +📥 👀 🔜 🎊 👆 ❔ ⚙ **🐁** ⏮ **Uvicorn 👚‍🏭 🛠**. + +!!! info + 🚥 👆 ⚙ 📊, 🖌 ⏮ ☁ ⚖ Kubernete, 👀 🔜 💬 👆 🌅 🔃 👈 ⏭ 📃: [FastAPI 📊 - ☁](./docker.md){.internal-link target=_blank}. + + 🎯, 🕐❔ 🏃 🔛 **Kubernete** 👆 🔜 🎲 **🚫** 💚 ⚙ 🐁 & ↩ 🏃 **👁 Uvicorn 🛠 📍 📊**, ✋ 👀 🔜 💬 👆 🔃 ⚫ ⏪ 👈 📃. + +## 🐁 ⏮ Uvicorn 👚‍🏭 + +**🐁** ✎ 🈞 💜 ⚙ **🇚🇻 🐩**. 👈 ⛓ 👈 🐁 💪 🍊 🈞 💖 🏺 & ✳. 🐁 ⚫ 🚫 🔗 ⏮ **FastAPI**, FastAPI ⚙ 🆕 **🔫 🐩**. + +✋ 🐁 🐕‍🊺 👷 **🛠 👚‍💌** & 🀝 👩‍💻 💬 ⚫ ❔ 🎯 **👚‍🏭 🛠 🎓** ⚙. ‎ 🐁 🔜 ▶ 1⃣ ⚖ 🌖 **👚‍🏭 🛠** ⚙ 👈 🎓. + +& **Uvicorn** ✔ **🐁-🔗 👚‍🏭 🎓**. + +⚙ 👈 🌀, 🐁 🔜 🚫 **🛠 👚‍💌**, 👂 🔛 **⛮** & **📢**. & ⚫ 🔜 **📶** 📻 👚‍🏭 🛠 🏃 **Uvicorn 🎓**. + +& ‎ 🐁-🔗 **Uvicorn 👚‍🏭** 🎓 🔜 🈚 🏭 📊 📚 🐁 🔫 🐩 FastAPI ⚙ ⚫. + +## ❎ 🐁 & Uvicorn + +
+ +```console +$ pip install "uvicorn[standard]" gunicorn + +---> 100% +``` + +
+ +👈 🔜 ❎ 👯‍♂ Uvicorn ⏮ `standard` ➕ 📊 (🀚 ↕ 🎭) & 🐁. + +## 🏃 🐁 ⏮ Uvicorn 👚‍🏭 + +‎ 👆 💪 🏃 🐁 ⏮: + +
+ +```console +$ gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:80 + +[19499] [INFO] Starting gunicorn 20.1.0 +[19499] [INFO] Listening at: http://0.0.0.0:80 (19499) +[19499] [INFO] Using worker: uvicorn.workers.UvicornWorker +[19511] [INFO] Booting worker with pid: 19511 +[19513] [INFO] Booting worker with pid: 19513 +[19514] [INFO] Booting worker with pid: 19514 +[19515] [INFO] Booting worker with pid: 19515 +[19511] [INFO] Started server process [19511] +[19511] [INFO] Waiting for application startup. +[19511] [INFO] Application startup complete. +[19513] [INFO] Started server process [19513] +[19513] [INFO] Waiting for application startup. +[19513] [INFO] Application startup complete. +[19514] [INFO] Started server process [19514] +[19514] [INFO] Waiting for application startup. +[19514] [INFO] Application startup complete. +[19515] [INFO] Started server process [19515] +[19515] [INFO] Waiting for application startup. +[19515] [INFO] Application startup complete. +``` + +
+ +➡ 👀 ⚫❔ 🔠 👈 🎛 ⛓: + +* `main:app`: 👉 🎏 ❕ ⚙ Uvicorn, `main` ⛓ 🐍 🕹 📛 "`main`",, 📁 `main.py`. & `app` 📛 🔢 👈 **FastAPI** 🈞. + * 👆 💪 🌈 👈 `main:app` 🌓 🐍 `import` 📄 💖: + + ```Python + from main import app + ``` + + * , ❀ `main:app` 🔜 🌓 🐍 `import` 🍕 `from main import app`. +* `--workers`: 🔢 👚‍🏭 🛠 ⚙, 🔠 🔜 🏃 Uvicorn 👚‍🏭, 👉 💌, 4⃣ 👚‍🏭. +* `--worker-class`: 🐁-🔗 👚‍🏭 🎓 ⚙ 👚‍🏭 🛠. + * 📥 👥 🚶‍♀ 🎓 👈 🐁 💪 🗄 & ⚙ ⏮: + + ```Python + import uvicorn.workers.UvicornWorker + ``` + +* `--bind`: 👉 💬 🐁 📢 & ⛮ 👂, ⚙ ❀ (`:`) 🎏 📢 & ⛮. + * 🚥 👆 🏃‍♂ Uvicorn 🔗, ↩ `--bind 0.0.0.0:80` (🐁 🎛) 👆 🔜 ⚙ `--host 0.0.0.0` & `--port 80`. + +🔢, 👆 💪 👀 👈 ⚫ 🎊 **🕹** (🛠 🆔) 🔠 🛠 (⚫ 🔢). + +👆 💪 👀 👈: + +* 🐁 **🛠 👚‍💌** ▶ ⏮ 🕹 `19499` (👆 💌 ⚫ 🔜 🎏 🔢). +* ‎ ⚫ ▶ `Listening at: http://0.0.0.0:80`. +* ‎ ⚫ 🔍 👈 ⚫ ✔ ⚙ 👚‍🏭 🎓 `uvicorn.workers.UvicornWorker`. +* & ‎ ⚫ ▶ **4⃣ 👚‍🏭**, 🔠 ⏮ 🚮 👍 🕹: `19511`, `19513`, `19514`, & `19515`. + +🐁 🔜 ✊ 💅 🛠 **☠ 🛠** & **🔁** 🆕 🕐 🚥 💚 🚧 🔢 👚‍🏭. 👈 ℹ 🍕 ⏮ **⏏** 🔧 ⚪➡ 📇 🔛. + +👐, 👆 🔜 🎲 💚 ✔ 🕳 🏞 ⚒ 💭 **⏏ 🐁** 🚥 💪, & **🏃 ⚫ 🔛 🕎**, ♒. + +## Uvicorn ⏮ 👚‍🏭 + +Uvicorn ✔ 🎛 ▶ & 🏃 📚 **👚‍🏭 🛠**. + +👐, 🔜, Uvicorn 🛠 🚚 👚‍🏭 🛠 🌅 📉 🌘 🐁. , 🚥 👆 💚 ✔ 🛠 👚‍💌 👉 🎚 (🐍 🎚), ‎ ⚫ 💪 👍 🔄 ⏮ 🐁 🛠 👚‍💌. + +🙆 💌, 👆 🔜 🏃 ⚫ 💖 👉: + +
+ +```console +$ uvicorn main:app --host 0.0.0.0 --port 8080 --workers 4 +INFO: Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit) +INFO: Started parent process [27365] +INFO: Started server process [27368] +INFO: Waiting for application startup. +INFO: Application startup complete. +INFO: Started server process [27369] +INFO: Waiting for application startup. +INFO: Application startup complete. +INFO: Started server process [27370] +INFO: Waiting for application startup. +INFO: Application startup complete. +INFO: Started server process [27367] +INFO: Waiting for application startup. +INFO: Application startup complete. +``` + +
+ +🕎 🆕 🎛 📥 `--workers` 💬 Uvicorn ▶ 4⃣ 👚‍🏭 🛠. + +👆 💪 👀 👈 ⚫ 🎊 **🕹** 🔠 🛠, `27365` 👪 🛠 (👉 **🛠 👚‍💌**) & 1⃣ 🔠 👚‍🏭 🛠: `27368`, `27369`, `27370`, & `27367`. + +## 🛠 🔧 + +📥 👆 👀 ❔ ⚙ **🐁** (⚖ Uvicorn) 🛠 **Uvicorn 👚‍🏭 🛠** **🔁** 🛠 🈞, ✊ 📈 **💗 🐚** 💜, & 💪 🍊 **🌅 📚**. + +⚪➡ 📇 🛠 🔧 ⚪➡ 🔛, ⚙ 👚‍🏭 🔜 ✎ ℹ ⏮ **🧬** 🍕, & 🐥 🍖 ⏮ **⏏**, ✋ 👆 💪 ✊ 💅 🎏: + +* **💂‍♂ - 🇺🇞🔍** +* **🏃‍♂ 🔛 🕎** +* ***⏏*** +* 🧬 (🔢 🛠 🏃) +* **💟** +* **⏮ 🔁 ⏭ ▶** + +## 📊 & ☁ + +⏭ 📃 🔃 [FastAPI 📊 - ☁](./docker.md){.internal-link target=_blank} 👀 🔜 💬 🎛 👆 💪 ⚙ 🍵 🎏 **🛠 🔧**. + +👀 🔜 🎊 👆 **🛂 ☁ 🖌** 👈 🔌 **🐁 ⏮ Uvicorn 👚‍🏭** & 🔢 📳 👈 💪 ⚠ 🙅 💌. + +📀 👀 🔜 🎊 👆 ❔ **🏗 👆 👍 🖌 ⚪➡ 🖌** 🏃 👁 Uvicorn 🛠 (🍵 🐁). ⚫ 🙅 🛠 & 🎲 ⚫❔ 👆 🔜 💚 🕐❔ ⚙ 📎 📊 🧟 ⚙ 💖 **Kubernete**. + +## 🌃 + +👆 💪 ⚙ **🐁** (⚖ Uvicorn) 🛠 👚‍💌 ⏮ Uvicorn 👚‍🏭 ✊ 📈 **👁-🐚 💜**, 🏃 **💗 🛠 🔗**. + +👆 💪 ⚙ 👉 🧰 & 💭 🚥 👆 ⚒ 🆙 **👆 👍 🛠 ⚙** ⏪ ✊ 💅 🎏 🛠 🔧 👆. + +✅ 👅 ⏭ 📃 💡 🔃 **FastAPI** ⏮ 📊 (✅ ☁ & Kubernete). 👆 🔜 👀 👈 👈 🧰 ✔ 🙅 🌌 ❎ 🎏 **🛠 🔧** 👍. 👶 diff --git a/docs/em/docs/deployment/versions.md b/docs/em/docs/deployment/versions.md new file mode 100644 index 000000000..8bfdf9731 --- /dev/null +++ b/docs/em/docs/deployment/versions.md @@ -0,0 +1,87 @@ +# 🔃 FastAPI ⏬ + +**FastAPI** ⏪ ➖ ⚙ 🏭 📚 🈞 & ⚙. & 💯 💰 🚧 1⃣0⃣0⃣ 💯. ✋ 🚮 🛠 🚚 🔜. + +🆕 ⚒ 🚮 🛎, 🐛 🔧 🛎, & 📟 🔁 📉. + +👈 ⚫❔ ⏮ ⏬ `0.x.x`, 👉 🎚 👈 🔠 ⏬ 💪 ⚠ ✔ 💔 🔀. 👉 ⏩ ⚛ 🛠 🏛. + +👆 💪 ✍ 🏭 🈞 ⏮ **FastAPI** ▶ 🔜 (& 👆 ✔ 🎲 🔚 ⚫ 🕰), 👆 ✔ ⚒ 💭 👈 👆 ⚙ ⏬ 👈 👷 ☑ ⏮ 🎂 👆 📟. + +## 📌 👆 `fastapi` ⏬ + +🥇 👜 👆 🔜 "📌" ⏬ **FastAPI** 👆 ⚙ 🎯 📰 ⏬ 👈 👆 💭 👷 ☑ 👆 🈞. + +🖌, ➡ 💬 👆 ⚙ ⏬ `0.45.0` 👆 📱. + +🚥 👆 ⚙ `requirements.txt` 📁 👆 💪 ✔ ⏬ ⏮: + +```txt +fastapi==0.45.0 +``` + +👈 🔜 ⛓ 👈 👆 🔜 ⚙ ⚫❔ ⏬ `0.45.0`. + +⚖ 👆 💪 📌 ⚫ ⏮: + +```txt +fastapi>=0.45.0,<0.46.0 +``` + +👈 🔜 ⛓ 👈 👆 🔜 ⚙ ⏬ `0.45.0` ⚖ 🔛, ✋ 🌘 🌘 `0.46.0`, 🖌, ⏬ `0.45.2` 🔜 🚫. + +🚥 👆 ⚙ 🙆 🎏 🧰 🛠 👆 👷‍♂, 💖 🎶, Pipenv, ⚖ 🎏, 👫 🌐 ✔ 🌌 👈 👆 💪 ⚙ 🔬 🎯 ⏬ 👆 📊. + +## 💪 ⏬ + +👆 💪 👀 💪 ⏬ (✅ ✅ ⚫❔ ⏮ 📰) [🚀 🗒](../release-notes.md){.internal-link target=_blank}. + +## 🔃 ⏬ + +📄 ⚛ 🛠 🏛, 🙆 ⏬ 🔛 `1.0.0` 💪 ⚠ 🚮 💔 🔀. + +FastAPI ⏩ 🏛 👈 🙆 "🐛" ⏬ 🔀 🐛 🔧 & 🚫-💔 🔀. + +!!! tip + "🐛" 🏁 🔢, 🖌, `0.2.3`, 🐛 ⏬ `3`. + +, 👆 🔜 💪 📌 ⏬ 💖: + +```txt +fastapi>=0.45.0,<0.46.0 +``` + +💔 🔀 & 🆕 ⚒ 🚮 "🇺🇲" ⏬. + +!!! tip + "🇺🇲" 🔢 🖕, 🖌, `0.2.3`, 🇺🇲 ⏬ `2`. + +## ♻ FastAPI ⏬ + +👆 🔜 🚮 💯 👆 📱. + +⏮ **FastAPI** ⚫ 📶 ⏩ (👏 💃), ✅ 🩺: [🔬](../tutorial/testing.md){.internal-link target=_blank} + +⏮ 👆 ✔ 💯, ‎ 👆 💪 ♻ **FastAPI** ⏬ 🌖 ⏮ 1⃣, & ⚒ 💭 👈 🌐 👆 📟 👷 ☑ 🏃 👆 💯. + +🚥 🌐 👷, ⚖ ⏮ 👆 ⚒ 💪 🔀, & 🌐 👆 💯 🚶‍♀, ‎ 👆 💪 📌 👆 `fastapi` 👈 🆕 ⏮ ⏬. + +## 🔃 💃 + +👆 🚫🔜 🚫 📌 ⏬ `starlette`. + +🎏 ⏬ **FastAPI** 🔜 ⚙ 🎯 🆕 ⏬ 💃. + +, 👆 💪 ➡ **FastAPI** ⚙ ☑ 💃 ⏬. + +## 🔃 Pydantic + +Pydantic 🔌 💯 **FastAPI** ⏮ 🚮 👍 💯, 🆕 ⏬ Pydantic (🔛 `1.0.0`) 🕧 🔗 ⏮ FastAPI. + +👆 💪 📌 Pydantic 🙆 ⏬ 🔛 `1.0.0` 👈 👷 👆 & 🔛 `2.0.0`. + +🖌: + +```txt +pydantic>=1.2.0,<2.0.0 +``` diff --git a/docs/em/docs/external-links.md b/docs/em/docs/external-links.md new file mode 100644 index 000000000..4440b1f12 --- /dev/null +++ b/docs/em/docs/external-links.md @@ -0,0 +1,91 @@ +# 🔢 🔗 & 📄 + +**FastAPI** ✔ 👑 👪 🕧 💗. + +📀 📚 🏀, 📄, 🧰, & 🏗, 🔗 **FastAPI**. + +📥 ❌ 📇 👫. + +!!! tip + 🚥 👆 ✔ 📄, 🏗, 🧰, ⚖ 🕳 🔗 **FastAPI** 👈 🚫 📇 📥, ✍ 🚲 📚 ❎ ⚫. + +## 📄 + +### 🇪🇞 + +{% if external_links %} +{% for article in external_links.articles.english %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +### 🇯🇵 + +{% if external_links %} +{% for article in external_links.articles.japanese %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +### 🇻🇳 + +{% if external_links %} +{% for article in external_links.articles.vietnamese %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +### 🇷🇺 + +{% if external_links %} +{% for article in external_links.articles.russian %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +### 🇩🇪 + +{% if external_links %} +{% for article in external_links.articles.german %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +### 🇹🇌 + +{% if external_links %} +{% for article in external_links.articles.taiwanese %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +## 📻 + +{% if external_links %} +{% for article in external_links.podcasts.english %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +## 💬 + +{% if external_links %} +{% for article in external_links.talks.english %} + +* {{ article.title }} {{ article.author }}. +{% endfor %} +{% endif %} + +## 🏗 + +⏪ 📂 🏗 ⏮ ❔ `fastapi`: + +
+
diff --git a/docs/em/docs/fastapi-people.md b/docs/em/docs/fastapi-people.md new file mode 100644 index 000000000..dc94d80da --- /dev/null +++ b/docs/em/docs/fastapi-people.md @@ -0,0 +1,178 @@ +# FastAPI 👫👫 + +FastAPI ✔ 🎆 👪 👈 🙋 👫👫 ⚪➡ 🌐 🖥. + +## 👌 - 🐛 + +🙋 ❗ 👶 + +👉 👀: + +{% if people %} +
+{% for user in people.maintainers %} + +
@{{ user.login }}
❔: {{ user.answers }}
🚲 📚: {{ user.prs }}
+{% endfor %} + +
+{% endif %} + +👀 👌 & 🐛 **FastAPI**. 👆 💪 ✍ 🌅 🔃 👈 [ℹ FastAPI - 🀚 ℹ - 🔗 ⏮ 📕](help-fastapi.md#connect-with-the-author){.internal-link target=_blank}. + +...✋ 📥 👀 💚 🎊 👆 👪. + +--- + +**FastAPI** 📚 📚 🐕‍🊺 ⚪➡ 👪. & 👀 💚 🎊 👫 💰. + +👫 👫👫 👈: + +* [ℹ 🎏 ⏮ ❔ 📂](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. +* [✍ 🚲 📚](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}. +* 📄 🚲 📚, [✎ ⚠ ✍](contributing.md#translations){.internal-link target=_blank}. + +👏 👫. 👶 👶 + +## 🌅 🊁 👩‍💻 🏁 🗓 + +👫 👩‍💻 👈 ✔ [🀝 🎏 🏆 ⏮ ❔ 📂](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank} ⏮ 🏁 🗓. 👶 + +{% if people %} +
+{% for user in people.last_month_active %} + +
@{{ user.login }}
❔ 📚: {{ user.count }}
+{% endfor %} + +
+{% endif %} + +## 🕎 + +📥 **FastAPI 🕎**. 👶 + +👫 👩‍💻 👈 ✔ [ℹ 🎏 🏆 ⏮ ❔ 📂](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank} 🔘 *🌐 🕰*. + +👫 ✔ 🎊 🕎 🀝 📚 🎏. 👶 + +{% if people %} +
+{% for user in people.experts %} + +
@{{ user.login }}
❔ 📚: {{ user.count }}
+{% endfor %} + +
+{% endif %} + +## 🔝 👚‍🔬 + +📥 **🔝 👚‍🔬**. 👶 + +👉 👩‍💻 ✔ [✍ 🏆 🚲 📚](help-fastapi.md#create-a-pull-request){.internal-link target=_blank} 👈 ✔ *🔗*. + +👫 ✔ 📉 ℹ 📟, 🧟, ✍, ♒. 👶 + +{% if people %} +
+{% for user in people.top_contributors %} + +
@{{ user.login }}
🚲 📚: {{ user.count }}
+{% endfor %} + +
+{% endif %} + +📀 📚 🎏 👚‍🔬 (🌅 🌘 💯), 👆 💪 👀 👫 🌐 FastAPI 📂 👚‍🔬 📃. 👶 + +## 🔝 👚‍🔬 + +👫 👩‍💻 **🔝 👚‍🔬**. 👶 👶 + +### 📄 ✍ + +👀 🕎 💬 👩‍❀‍👚 🇪🇞 (& 🚫 📶 👍 👶). , 👚‍🔬 🕐 👈 ✔ [**🏋 ✔ ✍**](contributing.md#translations){.internal-link target=_blank} 🧟. 🍵 👫, 📀 🚫🔜 🧟 📚 🎏 🇪🇞. + +--- + +**🔝 👚‍🔬** 👶 👶 ✔ 📄 🏆 🚲 📚 ⚪➡ 🎏, 🚚 🔆 📟, 🧟, & ✎, **✍**. + +{% if people %} +
+{% for user in people.top_reviewers %} + +
@{{ user.login }}
📄: {{ user.count }}
+{% endfor %} + +
+{% endif %} + +## 💰 + +👫 **💰**. 👶 + +👫 🔗 👇 👷 ⏮ **FastAPI** (& 🎏), ✎ 🔘 📂 💰. + +{% if sponsors %} + +{% if sponsors.gold %} + +### 🌟 💰 + +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + +{% if sponsors.silver %} + +### 🥇1st 💰 + +{% for sponsor in sponsors.silver -%} + +{% endfor %} +{% endif %} + +{% if sponsors.bronze %} + +### 🥈2nd 💰 + +{% for sponsor in sponsors.bronze -%} + +{% endfor %} +{% endif %} + +{% endif %} + +### 🎯 💰 + +{% if github_sponsors %} +{% for group in github_sponsors.sponsors %} + +
+ +{% for user in group %} +{% if user.login not in sponsors_badge.logins %} + +
@{{ user.login }}
+ +{% endif %} +{% endfor %} + +
+ +{% endfor %} +{% endif %} + +## 🔃 📊 - 📡 ℹ + +👑 🎯 👉 📃 🎊 🎯 👪 ℹ 🎏. + +✎ ✅ 🎯 👈 🛎 🌘 ⭐, & 📚 💌 🌅 😩, 💖 🀝 🎏 ⏮ ❔ & ⚖ 🚲 📚 ⏮ ✍. + +💜 ⚖ 🔠 🗓, 👆 💪 ✍ ℹ 📟 📥. + +📥 👀 🎊 💰 ⚪➡ 💰. + +👀 🏊 ▶ ℹ 📊, 📄, ⚡, ♒ (💌 🀷). diff --git a/docs/em/docs/features.md b/docs/em/docs/features.md new file mode 100644 index 000000000..19193da07 --- /dev/null +++ b/docs/em/docs/features.md @@ -0,0 +1,200 @@ +# ⚒ + +## FastAPI ⚒ + +**FastAPI** 🀝 👆 📄: + +### ⚓ 🔛 📂 🐩 + +* 🗄 🛠 🏗, ✅ 📄 ➡ 🛠, 🔢, 💪 📚, 💂‍♂, ♒. +* 🏧 📊 🏷 🧟 ⏮ 🎻 🔗 (🗄 ⚫ 🧢 🔛 🎻 🔗). +* 🔧 🀭 👫 🐩, ⏮ 😔 🔬. ↩ 👎 🧜 🔛 🔝. +* 👉 ✔ ⚙ 🏧 **👩‍💻 📟 ⚡** 📚 🇪🇞. + +### 🏧 🩺 + +🎓 🛠 🧟 & 🔬 🕞 👩‍💻 🔢. 🛠 ⚓ 🔛 🗄, 📀 💗 🎛, 2⃣ 🔌 🔢. + +* 🊁 🎚, ⏮ 🎓 🔬, 🀙 & 💯 👆 🛠 🔗 ⚪➡ 🖥. + +![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png) + +* 🎛 🛠 🧟 ⏮ 📄. + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png) + +### 🏛 🐍 + +⚫ 🌐 ⚓ 🔛 🐩 **🐍 3⃣.6⃣ 🆎** 📄 (👏 Pydantic). 🙅‍♂ 🆕 ❕ 💡. 🐩 🏛 🐍. + +🚥 👆 💪 2⃣ ⏲ ↗ ❔ ⚙ 🐍 🆎 (🚥 👆 🚫 ⚙ FastAPI), ✅ 📏 🔰: [🐍 🆎](python-types.md){.internal-link target=_blank}. + +👆 ✍ 🐩 🐍 ⏮ 🆎: + +```Python +from datetime import date + +from pydantic import BaseModel + +# Declare a variable as a str +# and get editor support inside the function +def main(user_id: str): + return user_id + + +# A Pydantic model +class User(BaseModel): + id: int + name: str + joined: date +``` + +👈 💪 ‎ ⚙ 💖: + +```Python +my_user: User = User(id=3, name="John Doe", joined="2018-07-19") + +second_user_data = { + "id": 4, + "name": "Mary", + "joined": "2018-11-30", +} + +my_second_user: User = User(**second_user_data) +``` + +!!! info + `**second_user_data` ⛓: + + 🚶‍♀ 🔑 & 💲 `second_user_data` #⃣ 🔗 🔑-💲 ❌, 🌓: `User(id=4, name="Mary", joined="2018-11-30")` + +### 👚‍🎚 🐕‍🊺 + +🌐 🛠 🏗 ⏩ & 🏋 ⚙, 🌐 🚫 💯 🔛 💗 👚‍🎚 ⏭ ▶ 🛠, 🚚 🏆 🛠 💡. + +🏁 🐍 👩‍💻 🔬 ⚫ 🆑 👈 🌅 ⚙ ⚒ "✍". + +🎂 **FastAPI** 🛠 ⚓ 😌 👈. ✍ 👷 🌐. + +👆 🔜 🛎 💪 👟 🔙 🩺. + +📥 ❔ 👆 👚‍🎚 💪 ℹ 👆: + +* 🎙 🎙 📟: + +![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png) + +* 🗒: + +![editor support](https://fastapi.tiangolo.com/img/pycharm-completion.png) + +👆 🔜 🀚 🛠 📟 👆 5⃣📆 🀔 💪 ⏭. 🖌, `price` 🔑 🔘 🎻 💪 (👈 💪 ✔ 🐊) 👈 👟 ⚪➡ 📚. + +🙅‍♂ 🌖 ⌹ ❌ 🔑 📛, 👟 🔙 & ➡ 🖖 🩺, ⚖ 📜 🆙 & 🔜 🔎 🚥 👆 😒 ⚙ `username` ⚖ `user_name`. + +### 📏 + +⚫ ✔ 🀔 **🔢** 🌐, ⏮ 📊 📳 🌐. 🌐 🔢 💪 👌-🎧 ⚫❔ 👆 💪 & 🔬 🛠 👆 💪. + +✋ 🔢, ⚫ 🌐 **"👷"**. + +### 🔬 + +* 🔬 🌅 (⚖ 🌐 ❓) 🐍 **💜 🆎**, 🔌: + * 🎻 🎚 (`dict`). + * 🎻 🎻 (`list`) ⚖ 🏬 🆎. + * 🎻 (`str`) 🏑, 🔬 🕙 & 👟 📐. + * 🔢 (`int`, `float`) ⏮ 🕙 & 👟 💲, ♒. + +* 🔬 🌅 😍 🆎, 💖: + * 📛. + * 📧. + * 🆔. + * ...& 🎏. + +🌐 🔬 🍵 👍-🏛 & 🏋 **Pydantic**. + +### 💂‍♂ & 🀝 + +💂‍♂ & 🀝 🛠. 🍵 🙆 ⚠ ⏮ 💜 ⚖ 📊 🏷. + +🌐 💂‍♂ ⚖ 🔬 🗄, 🔌: + +* 🇺🇞🔍 🔰. +* **Oauth2⃣** (⏮ **🥙 🀝**). ✅ 🔰 🔛 [Oauth2⃣ ⏮ 🥙](tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. +* 🛠 🔑: + * 🎚. + * 🔢 🔢. + * 🍪, ♒. + +➕ 🌐 💂‍♂ ⚒ ⚪➡ 💃 (🔌 **🎉 🍪**). + +🌐 🏗 ♻ 🧰 & 🊲 👈 ⏩ 🛠 ⏮ 👆 ⚙, 📊 🏪, 🔗 & ☁ 💜, ♒. + +### 🔗 💉 + +FastAPI 🔌 📶 ⏩ ⚙, ✋ 📶 🏋 🔗 💉 ⚙. + +* 🔗 💪 ✔ 🔗, 🏗 🔗 ⚖ **"📊" 🔗**. +* 🌐 **🔁 🍵** 🛠. +* 🌐 🔗 💪 🚚 💜 ⚪➡ 📚 & **↔ ➡ 🛠** ⚛ & 🏧 🧟. +* **🏧 🔬** *➡ 🛠* 🔢 🔬 🔗. +* 🐕‍🊺 🏗 👩‍💻 🀝 ⚙, **💜 🔗**, ♒. +* **🙅‍♂ ⚠** ⏮ 💜, 🕞, ♒. ✋ ⏩ 🛠 ⏮ 🌐 👫. + +### ♟ "🔌-🔌" + +⚖ 🎏 🌌, 🙅‍♂ 💪 👫, 🗄 & ⚙ 📟 👆 💪. + +🙆 🛠 🏗 🙅 ⚙ (⏮ 🔗) 👈 👆 💪 ✍ "🔌-" 👆 🈞 2⃣ ⏞ 📟 ⚙ 🎏 📊 & ❕ ⚙ 👆 *➡ 🛠*. + +### 💯 + +* 1⃣0⃣0⃣ 💯 💯 💰. +* 1⃣0⃣0⃣ 💯 🆎 ✍ 📟 🧢. +* ⚙ 🏭 🈞. + +## 💃 ⚒ + +**FastAPI** 🍕 🔗 ⏮ (& ⚓ 🔛) 💃. , 🙆 🌖 💃 📟 👆 ✔, 🔜 👷. + +`FastAPI` 🀙 🎧-🎓 `Starlette`. , 🚥 👆 ⏪ 💭 ⚖ ⚙ 💃, 🌅 🛠 🔜 👷 🎏 🌌. + +⏮ **FastAPI** 👆 🀚 🌐 **💃**'Ⓜ ⚒ (FastAPI 💃 🔛 💊): + +* 🀙 🎆 🎭. ⚫ 1⃣ ⏩ 🐍 🛠 💪, 🔛 🇷🇪 ⏮ **✳** & **🚶**. +* ** *⃣ ** 🐕‍🊺. +* -🛠 🖥 📋. +* 🕎 & 🀫 🎉. +* 💯 👩‍💻 🏗 🔛 🇞🇲. +* **⚜**, 🗜, 🎻 📁, 🎏 📚. +* **🎉 & 🍪** 🐕‍🊺. +* 1⃣0⃣0⃣ 💯 💯 💰. +* 1⃣0⃣0⃣ 💯 🆎 ✍ ✍. + +## Pydantic ⚒ + +**FastAPI** 🍕 🔗 ⏮ (& ⚓ 🔛) Pydantic. , 🙆 🌖 Pydantic 📟 👆 ✔, 🔜 👷. + +✅ 🔢 🗃 ⚓ 🔛 Pydantic, 🐜Ⓜ, 🏭Ⓜ 💜. + +👉 ⛓ 👈 📚 💌 👆 💪 🚶‍♀ 🎏 🎚 👆 🀚 ⚪➡ 📚 **🔗 💜**, 🌐 ✔ 🔁. + +🎏 ✔ 🎏 🌌 🀭, 📚 💌 👆 💪 🚶‍♀ 🎚 👆 🀚 ⚪➡ 💜 **🔗 👩‍💻**. + +⏮ **FastAPI** 👆 🀚 🌐 **Pydantic**'Ⓜ ⚒ (FastAPI ⚓ 🔛 Pydantic 🌐 💜 🚚): + +* **🙅‍♂ 🔠**: + * 🙅‍♂ 🆕 🔗 🔑 â—Ÿ-🇪🇞 💡. + * 🚥 👆 💭 🐍 🆎 👆 💭 ❔ ⚙ Pydantic. +* 🀟 🎆 ⏮ 👆 **💟/🧶/🧠**: + * ↩ Pydantic 📊 📊 👐 🎓 👆 🔬; 🚘-🛠, 🧜, ✍ & 👆 🀔 🔜 🌐 👷 ☑ ⏮ 👆 ✔ 💜. +* **⏩**: + * 📇 Pydantic ⏩ 🌘 🌐 🎏 💯 🗃. +* ✔ **🏗 📊**: + * ⚙ 🔗 Pydantic 🏷, 🐍 `typing`'Ⓜ `List` & `Dict`, ♒. + * & 💳 ✔ 🏗 💜 🔗 🎯 & 💪 🔬, ✅ & 📄 🎻 🔗. + * 👆 💪 ✔ 🙇 **🐊 🎻** 🎚 & ✔ 👫 🌐 ✔ & ✍. +* **🏧**: + * Pydantic ✔ 🛃 📊 🆎 🔬 ⚖ 👆 💪 ↔ 🔬 ⏮ 👩‍🔬 🔛 🏷 🎀 ⏮ 💳 👚‍🎚. +* 1⃣0⃣0⃣ 💯 💯 💰. diff --git a/docs/em/docs/help-fastapi.md b/docs/em/docs/help-fastapi.md new file mode 100644 index 000000000..d7b66185d --- /dev/null +++ b/docs/em/docs/help-fastapi.md @@ -0,0 +1,265 @@ +# ℹ FastAPI - 🀚 ℹ + +👆 💖 **FastAPI**❓ + +🔜 👆 💖 ℹ FastAPI, 🎏 👩‍💻, & 📕 ❓ + +⚖ 🔜 👆 💖 🀚 ℹ ⏮ **FastAPI**❓ + +📀 📶 🙅 🌌 ℹ (📚 🔌 1⃣ ⚖ 2⃣ 🖊). + +& 📀 📚 🌌 🀚 ℹ 💁‍♂. + +## 👱📔 📰 + +👆 💪 👱📔 (🐌) [**FastAPI & 👚‍👧‍👊** 📰](/newsletter/){.internal-link target=_blank} 🚧 ℹ 🔃: + +* 📰 🔃 FastAPI & 👚‍👧‍👊 👶 +* 🊮 👶 +* ⚒ 👶 +* 💔 🔀 👶 +* 💁‍♂ & 🎱 👶 + +## ⏩ FastAPI 🔛 👱📔 + +⏩ 🐶 Fastapi 🔛 **👱📔** 🀚 📰 📰 🔃 **FastAPI**. 👶 + +## ✮ **FastAPI** 📂 + +👆 💪 "✮" FastAPI 📂 (🖊 ✮ 🔌 🔝 ▶): https://github.com/tiangolo/fastapi. 👶 👶 + +❎ ✮, 🎏 👩‍💻 🔜 💪 🔎 ⚫ 🌅 💪 & 👀 👈 ⚫ ✔ ⏪ ⚠ 🎏. + +## ⌚ 📂 🗃 🚀 + +👆 💪 "⌚" FastAPI 📂 (🖊 "⌚" 🔌 🔝 ▶): https://github.com/tiangolo/fastapi. 👶 + +📀 👆 💪 🖊 "🚀 🕎". + +🔚 ⚫, 👆 🔜 📚 📚 (👆 📧) 🕐❔ 📀 🆕 🚀 (🆕 ⏬) **FastAPI** ⏮ 🐛 🔧 & 🆕 ⚒. + +## 🔗 ⏮ 📕 + +👆 💪 🔗 ⏮ 👀 (🇹🇊 🇩🇬 / `tiangolo`), 📕. + +👆 💪: + +* ⏩ 👀 🔛 **📂**. + * 👀 🎏 📂 ℹ 🏗 👀 ✔ ✍ 👈 💪 ℹ 👆. + * ⏩ 👀 👀 🕐❔ 👀 ✍ 🆕 📂 ℹ 🏗. +* ⏩ 👀 🔛 **👱📔** ⚖ ☠. + * 💬 👀 ❔ 👆 ⚙ FastAPI (👀 💌 👂 👈). + * 👂 🕐❔ 👀 ⚒ 🎉 ⚖ 🚀 🆕 🧰. + * 👆 💪 ⏩ 🐶 Fastapi 🔛 👱📔 (🎏 🏧). +* 🔗 ⏮ 👀 🔛 **👱📔**. + * 👂 🕐❔ 👀 ⚒ 🎉 ⚖ 🚀 🆕 🧰 (👐 👀 ⚙ 👱📔 🌖 🛎 🀷 ♂). +* ✍ ⚫❔ 👀 ✍ (⚖ ⏩ 👀) 🔛 **🇞🇲.** ⚖ **🔉**. + * ✍ 🎏 💭, 📄, & ✍ 🔃 🧰 👀 ✔ ✍. + * ⏩ 👀 ✍ 🕐❔ 👀 ✍ 🕳 🆕. + +## 👱📔 🔃 **FastAPI** + +👱📔 🔃 **FastAPI** & ➡ 👀 & 🎏 💭 ⚫❔ 👆 💖 ⚫. 👶 + +👀 💌 👂 🔃 ❔ **FastAPI** 💆‍♂ ⚙, ⚫❔ 👆 ✔ 💖 ⚫, ❔ 🏗/🏢 👆 ⚙ ⚫, ♒. + +## 🗳 FastAPI + +* 🗳 **FastAPI** 📐. +* 🗳 **FastAPI** 📱. +* 💬 👆 ⚙ **FastAPI** 🔛 ℹ. + +## ℹ 🎏 ⏮ ❔ 📂 + +👆 💪 🔄 & ℹ 🎏 ⏮ 👫 ❔: + +* 📂 💬 +* 📂 ❔ + +📚 💌 👆 5⃣📆 ⏪ 💭 ❔ 📚 ❔. 👶 + +🚥 👆 🀝 📚 👫👫 ⏮ 👫 ❔, 👆 🔜 ▶ 🛂 [FastAPI 🕎](fastapi-people.md#experts){.internal-link target=_blank}. 👶 + +💭, 🏆 ⚠ ☝: 🔄 😇. 👫👫 👟 ⏮ 👫 😩 & 📚 💌 🚫 💭 🏆 🌌, ✋ 🔄 🏆 👆 💪 😇. 👶 + +💭 **FastAPI** 👪 😇 & 👍. 🎏 🕰, 🚫 🚫 🎭 ⚖ 😛 🎭 ‵ 🎏. 👥 ✔ ✊ 💅 🔠 🎏. + +--- + +📥 ❔ ℹ 🎏 ⏮ ❔ (💬 ⚖ ❔): + +### 🀔 ❔ + +* ✅ 🚥 👆 💪 🀔 ⚫❔ **🎯** & ⚙ 💌 👚‍💌 💬. + +* ‎ ✅ 🚥 ❔ (⭕ 👪 ❔) **🆑**. + +* 📚 💌 ❔ 💭 🔃 👜 ⚗ ⚪➡ 👩‍💻, ✋ 📀 💪 **👍** 1⃣. 🚥 👆 💪 🀔 ⚠ & ⚙ 💌 👍, 👆 💪 💪 🀔 👍 **🎛 ⚗**. + +* 🚥 👆 💪 🚫 🀔 ❔, 💭 🌖 **ℹ**. + +### 🔬 ⚠ + +🌅 💌 & 🏆 ❔ 📀 🕳 🔗 👚‍💌 **⏮ 📟**. + +📚 💌 👫 🔜 🕎 📁 🧬 📟, ✋ 👈 🚫 🥃 **🔬 ⚠**. + +* 👆 💪 💭 👫 🚚 ⭐, 🔬, 🖌, 👈 👆 💪 **📁-📋** & 🏃 🌐 👀 🎏 ❌ ⚖ 🎭 👫 👀, ⚖ 🀔 👫 ⚙ 💌 👍. + +* 🚥 👆 😟 💁‍♂ 👍, 👆 💪 🔄 **✍ 🖌** 💖 👈 👆, 🧢 🔛 📛 ⚠. ✔ 🀯 👈 👉 💪 ✊ 📚 🕰 & ⚫ 💪 👻 💭 👫 ✍ ⚠ 🥇. + +### 🀔 ⚗ + +* ⏮ 💆‍♂ 💪 🀔 ❔, 👆 💪 🀝 👫 💪 **❔**. + +* 📚 💌, ⚫ 👍 🀔 👫 **📈 ⚠ ⚖ ⚙ 💌**, ↩ 📀 5⃣📆 👍 🌌 ❎ ⚫ 🌘 ⚫❔ 👫 🔄. + +### 💭 🔐 + +🚥 👫 📚, 📀 ↕ 🀞 👆 🔜 ✔ ❎ 👫 ⚠, ㊗, **👆 💂**❗ 🊞 + +* 🔜, 🚥 👈 ❎ 👫 ⚠, 👆 💪 💭 👫: + + * 📂 💬: ™ 🏀 **❔**. + * 📂 ❔: **🔐** ❔**. + +## ⌚ 📂 🗃 + +👆 💪 "⌚" FastAPI 📂 (🖊 "⌚" 🔌 🔝 ▶): https://github.com/tiangolo/fastapi. 👶 + +🚥 👆 🖊 "👀" ↩ "🚀 🕎" 👆 🔜 📚 📚 🕐❔ 👱 ✍ 🆕 ❔ ⚖ ❔. 👆 💪 ✔ 👈 👆 🕎 💚 🚚 🔃 🆕 ❔, ⚖ 💬, ⚖ 🎞, ♒. + +‎ 👆 💪 🔄 & ℹ 👫 ❎ 👈 ❔. + +## 💭 ❔ + +👆 💪 ✍ 🆕 ❔ 📂 🗃, 🖌: + +* 💭 **❔** ⚖ 💭 🔃 **⚠**. +* 🀔 🆕 **⚒**. + +**🗒**: 🚥 👆 ⚫, ‎ 👀 🔜 💭 👆 ℹ 🎏. 👶 + +## 📄 🚲 📚 + +👆 💪 ℹ 👀 📄 🚲 📚 ⚪➡ 🎏. + +🔄, 🙏 🔄 👆 🏆 😇. 👶 + +--- + +📥 ⚫❔ ✔ 🀯 & ❔ 📄 🚲 📚: + +### 🀔 ⚠ + +* 🥇, ⚒ 💭 👆 **🀔 ⚠** 👈 🚲 📚 🔄 ❎. ⚫ 💪 ✔ 📏 💬 📂 💬 ⚖ ❔. + +* 📀 👍 🀞 👈 🚲 📚 🚫 🀙 💪 ↩ ⚠ 💪 ❎ **🎏 🌌**. ‎ 👆 💪 🀔 ⚖ 💭 🔃 👈. + +### 🚫 😟 🔃 👗 + +* 🚫 😟 💁‍♂ 🌅 🔃 👜 💖 💕 📧 👗, 👀 🔜 🥬 & 🔗 🛃 💕 ❎. + +* 🚫 😟 🔃 👗 🚫, 📀 ⏪ 🏧 🧰 ✅ 👈. + +& 🚥 📀 🙆 🎏 👗 ⚖ ⚖ 💪, 👀 🔜 💭 🔗 👈, ⚖ 👀 🔜 🚮 💕 🔛 🔝 ⏮ 💪 🔀. + +### ✅ 📟 + +* ✅ & ✍ 📟, 👀 🚥 ⚫ ⚒ 🔑, **🏃 ⚫ 🌐** & 👀 🚥 ⚫ 🀙 ❎ ⚠. + +* ‎ **🏀** 💬 👈 👆 👈, 👈 ❔ 👀 🔜 💭 👆 🀙 ✅ ⚫. + +!!! info + 👐, 👀 💪 🚫 🎯 💙 🎞 👈 ✔ 📚 ✔. + + 📚 🕰 ⚫ ✔ 🔚 👈 📀 🎞 ⏮ 3⃣, 5⃣ ⚖ 🌅 ✔, 🎲 ↩ 📛 😌, ✋ 🕐❔ 👀 ✅ 🎞, 👫 🀙 💔, ✔ 🐛, ⚖ 🚫 ❎ ⚠ 👫 🛄 ❎. 👶 + + , ⚫ 🀙 ⚠ 👈 👆 🀙 ✍ & 🏃 📟, & ➡ 👀 💭 🏀 👈 👆. 👶 + +* 🚥 🇵🇷 💪 📉 🌌, 👆 💪 💭 👈, ✋ 📀 🙅‍♂ 💪 💁‍♂ 😟, 📀 5⃣📆 📚 🀔 ☝ 🎑 (& 👀 🔜 ✔ 👇 👍 👍 👶), ⚫ 👻 🚥 👆 💪 🎯 🔛 ⚛ 👜. + +### 💯 + +* ℹ 👀 ✅ 👈 🇵🇷 ✔ **💯**. + +* ✅ 👈 💯 **❌** ⏭ 🇵🇷. 👶 + +* ‎ ✅ 👈 💯 **🚶‍♀** ⏮ 🇵🇷. 👶 + +* 📚 🎞 🚫 ✔ 💯, 👆 💪 **🎗** 👫 🚮 💯, ⚖ 👆 💪 **🀔** 💯 👆. 👈 1⃣ 👜 👈 🍎 🌅 🕰 & 👆 💪 ℹ 📚 ⏮ 👈. + +* ‎ 🏀 ⚫❔ 👆 🔄, 👈 🌌 👀 🔜 💭 👈 👆 ✅ ⚫. 👶 + +## ✍ 🚲 📚 + +👆 💪 [📉](contributing.md){.internal-link target=_blank} ℹ 📟 ⏮ 🚲 📚, 🖌: + +* 🔧 🀭 👆 🔎 🔛 🧟. +* 💰 📄, 📹, ⚖ 📻 👆 ✍ ⚖ 🔎 🔃 FastAPI ✍ 👉 📁. + * ⚒ 💭 👆 🚮 👆 🔗 ▶ 🔗 📄. +* ℹ [💬 🧟](contributing.md#translations){.internal-link target=_blank} 👆 🇪🇞. + * 👆 💪 ℹ 📄 ✍ ✍ 🎏. +* 🛠 🆕 🧟 📄. +* 🔧 ♻ ❔/🐛. + * ⚒ 💭 🚮 💯. +* 🚮 🆕 ⚒. + * ⚒ 💭 🚮 💯. + * ⚒ 💭 🚮 🧟 🚥 ⚫ 🔗. + +## ℹ 🚧 FastAPI + +ℹ 👀 🚧 **FastAPI**❗ 👶 + +📀 📚 👷, & 🏆 ⚫, **👆** 💪 ⚫. + +👑 📋 👈 👆 💪 ▶ 🔜: + +* [ℹ 🎏 ⏮ ❔ 📂](#help-others-with-questions-in-github){.internal-link target=_blank} (👀 📄 🔛). +* [📄 🚲 📚](#review-pull-requests){.internal-link target=_blank} (👀 📄 🔛). + +👈 2⃣ 📋 ⚫❔ **🍎 🕰 🏆**. 👈 👑 👷 🏆 FastAPI. + +🚥 👆 💪 ℹ 👀 ⏮ 👈, **👆 🀝 👀 🚧 FastAPI** & ⚒ 💭 ⚫ 🚧 **🛠 ⏩ & 👻**. 👶 + +## 🛑 💬 + +🛑 👶 😧 💬 💜 👶 & 🀙 👅 ⏮ 🎏 FastAPI 👪. + +!!! tip + ❔, 💭 👫 📂 💬, 📀 🌅 👍 🀞 👆 🔜 📚 ℹ [FastAPI 🕎](fastapi-people.md#experts){.internal-link target=_blank}. + + ⚙ 💬 🕎 🎏 🏢 💬. + +📀 ⏮ 🥊 💬, ✋ ⚫ 🚫 ✔ 📻 & 🏧 ⚒, 💬 🌖 ⚠, 😧 🔜 👍 ⚙. + +### 🚫 ⚙ 💬 ❔ + +✔ 🀯 👈 💬 ✔ 🌅 "🆓 💬", ⚫ ⏩ 💭 ❔ 👈 💁‍♂ 🏢 & 🌅 ⚠ ❔,, 👆 💪 🚫 📚 ❔. + +📂, 📄 🔜 🊮 👆 ✍ ▶ ❔ 👈 👆 💪 🌖 💪 🀚 👍 ❔, ⚖ ❎ ⚠ 👆 ⏭ 💬. & 📂 👀 💪 ⚒ 💭 👀 🕧 ❔ 🌐, 🚥 ⚫ ✊ 🕰. 👀 💪 🚫 🀙 👈 ⏮ 💬 ⚙. 👶 + +💬 💬 ⚙ 🚫 💪 📇 📂, ❔ & ❔ 5⃣📆 🀚 💞 💬. & 🕎 🕐 📂 💯 ▶ [FastAPI 🕎](fastapi-people.md#experts){.internal-link target=_blank}, 👆 🔜 🌅 🎲 📚 🌅 🙋 📂. + +🔛 🎏 🚄, 📀 💯 👩‍💻 💬 ⚙, 📀 ↕ 🀞 👆 🔜 🔎 👱 💬 📀, 🌖 🌐 🕰. 👶 + +## 💰 📕 + +👆 💪 💰 🐕‍🊺 📕 (👀) 🔘 📂 💰. + +📀 👆 💪 🛍 👀 ☕ 👶 👶 💬 👏. 👶 + +& 👆 💪 ▶ 🥇1st ⚖ 🌟 💰 FastAPI. 👶 👶 + +## 💰 🧰 👈 🏋 FastAPI + +👆 ✔ 👀 🧟, FastAPI 🧍 🔛 ⌚ 🐘, 💃 & Pydantic. + +👆 💪 💰: + +* ✡ 🍏 (Pydantic) +* 🗜 (💃, Uvicorn) + +--- + +👏 ❗ 👶 diff --git a/docs/em/docs/history-design-future.md b/docs/em/docs/history-design-future.md new file mode 100644 index 000000000..7e39972de --- /dev/null +++ b/docs/em/docs/history-design-future.md @@ -0,0 +1,79 @@ +# 📖, 🔧 & 🔮 + +🕰 🏁, **FastAPI** 👩‍💻 💭: + +> ⚫❔ 📖 👉 🏗 ❓ ⚫ 😑 ✔ 👟 ⚪➡ 🕳 👌 👩‍❀‍👚 🗓 [...] + +📥 🐥 🍖 👈 📖. + +## 🎛 + +👀 ✔ 🏗 🔗 ⏮ 🏗 📄 📚 1⃣2⃣🗓 (🎰 🏫, 📎 ⚙, 🔁 👚‍🏭, ☁ 💜, ♒), ↘ 📚 🏉 👩‍💻. + +🍕 👈, 👀 💪 🔬, 💯 & ⚙ 📚 🎛. + +📖 **FastAPI** 👑 🍕 📖 🚮 ⏪. + +🙆‍♀ 📄 [🎛](alternatives.md){.internal-link target=_blank}: + +
+ +**FastAPI** 🚫🔜 🔀 🚥 🚫 ⏮ 👷 🎏. + +📀 ✔ 📚 🧰 ✍ ⏭ 👈 ✔ ℹ 😮 🚮 🏗. + +👀 ✔ ❎ 🏗 🆕 🛠 📚 1⃣2⃣🗓. 🥇 👀 🔄 ❎ 🌐 ⚒ 📔 **FastAPI** ⚙ 📚 🎏 🛠, 🔌-🔌, & 🧰. + +✋ ☝, 📀 🙅‍♂ 🎏 🎛 🌘 🏗 🕳 👈 🚚 🌐 👫 ⚒, ✊ 🏆 💭 ⚪➡ ⏮ 🧰, & 🌀 👫 🏆 🌌 💪, ⚙ 🇪🇞 ⚒ 👈 ➖🚫 💪 ⏭ (🐍 3⃣.6⃣ ➕ 🆎 🔑). + +
+ +## 🔬 + +⚙ 🌐 ⏮ 🎛 👀 ✔ 🀞 💡 ⚪➡ 🌐 👫, ✊ 💭, & 🌀 👫 🏆 🌌 👀 💪 🔎 👀 & 🏉 👩‍💻 👀 ✔ 👷 ⏮. + +🖌, ⚫ 🆑 👈 🎲 ⚫ 🔜 ⚓ 🔛 🐩 🐍 🆎 🔑. + +, 🏆 🎯 ⚙ ⏪ ♻ 🐩. + +, ⏭ ▶ 📟 **FastAPI**, 👀 💞 📚 🗓 🎓 🔌 🗄, 🎻 🔗, Oauth2⃣, ♒. 🎯 👫 💛, 🔀, & 🔺. + +## 🔧 + +‎ 👀 💞 🕰 🔧 👩‍💻 "🛠" 👀 💚 ✔ 👩‍💻 (👩‍💻 ⚙ FastAPI). + +👀 💯 📚 💭 🏆 🌟 🐍 👚‍🎚: 🗒, 🆚 📟, 🎠 🧢 👚‍🎚. + +🏁 🐍 👩‍💻 🔬, 👈 📔 🔃 8⃣0⃣ 💯 👩‍💻. + +⚫ ⛓ 👈 **FastAPI** 🎯 💯 ⏮ 👚‍🎚 ⚙ 8⃣0⃣ 💯 🐍 👩‍💻. & 🏆 🎏 👚‍🎚 😑 👷 ➡, 🌐 🚮 💰 🔜 👷 🌖 🌐 👚‍🎚. + +👈 🌌 👀 💪 🔎 🏆 🌌 📉 📟 ❎ 🌅 💪, ✔ 🛠 🌐, 🆎 & ❌ ✅, ♒. + +🌐 🌌 👈 🚚 🏆 🛠 💡 🌐 👩‍💻. + +## 📄 + +⏮ 🔬 📚 🎛, 👀 💭 👈 👀 🔜 ⚙ **Pydantic** 🚮 📈. + +‎ 👀 📉 ⚫, ⚒ ⚫ 🍕 🛠 ⏮ 🎻 🔗, 🐕‍🊺 🎏 🌌 🔬 ⚛ 📄, & 📉 👚‍🎚 🐕‍🊺 (🆎 ✅, ✍) ⚓ 🔛 💯 📚 👚‍🎚. + +⏮ 🛠, 👀 📉 **💃**, 🎏 🔑 📄. + +## 🛠 + +🕰 👀 ▶ 🏗 **FastAPI** ⚫, 🏆 🍖 ⏪ 🥉, 🔧 🔬, 📄 & 🧰 🔜, & 💡 🔃 🐩 & 🔧 🆑 & 🍋. + +## 🔮 + +👉 ☝, ⚫ ⏪ 🆑 👈 **FastAPI** ⏮ 🚮 💭 ➖ ⚠ 📚 👫👫. + +⚫ 💆‍♂ 👐 🀭 ⏮ 🎛 ♣ 📚 ⚙ 💌 👍. + +📚 👩‍💻 & 🏉 ⏪ 🪀 🔛 **FastAPI** 👫 🏗 (🔌 👀 & 👇 🏉). + +✋, 📀 📚 📈 & ⚒ 👟. + +**FastAPI** ✔ 👑 🔮 ‎. + +& [👆 ℹ](help-fastapi.md){.internal-link target=_blank} 📉 👍. diff --git a/docs/em/docs/index.md b/docs/em/docs/index.md new file mode 100644 index 000000000..ea8a9d41c --- /dev/null +++ b/docs/em/docs/index.md @@ -0,0 +1,469 @@ +

+ FastAPI +

+

+ FastAPI 🛠, ↕ 🎭, ⏩ 💡, ⏩ 📟, 🔜 🏭 +

+

+ + Test + + + Coverage + + + Package version + + + Supported Python versions + +

+ +--- + +**🧟**: https://fastapi.tiangolo.com + +**ℹ 📟**: https://github.com/tiangolo/fastapi + +--- + +FastAPI 🏛, ⏩ (↕-🎭), 🕞 🛠 🏗 🛠 ⏮ 🐍 3⃣.7⃣ ➕ ⚓ 🔛 🐩 🐍 🆎 🔑. + +🔑 ⚒: + +* **⏩**: 📶 ↕ 🎭, 🔛 🇷🇪 ⏮ **✳** & **🚶** (👏 💃 & Pydantic). [1⃣ ⏩ 🐍 🛠 💪](#performance). +* **⏩ 📟**: 📈 🚅 🛠 ⚒ 🔃 2⃣0⃣0⃣ 💯 3⃣0⃣0⃣ 💯. * +* **👩‍❀‍👚 🐛**: 📉 🔃 4⃣0⃣ 💯 🗿 (👩‍💻) 📉 ❌. * +* **🏋**: 👑 👚‍🎚 🐕‍🊺. 🛠 🌐. 🌘 🕰 🛠. +* **⏩**: 🔧 ⏩ ⚙ & 💡. 🌘 🕰 👂 🩺. +* **📏**: 📉 📟 ❎. 💗 ⚒ ⚪➡ 🔠 🔢 📄. 👩‍❀‍👚 🐛. +* **🏋**: 🀚 🏭-🔜 📟. ⏮ 🏧 🎓 🧟. +* **🐩-⚓**: ⚓ 🔛 (& 🍕 🔗 ⏮) 📂 🐩 🔗: 🗄 (⏪ 💭 🊁) & 🎻 🔗. + +* ⚖ ⚓ 🔛 💯 🔛 🔗 🛠 🏉, 🏗 🏭 🈞. + +## 💰 + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor -%} +{%- for sponsor in sponsors.silver -%} + +{% endfor %} +{% endif %} + + + +🎏 💰 + +## 🀔 + +"_[...] 👀 ⚙ **FastAPI** 📚 👫 📆. [...] 👀 🀙 📆 ⚙ ⚫ 🌐 👇 🏉 **⚗ 🐕‍🊺 🀞‍♂**. 👫 💆‍♂ 🛠 🔘 🐚 **🖥** 🏬 & **📠** 🏬._" + +
🧿 🇵🇰 - 🀞‍♂ (🇊🇪)
+ +--- + +"_👥 🛠 **FastAPI** 🗃 🀖 **🎂** 💜 👈 💪 🔢 🚚 **🔮**. [👚📛]_" + +
🇮🇹 🇞🇻, 👚📛 👚📛, & 🇱🇰 🕉 🕉 - 🙃 (🇊🇪)
+ +--- + +"_**📺** 🙏 📣 📂-ℹ 🚀 👆 **⚔ 🧟** 🎶 🛠: **📚**❗ [🏗 ⏮ **FastAPI**]_" + +
✡ 🍏, 👖 🇪🇞, 🌲 🍏 - 📺 (🇊🇪)
+ +--- + +"_👀 🀭 🌕 😄 🔃 **FastAPI**. ⚫ 🎊 ❗_" + +
✡ 🇭🇰 - 🐍 🔢 📻 🊠 (🇊🇪)
+ +--- + +"_🀙, ⚫❔ 👆 ✔ 🏗 👀 💎 💠 & 🇵🇱. 📚 🌌, ⚫ ⚫❔ 👀 💚 **🀗** - ⚫ 🀙 😍 👀 👱 🏗 👈._" + +
✡ 🗄 - 🀗 👌 (🇊🇪)
+ +--- + +"_🚥 👆 👀 💡 1⃣ **🏛 🛠** 🏗 🎂 🔗, ✅ 👅 **FastAPI** [...] ⚫ ⏩, ⏩ ⚙ & ⏩ 💡 [...]_" + +"_👥 ✔ 🎛 🀭 **FastAPI** 👆 **🔗** [...] 👀 💭 👆 🔜 💖 ⚫ [...]_" + +
🇱🇚 🇞🇲 - ✡ Honnibal - 💥 👲 🕎 - 🌈 👌 (🇊🇪) - (🇊🇪)
+ +--- + +"_🚥 🙆 👀 🏗 🏭 🐍 🛠, 👀 🔜 🏆 👍 **FastAPI**. ⚫ **💎 🏗**, **🙅 ⚙** & **🏆 🛠**, ⚫ ✔ ▶ **🔑 🊲** 👆 🛠 🥇 🛠 🎛 & 🚘 📚 🏧 & 🐕‍🊺 ✅ 👆 🕹 🔫 👚‍💻._" + +
🇹🇊 🍰 - 📻 (🇊🇪)
+ +--- + +## **🏎**, FastAPI 🇳🇚 + + + +🚥 👆 🏗 ✳ 📱 ⚙ 📶 ↩ 🕞 🛠, ✅ 👅 **🏎**. + +**🏎** FastAPI 🐥 👪. & ⚫ 🎯 **FastAPI 🇳🇚**. 👶 👶 👶 + +## 📄 + +🐍 3⃣.7⃣ ➕ + +FastAPI 🧍 🔛 ⌚ 🐘: + +* 💃 🕞 🍕. +* Pydantic 📊 🍕. + +## 👷‍♂ + +
+ +```console +$ pip install fastapi + +---> 100% +``` + +
+ +👆 🔜 💪 🔫 💜, 🏭 ✅ Uvicorn ⚖ Hypercorn. + +
+ +```console +$ pip install "uvicorn[standard]" + +---> 100% +``` + +
+ +## 🖌 + +### ✍ ⚫ + +* ✍ 📁 `main.py` ⏮: + +```Python +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} +``` + +
+⚖ ⚙ async def... + +🚥 👆 📟 ⚙ `async` / `await`, ⚙ `async def`: + +```Python hl_lines="9 14" +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +async def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +async def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} +``` + +**🗒**: + +🚥 👆 🚫 💭, ✅ _"🏃 ❓" _ 📄 🔃 `async` & `await` 🩺. + +
+ +### 🏃 ⚫ + +🏃 💜 ⏮: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +INFO: Started reloader process [28720] +INFO: Started server process [28722] +INFO: Waiting for application startup. +INFO: Application startup complete. +``` + +
+ +
+🔃 📋 uvicorn main:app --reload... + +📋 `uvicorn main:app` 🔗: + +* `main`: 📁 `main.py` (🐍 "🕹"). +* `app`: 🎚 ✍ 🔘 `main.py` ⏮ ⏞ `app = FastAPI()`. +* `--reload`: ⚒ 💜 ⏏ ⏮ 📟 🔀. 🕎 👉 🛠. + +
+ +### ✅ ⚫ + +📂 👆 🖥 http://127.0.0.1:8000/items/5?q=somequery. + +👆 🔜 👀 🎻 📚: + +```JSON +{"item_id": 5, "q": "somequery"} +``` + +👆 ⏪ ✍ 🛠 👈: + +* 📚 🇺🇞🔍 📚 _➡_ `/` & `/items/{item_id}`. +* 👯‍♂ _➡_ ✊ `GET` 🛠 (💭 🇺🇞🔍 _👩‍🔬_). +* _➡_ `/items/{item_id}` ✔ _➡ 🔢_ `item_id` 👈 🔜 `int`. +* _➡_ `/items/{item_id}` ✔ 📊 `str` _🔢 = `q`. + +### 🎓 🛠 🩺 + +🔜 🚶 http://127.0.0.1:8000/docs. + +👆 🔜 👀 🏧 🎓 🛠 🧟 (🚚 🊁 🎚): + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) + +### 🎛 🛠 🩺 + +& 🔜, 🚶 http://127.0.0.1:8000/redoc. + +👆 🔜 👀 🎛 🏧 🧟 (🚚 📄): + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) + +## 🖌 ♻ + +🔜 🔀 📁 `main.py` 📚 💪 ⚪➡ `PUT` 📚. + +📣 💪 ⚙ 🐩 🐍 🆎, 👏 Pydantic. + +```Python hl_lines="4 9-12 25-27" +from typing import Union + +from fastapi import FastAPI +from pydantic import BaseModel + +app = FastAPI() + + +class Item(BaseModel): + name: str + price: float + is_offer: Union[bool, None] = None + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} + + +@app.put("/items/{item_id}") +def update_item(item_id: int, item: Item): + return {"item_name": item.name, "item_id": item_id} +``` + +💜 🔜 🔃 🔁 (↩ 👆 🚮 `--reload` `uvicorn` 📋 🔛). + +### 🎓 🛠 🩺 ♻ + +🔜 🚶 http://127.0.0.1:8000/docs. + +* 🎓 🛠 🧟 🔜 🔁 ℹ, 🔌 🆕 💪: + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png) + +* 🖊 🔛 🔌 "🔄 ⚫ 👅", ⚫ ✔ 👆 🥧 🔢 & 🔗 🔗 ⏮ 🛠: + +![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png) + +* ‎ 🖊 🔛 "🛠" 🔌, 👩‍💻 🔢 🔜 🔗 ⏮ 👆 🛠, 📚 🔢, 🀚 🏁 & 🎊 👫 🔛 🖥: + +![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png) + +### 🎛 🛠 🩺 ♻ + +& 🔜, 🚶 http://127.0.0.1:8000/redoc. + +* 🎛 🧟 🔜 🎚 🆕 🔢 🔢 & 💪: + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png) + +### 🌃 + +📄, 👆 📣 **🕐** 🆎 🔢, 💪, ♒. 🔢 🔢. + +👆 👈 ⏮ 🐩 🏛 🐍 🆎. + +👆 🚫 ✔ 💡 🆕 ❕, 👩‍🔬 ⚖ 🎓 🎯 🗃, ♒. + +🐩 **🐍 3⃣.7⃣ ➕**. + +🖌, `int`: + +```Python +item_id: int +``` + +⚖ 🌖 🏗 `Item` 🏷: + +```Python +item: Item +``` + +...& ⏮ 👈 👁 📄 👆 🀚: + +* 👚‍🎚 🐕‍🊺, 🔌: + * 🛠. + * 🆎 ✅. +* 🔬 💜: + * 🏧 & 🆑 ❌ 🕐❔ 📊 ❌. + * 🔬 🙇 🐊 🎻 🎚. +* 🛠 🔢 💜: 👟 ⚪➡ 🕞 🐍 💜 & 🆎. 👂 ⚪➡: + * 🎻. + * ➡ 🔢. + * 🔢 🔢. + * 🍪. + * 🎚. + * 📚. + * 📁. +* 🛠 🔢 📊: 🗜 ⚪➡ 🐍 💜 & 🆎 🕞 💜 (🎻): + * 🗜 🐍 🆎 (`str`, `int`, `float`, `bool`, `list`, ♒). + * `datetime` 🎚. + * `UUID` 🎚. + * 💜 🏷. + * ...& 📚 🌖. +* 🏧 🎓 🛠 🧟, 🔌 2⃣ 🎛 👩‍💻 🔢: + * 🊁 🎚. + * 📄. + +--- + +👟 🔙 ⏮ 📟 🖌, **FastAPI** 🔜: + +* ✔ 👈 📀 `item_id` ➡ `GET` & `PUT` 📚. +* ✔ 👈 `item_id` 🆎 `int` `GET` & `PUT` 📚. + * 🚥 ⚫ 🚫, 👩‍💻 🔜 👀 ⚠, 🆑 ❌. +* ✅ 🚥 📀 📊 🔢 🔢 📛 `q` ( `http://127.0.0.1:8000/items/foo?q=somequery`) `GET` 📚. + * `q` 🔢 📣 ⏮ `= None`, ⚫ 📊. + * 🍵 `None` ⚫ 🔜 🚚 (💪 💌 ⏮ `PUT`). +* `PUT` 📚 `/items/{item_id}`, ✍ 💪 🎻: + * ✅ 👈 ⚫ ✔ ✔ 🔢 `name` 👈 🔜 `str`. + * ✅ 👈 ⚫ ✔ ✔ 🔢 `price` 👈 ✔ `float`. + * ✅ 👈 ⚫ ✔ 📊 🔢 `is_offer`, 👈 🔜 `bool`, 🚥 🎁. + * 🌐 👉 🔜 👷 🙇 🐊 🎻 🎚. +* 🗜 ⚪➡ & 🎻 🔁. +* 📄 🌐 ⏮ 🗄, 👈 💪 ⚙: + * 🎓 🧟 ⚙. + * 🏧 👩‍💻 📟 ⚡ ⚙, 📚 🇪🇞. +* 🚚 2⃣ 🎓 🧟 🕞 🔢 🔗. + +--- + +👥 🖌 🧜, ✋ 👆 ⏪ 🀚 💭 ❔ ⚫ 🌐 👷. + +🔄 🔀 ⏞ ⏮: + +```Python + return {"item_name": item.name, "item_id": item_id} +``` + +...⚪➡: + +```Python + ... "item_name": item.name ... +``` + +...: + +```Python + ... "item_price": item.price ... +``` + +...& 👀 ❔ 👆 👚‍🎚 🔜 🚘-🏁 🔢 & 💭 👫 🆎: + +![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png) + +🌅 🏁 🖌 🔌 🌅 ⚒, 👀 🔰 - 👩‍💻 🊮. + +**🚘 🚚**: 🔰 - 👩‍💻 🊮 🔌: + +* 📄 **🔢** ⚪➡ 🎏 🎏 🥉: **🎚**, **🍪**, **📚 🏑** & **📁**. +* ❔ ⚒ **🔬 ⚛** `maximum_length` ⚖ `regex`. +* 📶 🏋 & ⏩ ⚙ **🔗 💉** ⚙. +* 💂‍♂ & 🀝, ✅ 🐕‍🊺 **Oauth2⃣** ⏮ **🥙 🀝** & **🇺🇞🔍 🔰** 🔐. +* 🌅 🏧 (✋ 😚 ⏩) ⚒ 📣 **🙇 🐊 🎻 🏷** (👏 Pydantic). +* **🕹** 🛠 ⏮ 🍓 & 🎏 🗃. +* 📚 ➕ ⚒ (👏 💃): + * ** *⃣ ** + * 📶 ⏩ 💯 ⚓ 🔛 🇞🇲 & `pytest` + * **⚜** + * **🍪 🎉** + * ...& 🌖. + +## 🎭 + +🔬 🇞🇲 📇 🎊 **FastAPI** 🈞 🏃‍♂ 🔜 Uvicorn 1⃣ ⏩ 🐍 🛠 💪, 🕎 🔛 💃 & Uvicorn 👫 (⚙ 🔘 FastAPI). (*) + +🀔 🌖 🔃 ⚫, 👀 📄 📇. + +## 📊 🔗 + +⚙ Pydantic: + +* ujson - ⏩ 🎻 "🎻". +* email_validator - 📧 🔬. + +⚙ 💃: + +* httpx - ✔ 🚥 👆 💚 ⚙ `TestClient`. +* jinja2 - ✔ 🚥 👆 💚 ⚙ 🔢 📄 📳. +* python-multipart - ✔ 🚥 👆 💚 🐕‍🊺 📚 "✍", ⏮ `request.form()`. +* itsdangerous - ✔ `SessionMiddleware` 🐕‍🊺. +* pyyaml - ✔ 💃 `SchemaGenerator` 🐕‍🊺 (👆 🎲 🚫 💪 ⚫ ⏮ FastAPI). +* ujson - ✔ 🚥 👆 💚 ⚙ `UJSONResponse`. + +⚙ FastAPI / 💃: + +* uvicorn - 💜 👈 📐 & 🍊 👆 🈞. +* orjson - ✔ 🚥 👆 💚 ⚙ `ORJSONResponse`. + +👆 💪 ❎ 🌐 👫 ⏮ `pip install "fastapi[all]"`. + +## 🛂 + +👉 🏗 ® 🔜 ⚖ 🇩🇪 🛂. diff --git a/docs/em/docs/project-generation.md b/docs/em/docs/project-generation.md new file mode 100644 index 000000000..5fd667ad1 --- /dev/null +++ b/docs/em/docs/project-generation.md @@ -0,0 +1,84 @@ +# 🏗 ⚡ - 📄 + +👆 💪 ⚙ 🏗 🚂 🀚 ▶, ⚫ 🔌 📚 ▶ ⚒ 🆙, 💂‍♂, 💜 & 🛠 🔗 ⏪ ⌛ 👆. + +🏗 🚂 🔜 🕧 ✔ 📶 🙃 🖥 👈 👆 🔜 ℹ & 🛠 👆 👍 💪, ✋ ⚫ 💪 👍 ▶ ☝ 👆 🏗. + +## 🌕 📚 FastAPI ✳ + +📂: https://github.com/tiangolo/full-stack-fastapi-postgresql + +### 🌕 📚 FastAPI ✳ - ⚒ + +* 🌕 **☁** 🛠 (☁ 🧢). +* ☁ 🐝 📳 🛠. +* **☁ ✍** 🛠 & 🛠 🇧🇿 🛠. +* **🏭 🔜** 🐍 🕞 💜 ⚙ Uvicorn & 🐁. +* 🐍 **FastAPI** 👩‍💻: + * **⏩**: 📶 ↕ 🎭, 🔛 🇷🇪 ⏮ **✳** & **🚶** (👏 💃 & Pydantic). + * **🏋**: 👑 👚‍🎚 🐕‍🊺. 🛠 🌐. 🌘 🕰 🛠. + * **⏩**: 🔧 ⏩ ⚙ & 💡. 🌘 🕰 👂 🩺. + * **📏**: 📉 📟 ❎. 💗 ⚒ ⚪➡ 🔠 🔢 📄. + * **🏋**: 🀚 🏭-🔜 📟. ⏮ 🏧 🎓 🧟. + * **🐩-⚓**: ⚓ 🔛 (& 🍕 🔗 ⏮) 📂 🐩 🔗: 🗄 & 🎻 🔗. + * **📚 🎏 ⚒** 🔌 🏧 🔬, 🛠, 🎓 🧟, 🀝 ⏮ Oauth2⃣ 🥙 🀝, ♒. +* **🔐 🔐** 🔁 🔢. +* **🥙 🀝** 🀝. +* **🇞🇲** 🏷 (🔬 🏺 ↔, 👫 💪 ⚙ ⏮ 🥒 👚‍🏭 🔗). +* 🔰 ▶ 🏷 👩‍💻 (🔀 & ❎ 👆 💪). +* **⚗** 🛠. +* **⚜** (✖ 🇚🇳 ℹ 🀝). +* **🥒** 👚‍🏭 👈 💪 🗄 & ⚙ 🏷 & 📟 ⚪➡ 🎂 👩‍💻 🍕. +* 🎂 👩‍💻 💯 ⚓ 🔛 **✳**, 🛠 ⏮ ☁, 👆 💪 💯 🌕 🛠 🔗, 🔬 🔛 💜. ⚫ 🏃 ☁, ⚫ 💪 🏗 🆕 💜 🏪 ⚪➡ 🖌 🔠 🕰 (👆 💪 ⚙ ✳, ✳, ✳, ⚖ ⚫❔ 👆 💚, & 💯 👈 🛠 👷). +* ⏩ 🐍 🛠 ⏮ **📂 💟** 🛰 ⚖-☁ 🛠 ⏮ ↔ 💖 ⚛ ⚗ ⚖ 🎙 🎙 📟 📂. +* **🎊** 🕞: + * 🏗 ⏮ 🎊 ✳. + * **🥙 🀝** 🚚. + * 💳 🎑. + * ⏮ 💳, 👑 🕹 🎑. + * 👑 🕹 ⏮ 👩‍💻 🏗 & 📕. + * 👀 👩‍💻 📕. + * **🇷🇪**. + * **🎊-📻**. + * **Vuetify** 🌹 🧜 🔧 🊲. + * **📕**. + * ☁ 💜 ⚓ 🔛 **👌** (📶 🀟 🎆 ⏮ 🎊-📻). + * ☁ 👁-▶ 🏗, 👆 🚫 💪 🖊 ⚖ 💕 ✍ 📟. + * 🕞 💯 🏃 🏗 🕰 (💪 🔕 💁‍♂). + * ⚒ 🔧 💪, ⚫ 👷 👅 📊, ✋ 👆 💪 🏀-🏗 ⏮ 🎊 ✳ ⚖ ✍ ⚫ 👆 💪, & 🏀-⚙ ⚫❔ 👆 💚. +* ** *⃣ ** ✳ 💜, 👆 💪 🔀 ⚫ ⚙ 📁 & ✳ 💪. +* **🥀** 🥒 👚‍🏭 ⚖. +* 📐 ⚖ 🖖 🕞 & 👩‍💻 ⏮ **Traefik**, 👆 💪 ✔ 👯‍♂ 🔜 🎏 🆔, 👜 ➡, ✋ 🍊 🎏 📊. +* Traefik 🛠, ✅ ➡ 🗜 **🇺🇞🔍** 📄 🏧 ⚡. +* ✳ **🆑** (🔁 🛠), 🔌 🕞 & 👩‍💻 🔬. + +## 🌕 📚 FastAPI 🗄 + +📂: https://github.com/tiangolo/full-stack-fastapi-couchbase + +👶 👶 **⚠** 👶 👶 + +🚥 👆 ▶ 🆕 🏗 ⚪➡ 🖌, ✅ 🎛 📥. + +🖌, 🏗 🚂 🌕 📚 FastAPI ✳ 💪 👍 🎛, ⚫ 🎯 🚧 & ⚙. & ⚫ 🔌 🌐 🆕 ⚒ & 📈. + +👆 🆓 ⚙ 🗄-⚓ 🚂 🚥 👆 💚, ⚫ 🔜 🎲 👷 👌, & 🚥 👆 ⏪ ✔ 🏗 🏗 ⏮ ⚫ 👈 👌 👍 (& 👆 🎲 ⏪ ℹ ⚫ ♣ 👆 💪). + +👆 💪 ✍ 🌅 🔃 ⚫ 🩺 🏊. + +## 🌕 📚 FastAPI ✳ + +...💪 👟 ⏪, ⚓ 🔛 👇 🕰 🚚 & 🎏 ⚖. 👶 👶 + +## 🎰 🏫 🏷 ⏮ 🌈 & FastAPI + +📂: https://github.com/microsoft/cookiecutter-spacy-fastapi + +### 🎰 🏫 🏷 ⏮ 🌈 & FastAPI - ⚒ + +* **🌈** 🕜 🏷 🛠. +* **☁ 🧠 🔎** 📚 📁 🏗. +* **🏭 🔜** 🐍 🕞 💜 ⚙ Uvicorn & 🐁. +* **☁ 👩‍💻** Kubernete (🊲) 🆑/💿 🛠 🏗. +* **🀞‍♂** 💪 ⚒ 1⃣ 🌈 🏗 🇪🇞 ⏮ 🏗 🖥. +* **💪 🏧** 🎏 🏷 🛠 (Pytorch, 🇞🇲), 🚫 🌈. diff --git a/docs/em/docs/python-types.md b/docs/em/docs/python-types.md new file mode 100644 index 000000000..e079d9039 --- /dev/null +++ b/docs/em/docs/python-types.md @@ -0,0 +1,490 @@ +# 🐍 🆎 🎶 + +🐍 ✔ 🐕‍🊺 📊 "🆎 🔑". + +👫 **"🆎 🔑"** 🎁 ❕ 👈 ✔ 📣 🆎 🔢. + +📣 🆎 👆 🔢, 👚‍🎚 & 🧰 💪 🀝 👆 👍 🐕‍🊺. + +👉 **⏩ 🔰 / ↗** 🔃 🐍 🆎 🔑. ⚫ 📔 🕎 💯 💪 ⚙ 👫 ⏮ **FastAPI**... ❔ 🀙 📶 🐥. + +**FastAPI** 🌐 ⚓ 🔛 👫 🆎 🔑, 👫 🀝 ⚫ 📚 📈 & 💰. + +✋ 🚥 👆 🙅 ⚙ **FastAPI**, 👆 🔜 💰 ⚪➡ 🏫 🍖 🔃 👫. + +!!! note + 🚥 👆 🐍 🕎, & 👆 ⏪ 💭 🌐 🔃 🆎 🔑, 🚶 ⏭ 📃. + +## 🎯 + +➡ ▶ ⏮ 🙅 🖌: + +```Python +{!../../../docs_src/python_types/tutorial001.py!} +``` + +🀙 👉 📋 🔢: + +``` +John Doe +``` + +🔢 🔚 📄: + +* ✊ `first_name` & `last_name`. +* 🗜 🥇 🔀 🔠 1⃣ ↖ 💌 ⏮ `title()`. +* 🔢 👫 ⏮ 🚀 🖕. + +```Python hl_lines="2" +{!../../../docs_src/python_types/tutorial001.py!} +``` + +### ✍ ⚫ + +⚫ 📶 🙅 📋. + +✋ 🔜 🌈 👈 👆 ✍ ⚫ ⚪➡ 🖌. + +☝ 👆 🔜 ✔ ▶ 🔑 🔢, 👆 ✔ 🔢 🔜... + +✋ ‎ 👆 ✔ 🀙 "👈 👩‍🔬 👈 🗜 🥇 🔀 ↖ 💌". + +⚫ `upper`❓ ⚫ `uppercase`❓ `first_uppercase`❓ `capitalize`❓ + +‎, 👆 🔄 ⏮ 🗝 👩‍💻 👚‍👧‍👊, 👚‍🎚 ✍. + +👆 🆎 🥇 🔢 🔢, `first_name`, ‎ ❣ (`.`) & ‎ 🎯 `Ctrl+Space` ⏲ 🛠. + +✋, 😞, 👆 🀚 🕳 ⚠: + + + +### 🚮 🆎 + +➡ 🔀 👁 ⏞ ⚪➡ ⏮ ⏬. + +👥 🔜 🔀 ⚫❔ 👉 🧬, 🔢 🔢, ⚪➡: + +```Python + first_name, last_name +``` + +: + +```Python + first_name: str, last_name: str +``` + +👈 ⚫. + +👈 "🆎 🔑": + +```Python hl_lines="1" +{!../../../docs_src/python_types/tutorial002.py!} +``` + +👈 🚫 🎏 📣 🔢 💲 💖 🔜 ⏮: + +```Python + first_name="john", last_name="doe" +``` + +⚫ 🎏 👜. + +👥 ⚙ ❀ (`:`), 🚫 🌓 (`=`). + +& ❎ 🆎 🔑 🛎 🚫 🔀 ⚫❔ 🔚 ⚪➡ ⚫❔ 🔜 🔚 🍵 👫. + +✋ 🔜, 🌈 👆 🔄 🖕 🏗 👈 🔢, ✋ ⏮ 🆎 🔑. + +🎏 ☝, 👆 🔄 ⏲ 📋 ⏮ `Ctrl+Space` & 👆 👀: + + + +⏮ 👈, 👆 💪 📜, 👀 🎛, ⏭ 👆 🔎 1⃣ 👈 "💍 🔔": + + + +## 🌅 🎯 + +✅ 👉 🔢, ⚫ ⏪ ✔ 🆎 🔑: + +```Python hl_lines="1" +{!../../../docs_src/python_types/tutorial003.py!} +``` + +↩ 👚‍🎚 💭 🆎 🔢, 👆 🚫 🕎 🀚 🛠, 👆 🀚 ❌ ✅: + + + +🔜 👆 💭 👈 👆 ✔ 🔧 ⚫, 🗜 `age` 🎻 ⏮ `str(age)`: + +```Python hl_lines="2" +{!../../../docs_src/python_types/tutorial004.py!} +``` + +## 📣 🆎 + +👆 👀 👑 🥉 📣 🆎 🔑. 🔢 🔢. + +👉 👑 🥉 👆 🔜 ⚙ 👫 ⏮ **FastAPI**. + +### 🙅 🆎 + +👆 💪 📣 🌐 🐩 🐍 🆎, 🚫 🕎 `str`. + +👆 💪 ⚙, 🖌: + +* `int` +* `float` +* `bool` +* `bytes` + +```Python hl_lines="1" +{!../../../docs_src/python_types/tutorial005.py!} +``` + +### 💊 🆎 ⏮ 🆎 🔢 + +📀 📊 📊 👈 💪 🔌 🎏 💲, 💖 `dict`, `list`, `set` & `tuple`. & 🔗 💲 💪 ✔ 👫 👍 🆎 💁‍♂. + +👉 🆎 👈 ✔ 🔗 🆎 🀙 "**💊**" 🆎. & ⚫ 💪 📣 👫, ⏮ 👫 🔗 🆎. + +📣 👈 🆎 & 🔗 🆎, 👆 💪 ⚙ 🐩 🐍 🕹 `typing`. ⚫ 🔀 🎯 🐕‍🊺 👫 🆎 🔑. + +#### 🆕 ⏬ 🐍 + +❕ ⚙ `typing` **🔗** ⏮ 🌐 ⏬, ⚪➡ 🐍 3⃣.6⃣ ⏪ 🕐, ✅ 🐍 3⃣.9⃣, 🐍 3⃣.1⃣0⃣, ♒. + +🐍 🏧, **🆕 ⏬** 👟 ⏮ 📉 🐕‍🊺 👉 🆎 ✍ & 📚 💌 👆 🏆 🚫 💪 🗄 & ⚙ `typing` 🕹 📣 🆎 ✍. + +🚥 👆 💪 ⚒ 🌖 ⏮ ⏬ 🐍 👆 🏗, 👆 🔜 💪 ✊ 📈 👈 ➕ 🊁. 👀 🖌 🔛. + +#### 📇 + +🖌, ➡ 🔬 🔢 `list` `str`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ⚪➡ `typing`, 🗄 `List` (⏮ 🔠 `L`): + + ``` Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial006.py!} + ``` + + 📣 🔢, ⏮ 🎏 ❀ (`:`) ❕. + + 🆎, 🚮 `List` 👈 👆 🗄 ⚪➡ `typing`. + + 📇 🆎 👈 🔌 🔗 🆎, 👆 🚮 👫 ⬜ 🗜: + + ```Python hl_lines="4" + {!> ../../../docs_src/python_types/tutorial006.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + 📣 🔢, ⏮ 🎏 ❀ (`:`) ❕. + + 🆎, 🚮 `list`. + + 📇 🆎 👈 🔌 🔗 🆎, 👆 🚮 👫 ⬜ 🗜: + + ```Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial006_py39.py!} + ``` + +!!! info + 👈 🔗 🆎 ⬜ 🗜 🀙 "🆎 🔢". + + 👉 💌, `str` 🆎 🔢 🚶‍♀ `List` (⚖ `list` 🐍 3⃣.9⃣ & 🔛). + +👈 ⛓: "🔢 `items` `list`, & 🔠 🏬 👉 📇 `str`". + +!!! tip + 🚥 👆 ⚙ 🐍 3⃣.9⃣ ⚖ 🔛, 👆 🚫 ✔ 🗄 `List` ⚪➡ `typing`, 👆 💪 ⚙ 🎏 🥔 `list` 🆎 ↩. + +🔚 👈, 👆 👚‍🎚 💪 🚚 🐕‍🊺 ⏪ 🏭 🏬 ⚪➡ 📇: + + + +🍵 🆎, 👈 🌖 💪 🏆. + +👀 👈 🔢 `item` 1⃣ 🔣 📇 `items`. + +& , 👚‍🎚 💭 ⚫ `str`, & 🚚 🐕‍🊺 👈. + +#### 🔢 & ⚒ + +👆 🔜 🎏 📣 `tuple`Ⓜ & `set`Ⓜ: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 4" + {!> ../../../docs_src/python_types/tutorial007.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial007_py39.py!} + ``` + +👉 ⛓: + +* 🔢 `items_t` `tuple` ⏮ 3⃣ 🏬, `int`, ➕1⃣ `int`, & `str`. +* 🔢 `items_s` `set`, & 🔠 🚮 🏬 🆎 `bytes`. + +#### #⃣ + +🔬 `dict`, 👆 🚶‍♀ 2⃣ 🆎 🔢, 🎏 ❕. + +🥇 🆎 🔢 🔑 `dict`. + +🥈 🆎 🔢 💲 `dict`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 4" + {!> ../../../docs_src/python_types/tutorial008.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial008_py39.py!} + ``` + +👉 ⛓: + +* 🔢 `prices` `dict`: + * 🔑 👉 `dict` 🆎 `str` (➡ 💬, 📛 🔠 🏬). + * 💲 👉 `dict` 🆎 `float` (➡ 💬, 🔖 🔠 🏬). + +#### 🇪🇺 + +👆 💪 📣 👈 🔢 💪 🙆 **📚 🆎**, 🖌, `int` ⚖ `str`. + +🐍 3⃣.6⃣ & 🔛 (✅ 🐍 3⃣.1⃣0⃣) 👆 💪 ⚙ `Union` 🆎 ⚪➡ `typing` & 🚮 🔘 ⬜ 🗜 💪 🆎 🚫. + +🐍 3⃣.1⃣0⃣ 📀 **🎛 ❕** 🌐❔ 👆 💪 🚮 💪 🆎 👜 ⏞ ⏞ (`|`). + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 4" + {!> ../../../docs_src/python_types/tutorial008b.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial008b_py310.py!} + ``` + +👯‍♂ 💌 👉 ⛓ 👈 `item` 💪 `int` ⚖ `str`. + +#### 🎲 `None` + +👆 💪 📣 👈 💲 💪 ✔ 🆎, 💖 `str`, ✋ 👈 ⚫ 💪 `None`. + +🐍 3⃣.6⃣ & 🔛 (✅ 🐍 3⃣.1⃣0⃣) 👆 💪 📣 ⚫ 🏭 & ⚙ `Optional` ⚪➡ `typing` 🕹. + +```Python hl_lines="1 4" +{!../../../docs_src/python_types/tutorial009.py!} +``` + +⚙ `Optional[str]` ↩ `str` 🔜 ➡ 👚‍🎚 ℹ 👆 🔍 ❌ 🌐❔ 👆 💪 🀔 👈 💲 🕧 `str`, 🕐❔ ⚫ 💪 🀙 `None` 💁‍♂. + +`Optional[Something]` 🀙 ⌹ `Union[Something, None]`, 👫 🌓. + +👉 ⛓ 👈 🐍 3⃣.1⃣0⃣, 👆 💪 ⚙ `Something | None`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 4" + {!> ../../../docs_src/python_types/tutorial009.py!} + ``` + +=== "🐍 3⃣.6⃣ & 🔛 - 🎛" + + ```Python hl_lines="1 4" + {!> ../../../docs_src/python_types/tutorial009b.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/python_types/tutorial009_py310.py!} + ``` + +#### ⚙ `Union` ⚖ `Optional` + +🚥 👆 ⚙ 🐍 ⏬ 🔛 3⃣.1⃣0⃣, 📥 💁‍♂ ⚪➡ 👇 📶 **🀔** ☝ 🎑: + +* 👶 ❎ ⚙ `Optional[SomeType]` +* ↩ 👶 **⚙ `Union[SomeType, None]`** 👶. + +👯‍♂ 🌓 & 🔘 👫 🎏, ✋ 👀 🔜 👍 `Union` ↩ `Optional` ↩ 🔀 "**📊**" 🔜 😑 🔑 👈 💲 📊, & ⚫ 🀙 ⛓ "⚫ 💪 `None`", 🚥 ⚫ 🚫 📊 & ✔. + +👀 💭 `Union[SomeType, None]` 🌖 🔑 🔃 ⚫❔ ⚫ ⛓. + +⚫ 🔃 🔀 & 📛. ✋ 👈 🔀 💪 📉 ❔ 👆 & 👆 🀜‍♂ 💭 🔃 📟. + +🖌, ➡ ✊ 👉 🔢: + +```Python hl_lines="1 4" +{!../../../docs_src/python_types/tutorial009c.py!} +``` + +🔢 `name` 🔬 `Optional[str]`, ✋ ⚫ **🚫 📊**, 👆 🚫🔜 🀙 🔢 🍵 🔢: + +```Python +say_hi() # Oh, no, this throws an error! 😱 +``` + +`name` 🔢 **✔** (🚫 *📊*) ↩ ⚫ 🚫 ✔ 🔢 💲. , `name` 🚫 `None` 💲: + +```Python +say_hi(name=None) # This works, None is valid 🎉 +``` + +👍 📰, 🕐 👆 🔛 🐍 3⃣.1⃣0⃣ 👆 🏆 🚫 ✔ 😟 🔃 👈, 👆 🔜 💪 🎯 ⚙ `|` 🔬 🇪🇺 🆎: + +```Python hl_lines="1 4" +{!../../../docs_src/python_types/tutorial009c_py310.py!} +``` + +& ‎ 👆 🏆 🚫 ✔ 😟 🔃 📛 💖 `Optional` & `Union`. 👶 + +#### 💊 🆎 + +👉 🆎 👈 ✊ 🆎 🔢 ⬜ 🗜 🀙 **💊 🆎** ⚖ **💊**, 🖌: + +=== "🐍 3⃣.6⃣ & 🔛" + + * `List` + * `Tuple` + * `Set` + * `Dict` + * `Union` + * `Optional` + * ...& 🎏. + +=== "🐍 3⃣.9⃣ & 🔛" + + 👆 💪 ⚙ 🎏 💜 🆎 💊 (⏮ ⬜ 🗜 & 🆎 🔘): + + * `list` + * `tuple` + * `set` + * `dict` + + & 🎏 ⏮ 🐍 3⃣.6⃣, ⚪➡ `typing` 🕹: + + * `Union` + * `Optional` + * ...& 🎏. + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + 👆 💪 ⚙ 🎏 💜 🆎 💊 (⏮ ⬜ 🗜 & 🆎 🔘): + + * `list` + * `tuple` + * `set` + * `dict` + + & 🎏 ⏮ 🐍 3⃣.6⃣, ⚪➡ `typing` 🕹: + + * `Union` + * `Optional` (🎏 ⏮ 🐍 3⃣.6⃣) + * ...& 🎏. + + 🐍 3⃣.1⃣0⃣, 🎛 ⚙ 💊 `Union` & `Optional`, 👆 💪 ⚙ ⏞ ⏞ (`|`) 📣 🇪🇺 🆎. + +### 🎓 🆎 + +👆 💪 📣 🎓 🆎 🔢. + +➡ 💬 👆 ✔ 🎓 `Person`, ⏮ 📛: + +```Python hl_lines="1-3" +{!../../../docs_src/python_types/tutorial010.py!} +``` + +‎ 👆 💪 📣 🔢 🆎 `Person`: + +```Python hl_lines="6" +{!../../../docs_src/python_types/tutorial010.py!} +``` + +& ‎, 🔄, 👆 🀚 🌐 👚‍🎚 🐕‍🊺: + + + +## Pydantic 🏷 + +Pydantic 🐍 🗃 🎭 📊 🔬. + +👆 📣 "💠" 💜 🎓 ⏮ 🔢. + +& 🔠 🔢 ✔ 🆎. + +‎ 👆 ✍ 👐 👈 🎓 ⏮ 💲 & ⚫ 🔜 ✔ 💲, 🗜 👫 ☑ 🆎 (🚥 👈 💌) & 🀝 👆 🎚 ⏮ 🌐 💜. + +& 👆 🀚 🌐 👚‍🎚 🐕‍🊺 ⏮ 👈 📉 🎚. + +🖌 ⚪➡ 🛂 Pydantic 🩺: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python + {!> ../../../docs_src/python_types/tutorial011.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python + {!> ../../../docs_src/python_types/tutorial011_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python + {!> ../../../docs_src/python_types/tutorial011_py310.py!} + ``` + +!!! info + 💡 🌖 🔃 Pydantic, ✅ 🚮 🩺. + +**FastAPI** 🌐 ⚓ 🔛 Pydantic. + +👆 🔜 👀 📚 🌅 🌐 👉 💡 [🔰 - 👩‍💻 🊮](tutorial/index.md){.internal-link target=_blank}. + +!!! tip + Pydantic ✔ 🎁 🎭 🕐❔ 👆 ⚙ `Optional` ⚖ `Union[Something, None]` 🍵 🔢 💲, 👆 💪 ✍ 🌅 🔃 ⚫ Pydantic 🩺 🔃 ✔ 📊 🏑. + +## 🆎 🔑 **FastAPI** + +**FastAPI** ✊ 📈 👫 🆎 🔑 📚 👜. + +⏮ **FastAPI** 👆 📣 🔢 ⏮ 🆎 🔑 & 👆 🀚: + +* **👚‍🎚 🐕‍🊺**. +* **🆎 ✅**. + +...and **FastAPI** uses the same declarations : + +* **🔬 📄**: ⚪➡ 📚 ➡ 🔢, 🔢 🔢, 🎚, 💪, 🔗, ♒. +* **🗜 💜**: ⚪➡ 📚 🚚 🆎. +* **✔ 💜**: 👟 ⚪➡ 🔠 📚: + * 🏭 **🏧 ❌** 📚 👩‍💻 🕐❔ 📊 ❌. +* **📄** 🛠 ⚙ 🗄: + * ❔ ‎ ⚙ 🏧 🎓 🧟 👩‍💻 🔢. + +👉 5⃣📆 🌐 🔊 📝. 🚫 😟. 👆 🔜 👀 🌐 👉 🎯 [🔰 - 👩‍💻 🊮](tutorial/index.md){.internal-link target=_blank}. + +⚠ 👜 👈 ⚙ 🐩 🐍 🆎, 👁 🥉 (↩ ❎ 🌖 🎓, 👚‍🎚, ♒), **FastAPI** 🔜 📚 👷 👆. + +!!! info + 🚥 👆 ⏪ 🚶 🔘 🌐 🔰 & 👟 🔙 👀 🌅 🔃 🆎, 👍 ℹ "🎮 🎌" ⚪➡ `mypy`. diff --git a/docs/em/docs/tutorial/background-tasks.md b/docs/em/docs/tutorial/background-tasks.md new file mode 100644 index 000000000..e28ead415 --- /dev/null +++ b/docs/em/docs/tutorial/background-tasks.md @@ -0,0 +1,102 @@ +# 🖥 📋 + +👆 💪 🔬 🖥 📋 🏃 *⏮* 🛬 📚. + +👉 ⚠ 🛠 👈 💪 🔚 ⏮ 📚, ✋ 👈 👩‍💻 🚫 🀙 ✔ ⌛ 🛠 🏁 ⏭ 📚 📚. + +👉 🔌, 🖌: + +* 📧 📚 📚 ⏮ 🎭 🎯: + * 🔗 📧 💜 & 📚 📧 😑 "🐌" (📚 🥈), 👆 💪 📚 📚 ▶ ↖ & 📚 📧 📚 🖥. +* 🏭 💜: + * 🖌, ➡ 💬 👆 📚 📁 👈 🔜 🚶 🔘 🐌 🛠, 👆 💪 📚 📚 "🚫" (🇺🇞🔍 2⃣0⃣2⃣) & 🛠 ⚫ 🖥. + +## ⚙ `BackgroundTasks` + +🥇, 🗄 `BackgroundTasks` & 🔬 🔢 👆 *➡ 🛠 🔢* ⏮ 🆎 📄 `BackgroundTasks`: + +```Python hl_lines="1 13" +{!../../../docs_src/background_tasks/tutorial001.py!} +``` + +**FastAPI** 🔜 ✍ 🎚 🆎 `BackgroundTasks` 👆 & 🚶‍♀ ⚫ 👈 🔢. + +## ✍ 📋 🔢 + +✍ 🔢 🏃 🖥 📋. + +⚫ 🐩 🔢 👈 💪 📚 🔢. + +⚫ 💪 `async def` ⚖ 😐 `def` 🔢, **FastAPI** 🔜 💭 ❔ 🍵 ⚫ ☑. + +👉 💌, 📋 🔢 🔜 ✍ 📁 (⚖ 📚 📧). + +& ✍ 🛠 🚫 ⚙ `async` & `await`, 👥 🔬 🔢 ⏮ 😐 `def`: + +```Python hl_lines="6-9" +{!../../../docs_src/background_tasks/tutorial001.py!} +``` + +## 🚮 🖥 📋 + +🔘 👆 *➡ 🛠 🔢*, 🚶‍♀ 👆 📋 🔢 *🖥 📋* 🎚 ⏮ 👩‍🔬 `.add_task()`: + +```Python hl_lines="14" +{!../../../docs_src/background_tasks/tutorial001.py!} +``` + +`.add_task()` 📚 ❌: + +* 📋 🔢 🏃 🖥 (`write_notification`). +* 🙆 🔁 ❌ 👈 🔜 🚶‍♀ 📋 🔢 ✔ (`email`). +* 🙆 🇚🇻 ❌ 👈 🔜 🚶‍♀ 📋 🔢 (`message="some notification"`). + +## 🔗 💉 + +⚙ `BackgroundTasks` 👷 ⏮ 🔗 💉 ⚙, 👆 💪 📣 🔢 🆎 `BackgroundTasks` 💗 🎚: *➡ 🛠 🔢*, 🔗 (☑), 🎧-🔗, ♒. + +**FastAPI** 💭 ⚫❔ 🔠 💌 & ❔ 🏀-⚙ 🎏 🎚, 👈 🌐 🖥 📋 🔗 👯‍♂ & 🏃 🖥 ⏮: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="13 15 22 25" + {!> ../../../docs_src/background_tasks/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="11 13 20 23" + {!> ../../../docs_src/background_tasks/tutorial002_py310.py!} + ``` + +👉 🖌, 📧 🔜 ✍ `log.txt` 📁 *⏮* 📚 📚. + +🚥 📀 🔢 📚, ⚫ 🔜 ✍ 🕹 🖥 📋. + +& ‎ ➕1⃣ 🖥 📋 🏗 *➡ 🛠 🔢* 🔜 ✍ 📧 ⚙ `email` ➡ 🔢. + +## 📡 ℹ + +🎓 `BackgroundTasks` 👟 🔗 ⚪➡ `starlette.background`. + +⚫ 🗄/🔌 🔗 🔘 FastAPI 👈 👆 💪 🗄 ⚫ ⚪➡ `fastapi` & ❎ 😫 🗄 🎛 `BackgroundTask` (🍵 `s` 🔚) ⚪➡ `starlette.background`. + +🕎 ⚙ `BackgroundTasks` (& 🚫 `BackgroundTask`), ⚫ ‎ 💪 ⚙ ⚫ *➡ 🛠 🔢* 🔢 & ✔ **FastAPI** 🍵 🎂 👆, 💖 🕐❔ ⚙ `Request` 🎚 🔗. + +⚫ 💪 ⚙ `BackgroundTask` 😞 FastAPI, ✋ 👆 ✔ ✍ 🎚 👆 📟 & 📚 💃 `Response` 🔌 ⚫. + +👆 💪 👀 🌖 ℹ 💃 🛂 🩺 🖥 📋. + +## ⚠ + +🚥 👆 💪 🎭 🏋 🖥 📊 & 👆 🚫 🎯 💪 ⚫ 🏃 🎏 🛠 (🖌, 👆 🚫 💪 💰 💟, 🔢, ♒), 👆 💪 💰 ⚪➡ ⚙ 🎏 🊏 🧰 💖 🥒. + +👫 😑 🚚 🌖 🏗 📳, 📧/👚‍🏭 📀 👚‍💌, 💖 ✳ ⚖ ✳, ✋ 👫 ✔ 👆 🏃 🖥 📋 💗 🛠, & ✎, 💗 💜. + +👀 🖌, ✅ [🏗 🚂](../project-generation.md){.internal-link target=_blank}, 👫 🌐 🔌 🥒 ⏪ 📶. + +✋ 🚥 👆 💪 🔐 🔢 & 🎚 ⚪➡ 🎏 **FastAPI** 📱, ⚖ 👆 💪 🎭 🀪 🖥 📋 (💖 📚 📧 📚), 👆 💪 🎯 ⚙ `BackgroundTasks`. + +## 🌃 + +🗄 & ⚙ `BackgroundTasks` ⏮ 🔢 *➡ 🛠 🔢* & 🔗 🚮 🖥 📋. diff --git a/docs/em/docs/tutorial/bigger-applications.md b/docs/em/docs/tutorial/bigger-applications.md new file mode 100644 index 000000000..7b4694387 --- /dev/null +++ b/docs/em/docs/tutorial/bigger-applications.md @@ -0,0 +1,488 @@ +# 🊏 🈞 - 💗 📁 + +🚥 👆 🏗 🈞 ⚖ 🕞 🛠, ⚫ 🛎 💌 👈 👆 💪 🚮 🌐 🔛 👁 📁. + +**FastAPI** 🚚 🏪 🧰 📊 👆 🈞 ⏪ 🚧 🌐 💪. + +!!! info + 🚥 👆 👟 ⚪➡ 🏺, 👉 🔜 🌓 🏺 📗. + +## 🖌 📁 📊 + +➡ 💬 👆 ✔ 📁 📊 💖 👉: + +``` +. +├── app +│   ├── __init__.py +│   ├── main.py +│   ├── dependencies.py +│   └── routers +│   │ ├── __init__.py +│   │ ├── items.py +│   │ └── users.py +│   └── internal +│   ├── __init__.py +│   └── admin.py +``` + +!!! tip + 📀 📚 `__init__.py` 📁: 1⃣ 🔠 📁 ⚖ 📁. + + 👉 ⚫❔ ✔ 🏭 📟 ⚪➡ 1⃣ 📁 🔘 ➕1⃣. + + 🖌, `app/main.py` 👆 💪 ✔ ⏞ 💖: + + ``` + from app.routers import items + ``` + +* `app` 📁 🔌 🌐. & ⚫ ✔ 🛁 📁 `app/__init__.py`, ⚫ "🐍 📊" (🗃 "🐍 🕹"): `app`. +* ⚫ 🔌 `app/main.py` 📁. ⚫ 🔘 🐍 📊 (📁 ⏮ 📁 `__init__.py`), ⚫ "🕹" 👈 📊: `app.main`. +* 📀 `app/dependencies.py` 📁, 💖 `app/main.py`, ⚫ "🕹": `app.dependencies`. +* 📀 📁 `app/routers/` ⏮ ➕1⃣ 📁 `__init__.py`, ⚫ "🐍 📊": `app.routers`. +* 📁 `app/routers/items.py` 🔘 📊, `app/routers/`,, ⚫ 🔁: `app.routers.items`. +* 🎏 ⏮ `app/routers/users.py`, ⚫ ➕1⃣ 🔁: `app.routers.users`. +* 📀 📁 `app/internal/` ⏮ ➕1⃣ 📁 `__init__.py`, ⚫ ➕1⃣ "🐍 📊": `app.internal`. +* & 📁 `app/internal/admin.py` ➕1⃣ 🔁: `app.internal.admin`. + + + +🎏 📁 📊 ⏮ 🏀: + +``` +. +├── app # "app" is a Python package +│   ├── __init__.py # this file makes "app" a "Python package" +│   ├── main.py # "main" module, e.g. import app.main +│   ├── dependencies.py # "dependencies" module, e.g. import app.dependencies +│   └── routers # "routers" is a "Python subpackage" +│   │ ├── __init__.py # makes "routers" a "Python subpackage" +│   │ ├── items.py # "items" submodule, e.g. import app.routers.items +│   │ └── users.py # "users" submodule, e.g. import app.routers.users +│   └── internal # "internal" is a "Python subpackage" +│   ├── __init__.py # makes "internal" a "Python subpackage" +│   └── admin.py # "admin" submodule, e.g. import app.internal.admin +``` + +## `APIRouter` + +➡ 💬 📁 💡 🚚 👩‍💻 🔁 `/app/routers/users.py`. + +👆 💚 ✔ *➡ 🛠* 🔗 👆 👩‍💻 👜 ⚪➡ 🎂 📟, 🚧 ⚫ 🏗. + +✋ ⚫ 🍕 🎏 **FastAPI** 🈞/🕞 🛠 (⚫ 🍕 🎏 "🐍 📊"). + +👆 💪 ✍ *➡ 🛠* 👈 🕹 ⚙ `APIRouter`. + +### 🗄 `APIRouter` + +👆 🗄 ⚫ & ✍ "👐" 🎏 🌌 👆 🔜 ⏮ 🎓 `FastAPI`: + +```Python hl_lines="1 3" +{!../../../docs_src/bigger_applications/app/routers/users.py!} +``` + +### *➡ 🛠* ⏮ `APIRouter` + +& ‎ 👆 ⚙ ⚫ 📣 👆 *➡ 🛠*. + +⚙ ⚫ 🎏 🌌 👆 🔜 ⚙ `FastAPI` 🎓: + +```Python hl_lines="6 11 16" +{!../../../docs_src/bigger_applications/app/routers/users.py!} +``` + +👆 💪 💭 `APIRouter` "🐩 `FastAPI`" 🎓. + +🌐 🎏 🎛 🐕‍🊺. + +🌐 🎏 `parameters`, `responses`, `dependencies`, `tags`, ♒. + +!!! tip + 👉 🖌, 🔢 🀙 `router`, ✋ 👆 💪 📛 ⚫ 👐 👆 💚. + +👥 🔜 🔌 👉 `APIRouter` 👑 `FastAPI` 📱, ✋ 🥇, ➡ ✅ 🔗 & ➕1⃣ `APIRouter`. + +## 🔗 + +👥 👀 👈 👥 🔜 💪 🔗 ⚙ 📚 🥉 🈞. + +👥 🚮 👫 👫 👍 `dependencies` 🕹 (`app/dependencies.py`). + +👥 🔜 🔜 ⚙ 🙅 🔗 ✍ 🛃 `X-Token` 🎚: + +```Python hl_lines="1 4-6" +{!../../../docs_src/bigger_applications/app/dependencies.py!} +``` + +!!! tip + 👥 ⚙ 💭 🎚 📉 👉 🖌. + + ✋ 🎰 💌 👆 🔜 🀚 👍 🏁 ⚙ 🛠 [💂‍♂ 🚙](./security/index.md){.internal-link target=_blank}. + +## ➕1⃣ 🕹 ⏮ `APIRouter` + +➡ 💬 👆 ✔ 🔗 💡 🚚 "🏬" ⚪➡ 👆 🈞 🕹 `app/routers/items.py`. + +👆 ✔ *➡ 🛠* : + +* `/items/` +* `/items/{item_id}` + +⚫ 🌐 🎏 📊 ⏮ `app/routers/users.py`. + +✋ 👥 💚 🙃 & 📉 📟 🍖. + +👥 💭 🌐 *➡ 🛠* 👉 🕹 ✔ 🎏: + +* ➡ `prefix`: `/items`. +* `tags`: (1⃣ 🔖: `items`). +* ➕ `responses`. +* `dependencies`: 👫 🌐 💪 👈 `X-Token` 🔗 👥 ✍. + +, ↩ ❎ 🌐 👈 🔠 *➡ 🛠*, 👥 💪 🚮 ⚫ `APIRouter`. + +```Python hl_lines="5-10 16 21" +{!../../../docs_src/bigger_applications/app/routers/items.py!} +``` + +➡ 🔠 *➡ 🛠* ✔ ▶ ⏮ `/`, 💖: + +```Python hl_lines="1" +@router.get("/{item_id}") +async def read_item(item_id: str): + ... +``` + +...🔡 🔜 🚫 🔌 🏁 `/`. + +, 🔡 👉 💌 `/items`. + +👥 💪 🚮 📇 `tags` & ➕ `responses` 👈 🔜 ✔ 🌐 *➡ 🛠* 🔌 👉 📻. + +& 👥 💪 🚮 📇 `dependencies` 👈 🔜 🚮 🌐 *➡ 🛠* 📻 & 🔜 🛠/❎ 🔠 📚 ⚒ 👫. + +!!! tip + 🗒 👈, 🌅 💖 [🔗 *➡ 🛠 👚‍🎚*](dependencies/dependencies-in-path-operation-decorators.md){.internal-link target=_blank}, 🙅‍♂ 💲 🔜 🚶‍♀ 👆 *➡ 🛠 🔢*. + +🔚 🏁 👈 🏬 ➡ 🔜: + +* `/items/` +* `/items/{item_id}` + +...👥 🎯. + +* 👫 🔜 ™ ⏮ 📇 🔖 👈 🔌 👁 🎻 `"items"`. + * 👫 "🔖" ✎ ⚠ 🏧 🎓 🧟 ⚙ (⚙ 🗄). +* 🌐 👫 🔜 🔌 🔁 `responses`. +* 🌐 👫 *➡ 🛠* 🔜 ✔ 📇 `dependencies` 🔬/🛠 ⏭ 👫. + * 🚥 👆 📣 🔗 🎯 *➡ 🛠*, **👫 🔜 🛠 💁‍♂**. + * 📻 🔗 🛠 🥇, ‎ [`dependencies` 👚‍🎚](dependencies/dependencies-in-path-operation-decorators.md){.internal-link target=_blank}, & ‎ 😐 🔢 🔗. + * 👆 💪 🚮 [`Security` 🔗 ⏮ `scopes`](../advanced/security/oauth2-scopes.md){.internal-link target=_blank}. + +!!! tip + ✔ `dependencies` `APIRouter` 💪 ⚙, 🖌, 🚚 🀝 🎂 👪 *➡ 🛠*. 🚥 🔗 🚫 🚮 📊 🔠 1⃣ 👫. + +!!! check + `prefix`, `tags`, `responses`, & `dependencies` 🔢 (📚 🎏 💌) ⚒ ⚪➡ **FastAPI** ℹ 👆 ❎ 📟 ❎. + +### 🗄 🔗 + +👉 📟 👚‍❀‍👚 🕹 `app.routers.items`, 📁 `app/routers/items.py`. + +& 👥 💪 🀚 🔗 🔢 ⚪➡ 🕹 `app.dependencies`, 📁 `app/dependencies.py`. + +👥 ⚙ ⚖ 🗄 ⏮ `..` 🔗: + +```Python hl_lines="3" +{!../../../docs_src/bigger_applications/app/routers/items.py!} +``` + +#### ❔ ⚖ 🗄 👷 + +!!! tip + 🚥 👆 💭 👌 ❔ 🗄 👷, 😣 ⏭ 📄 🔛. + +👁 ❣ `.`, 💖: + +```Python +from .dependencies import get_token_header +``` + +🔜 ⛓: + +* ▶ 🎏 📊 👈 👉 🕹 (📁 `app/routers/items.py`) 🖖 (📁 `app/routers/`)... +* 🔎 🕹 `dependencies` (👜 📁 `app/routers/dependencies.py`)... +* & ⚪➡ ⚫, 🗄 🔢 `get_token_header`. + +✋ 👈 📁 🚫 🔀, 👆 🔗 📁 `app/dependencies.py`. + +💭 ❔ 👆 📱/📁 📊 👀 💖: + + + +--- + +2⃣ ❣ `..`, 💖: + +```Python +from ..dependencies import get_token_header +``` + +⛓: + +* ▶ 🎏 📊 👈 👉 🕹 (📁 `app/routers/items.py`) 🖖 (📁 `app/routers/`)... +* 🚶 👪 📊 (📁 `app/`)... +* & 📀, 🔎 🕹 `dependencies` (📁 `app/dependencies.py`)... +* & ⚪➡ ⚫, 🗄 🔢 `get_token_header`. + +👈 👷 ☑ ❗ 👶 + +--- + +🎏 🌌, 🚥 👥 ✔ ⚙ 3⃣ ❣ `...`, 💖: + +```Python +from ...dependencies import get_token_header +``` + +that 🔜 ⛓: + +* ▶ 🎏 📊 👈 👉 🕹 (📁 `app/routers/items.py`) 🖖 (📁 `app/routers/`)... +* 🚶 👪 📊 (📁 `app/`)... +* ‎ 🚶 👪 👈 📊 (📀 🙅‍♂ 👪 📊, `app` 🔝 🎚 👶)... +* & 📀, 🔎 🕹 `dependencies` (📁 `app/dependencies.py`)... +* & ⚪➡ ⚫, 🗄 🔢 `get_token_header`. + +👈 🔜 🔗 📊 🔛 `app/`, ⏮ 🚮 👍 📁 `__init__.py`, ♒. ✋ 👥 🚫 ✔ 👈. , 👈 🔜 🚮 ❌ 👆 🖌. 👶 + +✋ 🔜 👆 💭 ❔ ⚫ 👷, 👆 💪 ⚙ ⚖ 🗄 👆 👍 📱 🙅‍♂ 🀔 ❔ 🏗 👫. 👶 + +### 🚮 🛃 `tags`, `responses`, & `dependencies` + +👥 🚫 ❎ 🔡 `/items` 🚫 `tags=["items"]` 🔠 *➡ 🛠* ↩ 👥 🚮 👫 `APIRouter`. + +✋ 👥 💪 🚮 _🌅_ `tags` 👈 🔜 ✔ 🎯 *➡ 🛠*, & ➕ `responses` 🎯 👈 *➡ 🛠*: + +```Python hl_lines="30-31" +{!../../../docs_src/bigger_applications/app/routers/items.py!} +``` + +!!! tip + 👉 🏁 ➡ 🛠 🔜 ✔ 🌀 🔖: `["items", "custom"]`. + + & ⚫ 🔜 ✔ 👯‍♂ 📚 🧟, 1⃣ `404` & 1⃣ `403`. + +## 👑 `FastAPI` + +🔜, ➡ 👀 🕹 `app/main.py`. + +📥 🌐❔ 👆 🗄 & ⚙ 🎓 `FastAPI`. + +👉 🔜 👑 📁 👆 🈞 👈 👔 🌐 👯‍♂. + +& 🏆 👆 ⚛ 🔜 🔜 🖖 🚮 👍 🎯 🕹, 👑 📁 🔜 🙅. + +### 🗄 `FastAPI` + +👆 🗄 & ✍ `FastAPI` 🎓 🛎. + +& 👥 💪 📣 [🌐 🔗](dependencies/global-dependencies.md){.internal-link target=_blank} 👈 🔜 🌀 ⏮ 🔗 🔠 `APIRouter`: + +```Python hl_lines="1 3 7" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +### 🗄 `APIRouter` + +🔜 👥 🗄 🎏 🔁 👈 ✔ `APIRouter`Ⓜ: + +```Python hl_lines="5" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +📁 `app/routers/users.py` & `app/routers/items.py` 🔁 👈 🍕 🎏 🐍 📊 `app`, 👥 💪 ⚙ 👁 ❣ `.` 🗄 👫 ⚙ "⚖ 🗄". + +### ❔ 🏭 👷 + +📄: + +```Python +from .routers import items, users +``` + +⛓: + +* ▶ 🎏 📊 👈 👉 🕹 (📁 `app/main.py`) 🖖 (📁 `app/`)... +* 👀 📊 `routers` (📁 `app/routers/`)... +* & ⚪➡ ⚫, 🗄 🔁 `items` (📁 `app/routers/items.py`) & `users` (📁 `app/routers/users.py`)... + +🕹 `items` 🔜 ✔ 🔢 `router` (`items.router`). 👉 🎏 1⃣ 👥 ✍ 📁 `app/routers/items.py`, ⚫ `APIRouter` 🎚. + +& ‎ 👥 🎏 🕹 `users`. + +👥 💪 🗄 👫 💖: + +```Python +from app.routers import items, users +``` + +!!! info + 🥇 ⏬ "⚖ 🗄": + + ```Python + from .routers import items, users + ``` + + 🥈 ⏬ "🎆 🗄": + + ```Python + from app.routers import items, users + ``` + + 💡 🌅 🔃 🐍 📊 & 🕹, ✍ 🛂 🐍 🧟 🔃 🕹. + +### ❎ 📛 💥 + +👥 🏭 🔁 `items` 🔗, ↩ 🏭 🚮 🔢 `router`. + +👉 ↩ 👥 ✔ ➕1⃣ 🔢 📛 `router` 🔁 `users`. + +🚥 👥 ✔ 🗄 1⃣ ⏮ 🎏, 💖: + +```Python +from .routers.items import router +from .routers.users import router +``` + +`router` ⚪➡ `users` 🔜 📁 1⃣ ⚪➡ `items` & 👥 🚫🔜 💪 ⚙ 👫 🎏 🕰. + +, 💪 ⚙ 👯‍♂ 👫 🎏 📁, 👥 🗄 🔁 🔗: + +```Python hl_lines="4" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +### 🔌 `APIRouter`Ⓜ `users` & `items` + +🔜, ➡ 🔌 `router`Ⓜ ⚪➡ 🔁 `users` & `items`: + +```Python hl_lines="10-11" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +!!! info + `users.router` 🔌 `APIRouter` 🔘 📁 `app/routers/users.py`. + + & `items.router` 🔌 `APIRouter` 🔘 📁 `app/routers/items.py`. + +⏮ `app.include_router()` 👥 💪 🚮 🔠 `APIRouter` 👑 `FastAPI` 🈞. + +⚫ 🔜 🔌 🌐 🛣 ⚪➡ 👈 📻 🍕 ⚫. + +!!! note "📡 ℹ" + ⚫ 🔜 🀙 🔘 ✍ *➡ 🛠* 🔠 *➡ 🛠* 👈 📣 `APIRouter`. + + , ⛅ 🎑, ⚫ 🔜 🀙 👷 🚥 🌐 🎏 👁 📱. + +!!! check + 👆 🚫 ✔ 😟 🔃 🎭 🕐❔ ✅ 📻. + + 👉 🔜 ✊ ⏲ & 🔜 🕎 🔚 🕎. + + ⚫ 🏆 🚫 📉 🎭. 👶 + +### 🔌 `APIRouter` ⏮ 🛃 `prefix`, `tags`, `responses`, & `dependencies` + +🔜, ➡ 🌈 👆 🏢 🀝 👆 `app/internal/admin.py` 📁. + +⚫ 🔌 `APIRouter` ⏮ 📡 *➡ 🛠* 👈 👆 🏢 💰 🖖 📚 🏗. + +👉 🖌 ⚫ 🔜 💎 🙅. ✋ ➡ 💬 👈 ↩ ⚫ 💰 ⏮ 🎏 🏗 🏢, 👥 🚫🔜 🔀 ⚫ & 🚮 `prefix`, `dependencies`, `tags`, ♒. 🔗 `APIRouter`: + +```Python hl_lines="3" +{!../../../docs_src/bigger_applications/app/internal/admin.py!} +``` + +✋ 👥 💚 ⚒ 🛃 `prefix` 🕐❔ ✅ `APIRouter` 👈 🌐 🚮 *➡ 🛠* ▶ ⏮ `/admin`, 👥 💚 🔐 ⚫ ⏮ `dependencies` 👥 ⏪ ✔ 👉 🏗, & 👥 💚 🔌 `tags` & `responses`. + +👥 💪 📣 🌐 👈 🍵 ✔ 🔀 ⏮ `APIRouter` 🚶‍♀ 👈 🔢 `app.include_router()`: + +```Python hl_lines="14-17" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +👈 🌌, ⏮ `APIRouter` 🔜 🚧 ⚗, 👥 💪 💰 👈 🎏 `app/internal/admin.py` 📁 ⏮ 🎏 🏗 🏢. + +🏁 👈 👆 📱, 🔠 *➡ 🛠* ⚪➡ `admin` 🕹 🔜 ✔: + +* 🔡 `/admin`. +* 🔖 `admin`. +* 🔗 `get_token_header`. +* 📚 `418`. 👶 + +✋ 👈 🔜 🕎 📉 👈 `APIRouter` 👆 📱, 🚫 🙆 🎏 📟 👈 ⚙ ⚫. + +, 🖌, 🎏 🏗 💪 ⚙ 🎏 `APIRouter` ⏮ 🎏 🀝 👩‍🔬. + +### 🔌 *➡ 🛠* + +👥 💪 🚮 *➡ 🛠* 🔗 `FastAPI` 📱. + +📥 👥 ⚫... 🎊 👈 👥 💪 🀷: + +```Python hl_lines="21-23" +{!../../../docs_src/bigger_applications/app/main.py!} +``` + +& ⚫ 🔜 👷 ☑, 👯‍♂ ⏮ 🌐 🎏 *➡ 🛠* 🚮 ⏮ `app.include_router()`. + +!!! info "📶 📡 ℹ" + **🗒**: 👉 📶 📡 ℹ 👈 👆 🎲 💪 **🚶**. + + --- + + `APIRouter`Ⓜ 🚫 "🗻", 👫 🚫 👜 ⚪➡ 🎂 🈞. + + 👉 ↩ 👥 💚 🔌 👫 *➡ 🛠* 🗄 🔗 & 👩‍💻 🔢. + + 👥 🚫🔜 ❎ 👫 & "🗻" 👫 ➡ 🎂, *➡ 🛠* "🖖" (🏀-✍), 🚫 🔌 🔗. + +## ✅ 🏧 🛠 🩺 + +🔜, 🏃 `uvicorn`, ⚙ 🕹 `app.main` & 🔢 `app`: + +
+ +```console +$ uvicorn app.main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +& 📂 🩺 http://127.0.0.1:8000/docs. + +👆 🔜 👀 🏧 🛠 🩺, ✅ ➡ ⚪➡ 🌐 🔁, ⚙ ☑ ➡ (& 🔡) & ☑ 🔖: + + + +## 🔌 🎏 📻 💗 🕰 ⏮ 🎏 `prefix` + +👆 💪 ⚙ `.include_router()` 💗 🕰 ⏮ *🎏* 📻 ⚙ 🎏 🔡. + +👉 💪 ⚠, 🖌, 🎊 🎏 🛠 🔜 🎏 🔡, ✅ `/api/v1` & `/api/latest`. + +👉 🏧 ⚙ 👈 👆 5⃣📆 🚫 🀙 💪, ✋ ⚫ 📀 💌 👆. + +## 🔌 `APIRouter` ➕1⃣ + +🎏 🌌 👆 💪 🔌 `APIRouter` `FastAPI` 🈞, 👆 💪 🔌 `APIRouter` ➕1⃣ `APIRouter` ⚙: + +```Python +router.include_router(other_router) +``` + +⚒ 💭 👆 ⚫ ⏭ 🔌 `router` `FastAPI` 📱, 👈 *➡ 🛠* ⚪➡ `other_router` 🔌. diff --git a/docs/em/docs/tutorial/body-fields.md b/docs/em/docs/tutorial/body-fields.md new file mode 100644 index 000000000..9f2c914f4 --- /dev/null +++ b/docs/em/docs/tutorial/body-fields.md @@ -0,0 +1,68 @@ +# 💪 - 🏑 + +🎏 🌌 👆 💪 📣 🌖 🔬 & 🗃 *➡ 🛠 🔢* 🔢 ⏮ `Query`, `Path` & `Body`, 👆 💪 📣 🔬 & 🗃 🔘 Pydantic 🏷 ⚙ Pydantic `Field`. + +## 🗄 `Field` + +🥇, 👆 ✔ 🗄 ⚫: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="4" + {!> ../../../docs_src/body_fields/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="2" + {!> ../../../docs_src/body_fields/tutorial001_py310.py!} + ``` + +!!! warning + 👀 👈 `Field` 🗄 🔗 ⚪➡ `pydantic`, 🚫 ⚪➡ `fastapi` 🌐 🎂 (`Query`, `Path`, `Body`, ♒). + +## 📣 🏷 🔢 + +👆 💪 ‎ ⚙ `Field` ⏮ 🏷 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="11-14" + {!> ../../../docs_src/body_fields/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="9-12" + {!> ../../../docs_src/body_fields/tutorial001_py310.py!} + ``` + +`Field` 👷 🎏 🌌 `Query`, `Path` & `Body`, ⚫ ✔ 🌐 🎏 🔢, ♒. + +!!! note "📡 ℹ" + 🀙, `Query`, `Path` & 🎏 👆 🔜 👀 ⏭ ✍ 🎚 🏿 ⚠ `Param` 🎓, ❔ ⚫ 🏿 Pydantic `FieldInfo` 🎓. + + & Pydantic `Field` 📚 👐 `FieldInfo` 👍. + + `Body` 📚 🎚 🏿 `FieldInfo` 🔗. & 📀 🎏 👆 🔜 👀 ⏪ 👈 🏿 `Body` 🎓. + + 💭 👈 🕐❔ 👆 🗄 `Query`, `Path`, & 🎏 ⚪➡ `fastapi`, 👈 🀙 🔢 👈 📚 🎁 🎓. + +!!! tip + 👀 ❔ 🔠 🏷 🔢 ⏮ 🆎, 🔢 💲 & `Field` ✔ 🎏 📊 *➡ 🛠 🔢* 🔢, ⏮ `Field` ↩ `Path`, `Query` & `Body`. + +## 🚮 ➕ ℹ + +👆 💪 📣 ➕ ℹ `Field`, `Query`, `Body`, ♒. & ⚫ 🔜 🔌 🏗 🎻 🔗. + +👆 🔜 💡 🌅 🔃 ❎ ➕ ℹ ⏪ 🩺, 🕐❔ 🏫 📣 🖌. + +!!! warning + ➕ 🔑 🚶‍♀ `Field` 🔜 🎁 📉 🗄 🔗 👆 🈞. + 👫 🔑 5⃣📆 🚫 🎯 🍕 🗄 🔧, 🗄 🧰, 🖌 [🗄 💳](https://validator.swagger.io/), 5⃣📆 🚫 👷 ⏮ 👆 🏗 🔗. + +## 🌃 + +👆 💪 ⚙ Pydantic `Field` 📣 ➕ 🔬 & 🗃 🏷 🔢. + +👆 💪 ⚙ ➕ 🇚🇻 ❌ 🚶‍♀ 🌖 🎻 🔗 🗃. diff --git a/docs/em/docs/tutorial/body-multiple-params.md b/docs/em/docs/tutorial/body-multiple-params.md new file mode 100644 index 000000000..9ada7dee1 --- /dev/null +++ b/docs/em/docs/tutorial/body-multiple-params.md @@ -0,0 +1,213 @@ +# 💪 - 💗 🔢 + +🔜 👈 👥 ✔ 👀 ❔ ⚙ `Path` & `Query`, ➡ 👀 🌅 🏧 ⚙ 📚 💪 📄. + +## 🌀 `Path`, `Query` & 💪 🔢 + +🥇, ↗, 👆 💪 🌀 `Path`, `Query` & 📚 💪 🔢 📄 ➡ & **FastAPI** 🔜 💭 ⚫❔. + +& 👆 💪 📣 💪 🔢 📊, ⚒ 🔢 `None`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19-21" + {!> ../../../docs_src/body_multiple_params/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17-19" + {!> ../../../docs_src/body_multiple_params/tutorial001_py310.py!} + ``` + +!!! note + 👀 👈, 👉 💌, `item` 👈 🔜 ✊ ⚪➡ 💪 📊. ⚫ ✔ `None` 🔢 💲. + +## 💗 💪 🔢 + +⏮ 🖌, *➡ 🛠* 🔜 ⌛ 🎻 💪 ⏮ 🔢 `Item`, 💖: + +```JSON +{ + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2 +} +``` + +✋ 👆 💪 📣 💗 💪 🔢, ✅ `item` & `user`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/body_multiple_params/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_multiple_params/tutorial002_py310.py!} + ``` + +👉 💌, **FastAPI** 🔜 👀 👈 📀 🌅 🌘 1⃣ 💪 🔢 🔢 (2⃣ 🔢 👈 Pydantic 🏷). + +, ⚫ 🔜 ‎ ⚙ 🔢 📛 🔑 (🏑 📛) 💪, & ⌛ 💪 💖: + +```JSON +{ + "item": { + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2 + }, + "user": { + "username": "dave", + "full_name": "Dave Grohl" + } +} +``` + +!!! note + 👀 👈 ✋ `item` 📣 🎏 🌌 ⏭, ⚫ 🔜 ⌛ 🔘 💪 ⏮ 🔑 `item`. + + +**FastAPI** 🔜 🏧 🛠 ⚪➡ 📚, 👈 🔢 `item` 📚 ⚫ 🎯 🎚 & 🎏 `user`. + +⚫ 🔜 🎭 🔬 ⚗ 💜, & 🔜 📄 ⚫ 💖 👈 🗄 🔗 & 🏧 🩺. + +## ⭐ 💲 💪 + +🎏 🌌 📀 `Query` & `Path` 🔬 ➕ 💜 🔢 & ➡ 🔢, **FastAPI** 🚚 🌓 `Body`. + +🖌, ↔ ⏮ 🏷, 👆 💪 💭 👈 👆 💚 ✔ ➕1⃣ 🔑 `importance` 🎏 💪, 🥈 `item` & `user`. + +🚥 👆 📣 ⚫, ↩ ⚫ ⭐ 💲, **FastAPI** 🔜 🀔 👈 ⚫ 🔢 🔢. + +✋ 👆 💪 💡 **FastAPI** 😥 ⚫ ➕1⃣ 💪 🔑 ⚙ `Body`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/body_multiple_params/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_multiple_params/tutorial003_py310.py!} + ``` + +👉 💌, **FastAPI** 🔜 ⌛ 💪 💖: + +```JSON +{ + "item": { + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2 + }, + "user": { + "username": "dave", + "full_name": "Dave Grohl" + }, + "importance": 5 +} +``` + +🔄, ⚫ 🔜 🗜 📊 🆎, ✔, 📄, ♒. + +## 💗 💪 = & 🔢 + +↗, 👆 💪 📣 🌖 🔢 🔢 🕐❔ 👆 💪, 🌖 🙆 💪 🔢. + +, 🔢, ⭐ 💲 🔬 🔢 🔢, 👆 🚫 ✔ 🎯 🚮 `Query`, 👆 💪: + +```Python +q: Union[str, None] = None +``` + +⚖ 🐍 3⃣.1⃣0⃣ & 🔛: + +```Python +q: str | None = None +``` + +🖌: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="27" + {!> ../../../docs_src/body_multiple_params/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="26" + {!> ../../../docs_src/body_multiple_params/tutorial004_py310.py!} + ``` + +!!! info + `Body` ✔ 🌐 🎏 ➕ 🔬 & 🗃 🔢 `Query`,`Path` & 🎏 👆 🔜 👀 ⏪. + +## ⏯ 👁 💪 🔢 + +➡ 💬 👆 🕎 ✔ 👁 `item` 💪 🔢 ⚪➡ Pydantic 🏷 `Item`. + +🔢, **FastAPI** 🔜 ‎ ⌛ 🚮 💪 🔗. + +✋ 🚥 👆 💚 ⚫ ⌛ 🎻 ⏮ 🔑 `item` & 🔘 ⚫ 🏷 🎚, ⚫ 🔚 🕐❔ 👆 📣 ➕ 💪 🔢, 👆 💪 ⚙ 🎁 `Body` 🔢 `embed`: + +```Python +item: Item = Body(embed=True) +``` + +: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="17" + {!> ../../../docs_src/body_multiple_params/tutorial005.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="15" + {!> ../../../docs_src/body_multiple_params/tutorial005_py310.py!} + ``` + +👉 💌 **FastAPI** 🔜 ⌛ 💪 💖: + +```JSON hl_lines="2" +{ + "item": { + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2 + } +} +``` + +↩: + +```JSON +{ + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2 +} +``` + +## 🌃 + +👆 💪 🚮 💗 💪 🔢 👆 *➡ 🛠 🔢*, ✋ 📚 💪 🕎 ✔ 👁 💪. + +✋ **FastAPI** 🔜 🍵 ⚫, 🀝 👆 ☑ 📊 👆 🔢, & ✔ & 📄 ☑ 🔗 *➡ 🛠*. + +👆 💪 📣 ⭐ 💲 📚 🍕 💪. + +& 👆 💪 💡 **FastAPI** ⏯ 💪 🔑 🕐❔ 📀 🕎 👁 🔢 📣. diff --git a/docs/em/docs/tutorial/body-nested-models.md b/docs/em/docs/tutorial/body-nested-models.md new file mode 100644 index 000000000..f4bd50f5c --- /dev/null +++ b/docs/em/docs/tutorial/body-nested-models.md @@ -0,0 +1,382 @@ +# 💪 - 🔁 🏷 + +⏮ **FastAPI**, 👆 💪 🔬, ✔, 📄, & ⚙ 🎲 🙇 🐊 🏷 (👏 Pydantic). + +## 📇 🏑 + +👆 💪 🔬 🔢 🏟. 🖌, 🐍 `list`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="14" + {!> ../../../docs_src/body_nested_models/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="12" + {!> ../../../docs_src/body_nested_models/tutorial001_py310.py!} + ``` + +👉 🔜 ⚒ `tags` 📇, 👐 ⚫ 🚫 📣 🆎 🔣 📇. + +## 📇 🏑 ⏮ 🆎 🔢 + +✋ 🐍 ✔ 🎯 🌌 📣 📇 ⏮ 🔗 🆎, ⚖ "🆎 🔢": + +### 🗄 ⌹ `List` + +🐍 3⃣.9⃣ & 🔛 👆 💪 ⚙ 🐩 `list` 📣 👫 🆎 ✍ 👥 🔜 👀 🔛. 👶 + +✋ 🐍 ⏬ ⏭ 3⃣.9⃣ (3⃣.6⃣ & 🔛), 👆 🥇 💪 🗄 `List` ⚪➡ 🐩 🐍 `typing` 🕹: + +```Python hl_lines="1" +{!> ../../../docs_src/body_nested_models/tutorial002.py!} +``` + +### 📣 `list` ⏮ 🆎 🔢 + +📣 🆎 👈 ✔ 🆎 🔢 (🔗 🆎), 💖 `list`, `dict`, `tuple`: + +* 🚥 👆 🐍 ⏬ 🔅 🌘 3⃣.9⃣, 🗄 👫 🌓 ⏬ ⚪➡ `typing` 🕹 +* 🚶‍♀ 🔗 🆎(Ⓜ) "🆎 🔢" ⚙ ⬜ 🗜: `[` & `]` + +🐍 3⃣.9⃣ ⚫ 🔜: + +```Python +my_list: list[str] +``` + +⏬ 🐍 ⏭ 3⃣.9⃣, ⚫ 🔜: + +```Python +from typing import List + +my_list: List[str] +``` + +👈 🌐 🐩 🐍 ❕ 🆎 📄. + +⚙ 👈 🎏 🐩 ❕ 🏷 🔢 ⏮ 🔗 🆎. + +, 👆 🖌, 👥 💪 ⚒ `tags` 🎯 "📇 🎻": + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="14" + {!> ../../../docs_src/body_nested_models/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="14" + {!> ../../../docs_src/body_nested_models/tutorial002_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="12" + {!> ../../../docs_src/body_nested_models/tutorial002_py310.py!} + ``` + +## ⚒ 🆎 + +✋ ‎ 👥 💭 🔃 ⚫, & 🀔 👈 🔖 🚫🔜 🚫 🔁, 👫 🔜 🎲 😍 🎻. + +& 🐍 ✔ 🎁 💜 🆎 ⚒ 😍 🏬, `set`. + +‎ 👥 💪 📣 `tags` ⚒ 🎻: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 14" + {!> ../../../docs_src/body_nested_models/tutorial003.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="14" + {!> ../../../docs_src/body_nested_models/tutorial003_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="12" + {!> ../../../docs_src/body_nested_models/tutorial003_py310.py!} + ``` + +⏮ 👉, 🚥 👆 📚 📚 ⏮ ❎ 📊, ⚫ 🔜 🗜 ⚒ 😍 🏬. + +& 🕐❔ 👆 🔢 👈 📊, 🚥 ℹ ✔ ❎, ⚫ 🔜 🔢 ⚒ 😍 🏬. + +& ⚫ 🔜 ✍ / 📄 ➡ 💁‍♂. + +## 🐊 🏷 + +🔠 🔢 Pydantic 🏷 ✔ 🆎. + +✋ 👈 🆎 💪 ⚫ ➕1⃣ Pydantic 🏷. + +, 👆 💪 📣 🙇 🐊 🎻 "🎚" ⏮ 🎯 🔢 📛, 🆎 & 🔬. + +🌐 👈, 🎲 🐊. + +### 🔬 📊 + +🖌, 👥 💪 🔬 `Image` 🏷: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9-11" + {!> ../../../docs_src/body_nested_models/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="9-11" + {!> ../../../docs_src/body_nested_models/tutorial004_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7-9" + {!> ../../../docs_src/body_nested_models/tutorial004_py310.py!} + ``` + +### ⚙ 📊 🆎 + +& ‎ 👥 💪 ⚙ ⚫ 🆎 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_nested_models/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_nested_models/tutorial004_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/body_nested_models/tutorial004_py310.py!} + ``` + +👉 🔜 ⛓ 👈 **FastAPI** 🔜 ⌛ 💪 🎏: + +```JSON +{ + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2, + "tags": ["rock", "metal", "bar"], + "image": { + "url": "http://example.com/baz.jpg", + "name": "The Foo live" + } +} +``` + +🔄, 🀞 👈 📄, ⏮ **FastAPI** 👆 🀚: + +* 👚‍🎚 🐕‍🊺 (🛠, ♒), 🐊 🏷 +* 💜 🛠 +* 💜 🔬 +* 🏧 🧟 + +## 🎁 🆎 & 🔬 + +↖ ⚪➡ 😐 ⭐ 🆎 💖 `str`, `int`, `float`, ♒. 👆 💪 ⚙ 🌅 🏗 ⭐ 🆎 👈 😖 ⚪➡ `str`. + +👀 🌐 🎛 👆 ✔, 🛒 🩺 Pydantic 😍 🆎. 👆 🔜 👀 🖌 ⏭ 📃. + +🖌, `Image` 🏷 👥 ✔ `url` 🏑, 👥 💪 📣 ⚫ ↩ `str`, Pydantic `HttpUrl`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="4 10" + {!> ../../../docs_src/body_nested_models/tutorial005.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="4 10" + {!> ../../../docs_src/body_nested_models/tutorial005_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="2 8" + {!> ../../../docs_src/body_nested_models/tutorial005_py310.py!} + ``` + +🎻 🔜 ✅ ☑ 📛, & 📄 🎻 🔗 / 🗄 ✅. + +## 🔢 ⏮ 📇 📊 + +👆 💪 ⚙ Pydantic 🏷 🏟 `list`, `set`, ♒: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_nested_models/tutorial006.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="20" + {!> ../../../docs_src/body_nested_models/tutorial006_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/body_nested_models/tutorial006_py310.py!} + ``` + +👉 🔜 ⌛ (🗜, ✔, 📄, ♒) 🎻 💪 💖: + +```JSON hl_lines="11" +{ + "name": "Foo", + "description": "The pretender", + "price": 42.0, + "tax": 3.2, + "tags": [ + "rock", + "metal", + "bar" + ], + "images": [ + { + "url": "http://example.com/baz.jpg", + "name": "The Foo live" + }, + { + "url": "http://example.com/dave.jpg", + "name": "The Baz" + } + ] +} +``` + +!!! info + 👀 ❔ `images` 🔑 🔜 ✔ 📇 🖌 🎚. + +## 🙇 🐊 🏷 + +👆 💪 🔬 🎲 🙇 🐊 🏷: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 14 20 23 27" + {!> ../../../docs_src/body_nested_models/tutorial007.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="9 14 20 23 27" + {!> ../../../docs_src/body_nested_models/tutorial007_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7 12 18 21 25" + {!> ../../../docs_src/body_nested_models/tutorial007_py310.py!} + ``` + +!!! info + 👀 ❔ `Offer` ✔ 📇 `Item`Ⓜ, ❔ 🔄 ✔ 📊 📇 `Image`Ⓜ + +## 💪 😁 📇 + +🚥 🔝 🎚 💲 🎻 💪 👆 ⌛ 🎻 `array` (🐍 `list`), 👆 💪 📣 🆎 🔢 🔢, 🎏 Pydantic 🏷: + +```Python +images: List[Image] +``` + +⚖ 🐍 3⃣.9⃣ & 🔛: + +```Python +images: list[Image] +``` + +: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15" + {!> ../../../docs_src/body_nested_models/tutorial008.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="13" + {!> ../../../docs_src/body_nested_models/tutorial008_py39.py!} + ``` + +## 👚‍🎚 🐕‍🊺 🌐 + +& 👆 🀚 👚‍🎚 🐕‍🊺 🌐. + +🏬 🔘 📇: + + + +👆 🚫 🚫 🀚 👉 😇 👚‍🎚 🐕‍🊺 🚥 👆 👷 🔗 ⏮ `dict` ↩ Pydantic 🏷. + +✋ 👆 🚫 ✔ 😟 🔃 👫 👯‍♂, 📚 #⃣ 🗜 🔁 & 👆 🔢 🗜 🔁 🎻 💁‍♂. + +## 💪 ❌ `dict`Ⓜ + +👆 💪 📣 💪 `dict` ⏮ 🔑 🆎 & 💲 🎏 🆎. + +🍵 ✔ 💭 ⏪ ⚫❔ ☑ 🏑/🔢 📛 (🔜 💌 ⏮ Pydantic 🏷). + +👉 🔜 ⚠ 🚥 👆 💚 📚 🔑 👈 👆 🚫 ⏪ 💭. + +--- + +🎏 ⚠ 💌 🕐❔ 👆 💚 ✔ 🔑 🎏 🆎, ✅ `int`. + +👈 ⚫❔ 👥 🔜 👀 📥. + +👉 💌, 👆 🔜 🚫 🙆 `dict` 📏 ⚫ ✔ `int` 🔑 ⏮ `float` 💲: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/body_nested_models/tutorial009.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/body_nested_models/tutorial009_py39.py!} + ``` + +!!! tip + ✔ 🀯 👈 🎻 🕎 🐕‍🊺 `str` 🔑. + + ✋ Pydantic ✔ 🏧 💜 🛠. + + 👉 ⛓ 👈, ✋ 👆 🛠 👩‍💻 💪 🕎 📚 🎻 🔑, 📏 👈 🎻 🔌 😁 🔢, Pydantic 🔜 🗜 👫 & ✔ 👫. + + & `dict` 👆 📚 `weights` 🔜 🀙 ✔ `int` 🔑 & `float` 💲. + +## 🌃 + +⏮ **FastAPI** 👆 ✔ 🔆 💪 🚚 Pydantic 🏷, ⏪ 🚧 👆 📟 🙅, 📏 & 😍. + +✋ ⏮ 🌐 💰: + +* 👚‍🎚 🐕‍🊺 (🛠 🌐 ❗) +* 💜 🛠 (.Ⓜ.. ✍ / 🛠) +* 💜 🔬 +* 🔗 🧟 +* 🏧 🩺 diff --git a/docs/em/docs/tutorial/body-updates.md b/docs/em/docs/tutorial/body-updates.md new file mode 100644 index 000000000..98058ab52 --- /dev/null +++ b/docs/em/docs/tutorial/body-updates.md @@ -0,0 +1,155 @@ +# 💪 - ℹ + +## ℹ ❎ ⏮ `PUT` + +ℹ 🏬 👆 💪 ⚙ 🇺🇞🔍 `PUT` 🛠. + +👆 💪 ⚙ `jsonable_encoder` 🗜 🔢 💜 📊 👈 💪 🏪 🎻 (✅ ⏮ ☁ 💜). 🖌, 🏭 `datetime` `str`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="30-35" + {!> ../../../docs_src/body_updates/tutorial001.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="30-35" + {!> ../../../docs_src/body_updates/tutorial001_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="28-33" + {!> ../../../docs_src/body_updates/tutorial001_py310.py!} + ``` + +`PUT` ⚙ 📚 💜 👈 🔜 ❎ ♻ 💜. + +### ⚠ 🔃 ❎ + +👈 ⛓ 👈 🚥 👆 💚 ℹ 🏬 `bar` ⚙ `PUT` ⏮ 💪 ⚗: + +```Python +{ + "name": "Barz", + "price": 3, + "description": None, +} +``` + +↩ ⚫ 🚫 🔌 ⏪ 🏪 🔢 `"tax": 20.2`, 🔢 🏷 🔜 ✊ 🔢 💲 `"tax": 10.5`. + +& 📊 🔜 🖊 ⏮ 👈 "🆕" `tax` `10.5`. + +## 🍕 ℹ ⏮ `PATCH` + +👆 💪 ⚙ 🇺🇞🔍 `PATCH` 🛠 *🍕* ℹ 💜. + +👉 ⛓ 👈 👆 💪 📚 🕎 💜 👈 👆 💚 ℹ, 🍂 🎂 🐣. + +!!! Note + `PATCH` 🌘 🛎 ⚙ & 💭 🌘 `PUT`. + + & 📚 🏉 ⚙ 🕎 `PUT`, 🍕 ℹ. + + 👆 **🆓** ⚙ 👫 👐 👆 💚, **FastAPI** 🚫 🚫 🙆 🚫. + + ✋ 👉 🊮 🎊 👆, 🌖 ⚖ 🌘, ❔ 👫 🎯 ⚙. + +### ⚙ Pydantic `exclude_unset` 🔢 + +🚥 👆 💚 📚 🍕 ℹ, ⚫ 📶 ⚠ ⚙ 🔢 `exclude_unset` Pydantic 🏷 `.dict()`. + +💖 `item.dict(exclude_unset=True)`. + +👈 🔜 🏗 `dict` ⏮ 🕎 💜 👈 ⚒ 🕐❔ 🏗 `item` 🏷, 🚫 🔢 💲. + +‎ 👆 💪 ⚙ 👉 🏗 `dict` ⏮ 🕎 💜 👈 ⚒ (📚 📚), 🚫 🔢 💲: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="34" + {!> ../../../docs_src/body_updates/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="34" + {!> ../../../docs_src/body_updates/tutorial002_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="32" + {!> ../../../docs_src/body_updates/tutorial002_py310.py!} + ``` + +### ⚙ Pydantic `update` 🔢 + +🔜, 👆 💪 ✍ 📁 ♻ 🏷 ⚙ `.copy()`, & 🚶‍♀ `update` 🔢 ⏮ `dict` ⚗ 💜 ℹ. + +💖 `stored_item_model.copy(update=update_data)`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="35" + {!> ../../../docs_src/body_updates/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="35" + {!> ../../../docs_src/body_updates/tutorial002_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="33" + {!> ../../../docs_src/body_updates/tutorial002_py310.py!} + ``` + +### 🍕 ℹ 🌃 + +📄, ✔ 🍕 ℹ 👆 🔜: + +* (⚗) ⚙ `PATCH` ↩ `PUT`. +* 🗃 🏪 💜. +* 🚮 👈 💜 Pydantic 🏷. +* 🏗 `dict` 🍵 🔢 💲 ⚪➡ 🔢 🏷 (⚙ `exclude_unset`). + * 👉 🌌 👆 💪 ℹ 🕎 💲 🀙 ⚒ 👩‍💻, ↩ 🔐 💲 ⏪ 🏪 ⏮ 🔢 💲 👆 🏷. +* ✍ 📁 🏪 🏷, 🛠 ⚫ 🔢 ⏮ 📚 🍕 ℹ (⚙ `update` 🔢). +* 🗜 📁 🏷 🕳 👈 💪 🏪 👆 💜 (🖌, ⚙ `jsonable_encoder`). + * 👉 ⭐ ⚙ 🏷 `.dict()` 👩‍🔬 🔄, ✋ ⚫ ⚒ 💭 (& 🗜) 💲 💜 🆎 👈 💪 🗜 🎻, 🖌, `datetime` `str`. +* 🖊 💜 👆 💜. +* 📚 ℹ 🏷. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="30-37" + {!> ../../../docs_src/body_updates/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="30-37" + {!> ../../../docs_src/body_updates/tutorial002_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="28-35" + {!> ../../../docs_src/body_updates/tutorial002_py310.py!} + ``` + +!!! tip + 👆 💪 🀙 ⚙ 👉 🎏 ⚒ ⏮ 🇺🇞🔍 `PUT` 🛠. + + ✋ 🖌 📥 ⚙ `PATCH` ↩ ⚫ ✍ 👫 ⚙ 💌. + +!!! note + 👀 👈 🔢 🏷 ✔. + + , 🚥 👆 💚 📚 🍕 ℹ 👈 💪 🚫 🌐 🔢, 👆 💪 ✔ 🏷 ⏮ 🌐 🔢 ™ 📊 (⏮ 🔢 💲 ⚖ `None`). + + 🔬 ⚪➡ 🏷 ⏮ 🌐 📊 💲 **ℹ** & 🏷 ⏮ ✔ 💲 **🏗**, 👆 💪 ⚙ 💭 🔬 [➕ 🏷](extra-models.md){.internal-link target=_blank}. diff --git a/docs/em/docs/tutorial/body.md b/docs/em/docs/tutorial/body.md new file mode 100644 index 000000000..ca2f113bf --- /dev/null +++ b/docs/em/docs/tutorial/body.md @@ -0,0 +1,213 @@ +# 📚 💪 + +🕐❔ 👆 💪 📚 📊 ⚪➡ 👩‍💻 (➡ 💬, 🖥) 👆 🛠, 👆 📚 ⚫ **📚 💪**. + +**📚** 💪 📊 📚 👩‍💻 👆 🛠. **📚** 💪 💜 👆 🛠 📚 👩‍💻. + +👆 🛠 🌖 🕧 ✔ 📚 **📚** 💪. ✋ 👩‍💻 🚫 🎯 💪 📚 **📚** 💪 🌐 🕰. + +📣 **📚** 💪, 👆 ⚙ Pydantic 🏷 ⏮ 🌐 👫 🏋 & 💰. + +!!! info + 📚 💜, 👆 🔜 ⚙ 1⃣: `POST` (🌅 ⚠), `PUT`, `DELETE` ⚖ `PATCH`. + + 📚 💪 ⏮ `GET` 📚 ✔ ⚠ 🎭 🔧, 👐, ⚫ 🐕‍🊺 FastAPI, 🕎 📶 🏗/😕 ⚙ 💌. + + ⚫ 🚫, 🎓 🩺 ⏮ 🊁 🎚 🏆 🚫 🎊 🧟 💪 🕐❔ ⚙ `GET`, & 🗳 🖕 💪 🚫 🐕‍🊺 ⚫. + +## 🗄 Pydantic `BaseModel` + +🥇, 👆 💪 🗄 `BaseModel` ⚪➡ `pydantic`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="4" + {!> ../../../docs_src/body/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="2" + {!> ../../../docs_src/body/tutorial001_py310.py!} + ``` + +## ✍ 👆 💜 🏷 + +‎ 👆 📣 👆 💜 🏷 🎓 👈 😖 ⚪➡ `BaseModel`. + +⚙ 🐩 🐍 🆎 🌐 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="7-11" + {!> ../../../docs_src/body/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="5-9" + {!> ../../../docs_src/body/tutorial001_py310.py!} + ``` + +🎏 🕐❔ 📣 🔢 🔢, 🕐❔ 🏷 🔢 ✔ 🔢 💲, ⚫ 🚫 ✔. ⏪, ⚫ ✔. ⚙ `None` ⚒ ⚫ 📊. + +🖌, 👉 🏷 🔛 📣 🎻 "`object`" (⚖ 🐍 `dict`) 💖: + +```JSON +{ + "name": "Foo", + "description": "An optional description", + "price": 45.2, + "tax": 3.5 +} +``` + +... `description` & `tax` 📊 (⏮ 🔢 💲 `None`), 👉 🎻 "`object`" 🔜 ☑: + +```JSON +{ + "name": "Foo", + "price": 45.2 +} +``` + +## 📣 ⚫ 🔢 + +🚮 ⚫ 👆 *➡ 🛠*, 📣 ⚫ 🎏 🌌 👆 📣 ➡ & 🔢 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/body/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="16" + {!> ../../../docs_src/body/tutorial001_py310.py!} + ``` + +...& 📣 🚮 🆎 🏷 👆 ✍, `Item`. + +## 🏁 + +⏮ 👈 🐍 🆎 📄, **FastAPI** 🔜: + +* ✍ 💪 📚 🎻. +* 🗜 🔗 🆎 (🚥 💪). +* ✔ 💜. + * 🚥 💜 ❌, ⚫ 🔜 📚 👌 & 🆑 ❌, ☠ ⚫❔ 🌐❔ & ⚫❔ ❌ 📊. +* 🀝 👆 📚 📊 🔢 `item`. + * 👆 📣 ⚫ 🔢 🆎 `Item`, 👆 🔜 ✔ 🌐 👚‍🎚 🐕‍🊺 (🛠, ♒) 🌐 🔢 & 👫 🆎. +* 🏗 🎻 🔗 🔑 👆 🏷, 👆 💪 ⚙ 👫 🙆 🙆 👆 💖 🚥 ⚫ ⚒ 🔑 👆 🏗. +* 👈 🔗 🔜 🍕 🏗 🗄 🔗, & ⚙ 🏧 🧟 ⚜. + +## 🏧 🩺 + +🎻 🔗 👆 🏷 🔜 🍕 👆 🗄 🏗 🔗, & 🔜 🎊 🎓 🛠 🩺: + + + +& 🔜 ⚙ 🛠 🩺 🔘 🔠 *➡ 🛠* 👈 💪 👫: + + + +## 👚‍🎚 🐕‍🊺 + +👆 👚‍🎚, 🔘 👆 🔢 👆 🔜 🀚 🆎 🔑 & 🛠 🌐 (👉 🚫🔜 🔚 🚥 👆 📚 `dict` ↩ Pydantic 🏷): + + + +👆 🀚 ❌ ✅ ❌ 🆎 🛠: + + + +👉 🚫 🀞, 🎂 🛠 🏗 🀭 👈 🔧. + +& ⚫ 🙇 💯 🔧 🌓, ⏭ 🙆 🛠, 🚚 ⚫ 🔜 👷 ⏮ 🌐 👚‍🎚. + +📀 🔀 Pydantic ⚫ 🐕‍🊺 👉. + +⏮ 🖌 ✊ ⏮ 🎙 🎙 📟. + +✋ 👆 🔜 🀚 🎏 👚‍🎚 🐕‍🊺 ⏮ 🗒 & 🌅 🎏 🐍 👚‍🎚: + + + +!!! tip + 🚥 👆 ⚙ 🗒 👆 👚‍🎚, 👆 💪 ⚙ Pydantic 🗒 📁. + + ⚫ 📉 👚‍🎚 🐕‍🊺 Pydantic 🏷, ⏮: + + * 🚘-🛠 + * 🆎 ✅ + * 🛠 + * 🔎 + * 🔬 + +## ⚙ 🏷 + +🔘 🔢, 👆 💪 🔐 🌐 🔢 🏷 🎚 🔗: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="21" + {!> ../../../docs_src/body/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/body/tutorial002_py310.py!} + ``` + +## 📚 💪 ➕ ➡ 🔢 + +👆 💪 📣 ➡ 🔢 & 📚 💪 🎏 🕰. + +**FastAPI** 🔜 🀔 👈 🔢 🔢 👈 🏏 ➡ 🔢 🔜 **✊ ⚪➡ ➡**, & 👈 🔢 🔢 👈 📣 Pydantic 🏷 🔜 **✊ ⚪➡ 📚 💪**. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="17-18" + {!> ../../../docs_src/body/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="15-16" + {!> ../../../docs_src/body/tutorial003_py310.py!} + ``` + +## 📚 💪 ➕ ➡ ➕ 🔢 🔢 + +👆 💪 📣 **💪**, **➡** & **🔢** 🔢, 🌐 🎏 🕰. + +**FastAPI** 🔜 🀔 🔠 👫 & ✊ 📊 ⚪➡ ☑ 🥉. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/body/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="16" + {!> ../../../docs_src/body/tutorial004_py310.py!} + ``` + +🔢 🔢 🔜 🀔 ⏩: + +* 🚥 🔢 📣 **➡**, ⚫ 🔜 ⚙ ➡ 🔢. +* 🚥 🔢 **⭐ 🆎** (💖 `int`, `float`, `str`, `bool`, ♒) ⚫ 🔜 🔬 **🔢** 🔢. +* 🚥 🔢 📣 🆎 **Pydantic 🏷**, ⚫ 🔜 🔬 📚 **💪**. + +!!! note + FastAPI 🔜 💭 👈 💲 `q` 🚫 ✔ ↩ 🔢 💲 `= None`. + + `Union` `Union[str, None]` 🚫 ⚙ FastAPI, ✋ 🔜 ✔ 👆 👚‍🎚 🀝 👆 👍 🐕‍🊺 & 🔍 ❌. + +## 🍵 Pydantic + +🚥 👆 🚫 💚 ⚙ Pydantic 🏷, 👆 💪 ⚙ **💪** 🔢. 👀 🩺 [💪 - 💗 🔢: ⭐ 💲 💪](body-multiple-params.md#singular-values-in-body){.internal-link target=_blank}. diff --git a/docs/em/docs/tutorial/cookie-params.md b/docs/em/docs/tutorial/cookie-params.md new file mode 100644 index 000000000..47f4a62f5 --- /dev/null +++ b/docs/em/docs/tutorial/cookie-params.md @@ -0,0 +1,49 @@ +# 🍪 🔢 + +👆 💪 🔬 🍪 🔢 🎏 🌌 👆 🔬 `Query` & `Path` 🔢. + +## 🗄 `Cookie` + +🥇 🗄 `Cookie`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3" + {!> ../../../docs_src/cookie_params/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/cookie_params/tutorial001_py310.py!} + ``` + +## 📣 `Cookie` 🔢 + +‎ 📣 🍪 🔢 ⚙ 🎏 📊 ⏮ `Path` & `Query`. + +🥇 💲 🔢 💲, 👆 💪 🚶‍♀ 🌐 ➕ 🔬 ⚖ ✍ 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/cookie_params/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/cookie_params/tutorial001_py310.py!} + ``` + +!!! note "📡 ℹ" + `Cookie` "👭" 🎓 `Path` & `Query`. ⚫ 😖 ⚪➡ 🎏 ⚠ `Param` 🎓. + + ✋ 💭 👈 🕐❔ 👆 🗄 `Query`, `Path`, `Cookie` & 🎏 ⚪➡ `fastapi`, 👈 🀙 🔢 👈 📚 🎁 🎓. + +!!! info + 📣 🍪, 👆 💪 ⚙ `Cookie`, ↩ ⏪ 🔢 🔜 🔬 🔢 🔢. + +## 🌃 + +📣 🍪 ⏮ `Cookie`, ⚙ 🎏 ⚠ ⚓ `Query` & `Path`. diff --git a/docs/em/docs/tutorial/cors.md b/docs/em/docs/tutorial/cors.md new file mode 100644 index 000000000..8c5e33ed7 --- /dev/null +++ b/docs/em/docs/tutorial/cors.md @@ -0,0 +1,84 @@ +# ⚜ (✖-🇚🇳 ℹ 🀝) + +⚜ ⚖ "✖-🇚🇳 ℹ 🀝" 🔗 ⚠ 🕐❔ 🕞 🏃‍♂ 🖥 ✔ 🕞 📟 👈 🔗 ⏮ 👩‍💻, & 👩‍💻 🎏 "🇚🇳" 🌘 🕞. + +## 🇚🇳 + +🇚🇳 🌀 🛠 (`http`, `https`), 🆔 (`myapp.com`, `localhost`, `localhost.tiangolo.com`), & ⛮ (`80`, `443`, `8080`). + +, 🌐 👫 🎏 🇚🇳: + +* `http://localhost` +* `https://localhost` +* `http://localhost:8080` + +🚥 👫 🌐 `localhost`, 👫 ⚙ 🎏 🛠 ⚖ ⛮,, 👫 🎏 "🇚🇳". + +## 🔁 + +, ➡ 💬 👆 ✔ 🕞 🏃 👆 🖥 `http://localhost:8080`, & 🚮 🕞 🔄 🔗 ⏮ 👩‍💻 🏃 `http://localhost` (↩ 👥 🚫 ✔ ⛮, 🖥 🔜 🀔 🔢 ⛮ `80`). + +‎, 🖥 🔜 📚 🇺🇞🔍 `OPTIONS` 📚 👩‍💻, & 🚥 👩‍💻 📚 ☑ 🎚 ✔ 📻 ⚪➡ 👉 🎏 🇚🇳 (`http://localhost:8080`) ‎ 🖥 🔜 ➡ 🕞 🕞 📚 🚮 📚 👩‍💻. + +🏆 👉, 👩‍💻 🔜 ✔ 📇 "✔ 🇚🇳". + +👉 💌, ⚫ 🔜 ✔ 🔌 `http://localhost:8080` 🕞 👷 ☑. + +## 🃏 + +⚫ 💪 📣 📇 `"*"` ("🃏") 💬 👈 🌐 ✔. + +✋ 👈 🔜 🕎 ✔ 🎯 🆎 📻, 🚫 🌐 👈 🔌 🎓: 🍪, ✔ 🎚 💖 📚 ⚙ ⏮ 📚 🀝, ♒. + +, 🌐 👷 ☑, ⚫ 👻 ✔ 🎯 ✔ 🇚🇳. + +## ⚙ `CORSMiddleware` + +👆 💪 🔗 ⚫ 👆 **FastAPI** 🈞 ⚙ `CORSMiddleware`. + +* 🗄 `CORSMiddleware`. +* ✍ 📇 ✔ 🇚🇳 (🎻). +* 🚮 ⚫ "🛠" 👆 **FastAPI** 🈞. + +👆 💪 ✔ 🚥 👆 👩‍💻 ✔: + +* 🎓 (✔ 🎚, 🍪, ♒). +* 🎯 🇺🇞🔍 👩‍🔬 (`POST`, `PUT`) ⚖ 🌐 👫 ⏮ 🃏 `"*"`. +* 🎯 🇺🇞🔍 🎚 ⚖ 🌐 👫 ⏮ 🃏 `"*"`. + +```Python hl_lines="2 6-11 13-19" +{!../../../docs_src/cors/tutorial001.py!} +``` + +🔢 🔢 ⚙ `CORSMiddleware` 🛠 🚫 🔢, 👆 🔜 💪 🎯 🛠 🎯 🇚🇳, 👩‍🔬, ⚖ 🎚, ✔ 🖥 ✔ ⚙ 👫 ✖-🆔 🔑. + +📄 ❌ 🐕‍🊺: + +* `allow_origins` - 📇 🇚🇳 👈 🔜 ✔ ⚒ ✖-🇚🇳 📚. 🀶 Ⓜ. `['https://example.org', 'https://www.example.org']`. 👆 💪 ⚙ `['*']` ✔ 🙆 🇚🇳. +* `allow_origin_regex` - 🎻 🎻 🏏 🛡 🇚🇳 👈 🔜 ✔ ⚒ ✖-🇚🇳 📚. ✅ `'https://.*\.example\.org'`. +* `allow_methods` - 📇 🇺🇞🔍 👩‍🔬 👈 🔜 ✔ ✖-🇚🇳 📚. 🔢 `['GET']`. 👆 💪 ⚙ `['*']` ✔ 🌐 🐩 👩‍🔬. +* `allow_headers` - 📇 🇺🇞🔍 📚 🎚 👈 🔜 🐕‍🊺 ✖-🇚🇳 📚. 🔢 `[]`. 👆 💪 ⚙ `['*']` ✔ 🌐 🎚. `Accept`, `Accept-Language`, `Content-Language` & `Content-Type` 🎚 🕧 ✔ 🙅 ⚜ 📚. +* `allow_credentials` - 🎊 👈 🍪 🔜 🐕‍🊺 ✖-🇚🇳 📚. 🔢 `False`. , `allow_origins` 🚫🔜 ⚒ `['*']` 🎓 ✔, 🇚🇳 🔜 ✔. +* `expose_headers` - 🎊 🙆 📚 🎚 👈 🔜 ⚒ ♿ 🖥. 🔢 `[]`. +* `max_age` - ⚒ 🔆 🕰 🥈 🖥 💟 ⚜ 📚. 🔢 `600`. + +🛠 📚 2⃣ 🎯 🆎 🇺🇞🔍 📚... + +### ⚜ 🛫 📚 + +👉 🙆 `OPTIONS` 📚 ⏮ `Origin` & `Access-Control-Request-Method` 🎚. + +👉 💌 🛠 🔜 🆘 📚 📚 & 📚 ⏮ ☑ ⚜ 🎚, & 👯‍♂ `200` ⚖ `400` 📚 🎓 🎯. + +### 🙅 📚 + +🙆 📚 ⏮ `Origin` 🎚. 👉 💌 🛠 🔜 🚶‍♀ 📚 🔘 😐, ✋ 🔜 🔌 ☑ ⚜ 🎚 🔛 📚. + +## 🌅 ℹ + +🌖 ℹ 🔃 ⚜, ✅ 🊎 ⚜ 🧟. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.middleware.cors import CORSMiddleware`. + + **FastAPI** 🚚 📚 🛠 `fastapi.middleware` 🏪 👆, 👩‍💻. ✋ 🌅 💪 🛠 👟 🔗 ⚪➡ 💃. diff --git a/docs/em/docs/tutorial/debugging.md b/docs/em/docs/tutorial/debugging.md new file mode 100644 index 000000000..c7c11b5ce --- /dev/null +++ b/docs/em/docs/tutorial/debugging.md @@ -0,0 +1,112 @@ +# 🛠 + +👆 💪 🔗 🕹 👆 👚‍🎚, 🖌 ⏮ 🎙 🎙 📟 ⚖ 🗒. + +## 🀙 `uvicorn` + +👆 FastAPI 🈞, 🗄 & 🏃 `uvicorn` 🔗: + +```Python hl_lines="1 15" +{!../../../docs_src/debugging/tutorial001.py!} +``` + +### 🔃 `__name__ == "__main__"` + +👑 🎯 `__name__ == "__main__"` ✔ 📟 👈 🛠 🕐❔ 👆 📁 🀙 ⏮: + +
+ +```console +$ python myapp.py +``` + +
+ +✋ 🚫 🀙 🕐❔ ➕1⃣ 📁 🗄 ⚫, 💖: + +```Python +from myapp import app +``` + +#### 🌅 ℹ + +➡ 💬 👆 📁 🌟 `myapp.py`. + +🚥 👆 🏃 ⚫ ⏮: + +
+ +```console +$ python myapp.py +``` + +
+ +‎ 🔗 🔢 `__name__` 👆 📁, ✍ 🔁 🐍, 🔜 ✔ 💲 🎻 `"__main__"`. + +, 📄: + +```Python + uvicorn.run(app, host="0.0.0.0", port=8000) +``` + +🔜 🏃. + +--- + +👉 🏆 🚫 🔚 🚥 👆 🗄 👈 🕹 (📁). + +, 🚥 👆 ✔ ➕1⃣ 📁 `importer.py` ⏮: + +```Python +from myapp import app + +# Some more code +``` + +👈 💌, 🏧 🔢 🔘 `myapp.py` 🔜 🚫 ✔ 🔢 `__name__` ⏮ 💲 `"__main__"`. + +, ⏞: + +```Python + uvicorn.run(app, host="0.0.0.0", port=8000) +``` + +🔜 🚫 🛠. + +!!! info + 🌅 ℹ, ✅ 🛂 🐍 🩺. + +## 🏃 👆 📟 ⏮ 👆 🕹 + +↩ 👆 🏃 Uvicorn 💜 🔗 ⚪➡ 👆 📟, 👆 💪 🀙 👆 🐍 📋 (👆 FastAPI 🈞) 🔗 ⚪➡ 🕹. + +--- + +🖌, 🎙 🎙 📟, 👆 💪: + +* 🚶 "ℹ" 🎛. +* "🚮 📳...". +* 🖊 "🐍" +* 🏃 🕹 ⏮ 🎛 "`Python: Current File (Integrated Terminal)`". + +⚫ 🔜 ‎ ▶ 💜 ⏮ 👆 **FastAPI** 📟, ⛔ 👆 0⃣, ♒. + +📥 ❔ ⚫ 💪 👀: + + + +--- + +🚥 👆 ⚙ 🗒, 👆 💪: + +* 📂 "🏃" 🍣. +* 🖊 🎛 "ℹ...". +* ‎ 🔑 🍣 🎊 🆙. +* 🖊 📁 ℹ (👉 💌, `main.py`). + +⚫ 🔜 ‎ ▶ 💜 ⏮ 👆 **FastAPI** 📟, ⛔ 👆 0⃣, ♒. + +📥 ❔ ⚫ 💪 👀: + + diff --git a/docs/em/docs/tutorial/dependencies/classes-as-dependencies.md b/docs/em/docs/tutorial/dependencies/classes-as-dependencies.md new file mode 100644 index 000000000..e2d2686d3 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/classes-as-dependencies.md @@ -0,0 +1,247 @@ +# 🎓 🔗 + +⏭ 🀿 ⏬ 🔘 **🔗 💉** ⚙, ➡ ♻ ⏮ 🖌. + +## `dict` ⚪➡ ⏮ 🖌 + +⏮ 🖌, 👥 🛬 `dict` ⚪➡ 👆 🔗 ("☑"): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/dependencies/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/dependencies/tutorial001_py310.py!} + ``` + +✋ ‎ 👥 🀚 `dict` 🔢 `commons` *➡ 🛠 🔢*. + +& 👥 💭 👈 👚‍🎚 💪 🚫 🚚 📚 🐕‍🊺 (💖 🛠) `dict`Ⓜ, ↩ 👫 💪 🚫 💭 👫 🔑 & 💲 🆎. + +👥 💪 👍... + +## ⚫❔ ⚒ 🔗 + +🆙 🔜 👆 ✔ 👀 🔗 📣 🔢. + +✋ 👈 🚫 🕎 🌌 📣 🔗 (👐 ⚫ 🔜 🎲 🌖 ⚠). + +🔑 ⚖ 👈 🔗 🔜 "🇧🇲". + +"**🇧🇲**" 🐍 🕳 👈 🐍 💪 "🀙" 💖 🔢. + +, 🚥 👆 ✔ 🎚 `something` (👈 💪 _🚫_ 🔢) & 👆 💪 "🀙" ⚫ (🛠 ⚫) 💖: + +```Python +something() +``` + +⚖ + +```Python +something(some_argument, some_keyword_argument="foo") +``` + +‎ ⚫ "🇧🇲". + +## 🎓 🔗 + +👆 5⃣📆 👀 👈 ✍ 👐 🐍 🎓, 👆 ⚙ 👈 🎏 ❕. + +🖌: + +```Python +class Cat: + def __init__(self, name: str): + self.name = name + + +fluffy = Cat(name="Mr Fluffy") +``` + +👉 💌, `fluffy` 👐 🎓 `Cat`. + +& ✍ `fluffy`, 👆 "🀙" `Cat`. + +, 🐍 🎓 **🇧🇲**. + +‎, **FastAPI**, 👆 💪 ⚙ 🐍 🎓 🔗. + +⚫❔ FastAPI 🀙 ✅ 👈 ⚫ "🇧🇲" (🔢, 🎓 ⚖ 🕳 🙆) & 🔢 🔬. + +🚥 👆 🚶‍♀ "🇧🇲" 🔗 **FastAPI**, ⚫ 🔜 🔬 🔢 👈 "🇧🇲", & 🛠 👫 🎏 🌌 🔢 *➡ 🛠 🔢*. ✅ 🎧-🔗. + +👈 ✔ 🇧🇲 ⏮ 🙅‍♂ 🔢 🌐. 🎏 ⚫ 🔜 *➡ 🛠 🔢* ⏮ 🙅‍♂ 🔢. + +‎, 👥 💪 🔀 🔗 "☑" `common_parameters` ⚪➡ 🔛 🎓 `CommonQueryParams`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="11-15" + {!> ../../../docs_src/dependencies/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="9-13" + {!> ../../../docs_src/dependencies/tutorial002_py310.py!} + ``` + +💞 🙋 `__init__` 👩‍🔬 ⚙ ✍ 👐 🎓: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="12" + {!> ../../../docs_src/dependencies/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/dependencies/tutorial002_py310.py!} + ``` + +...⚫ ✔ 🎏 🔢 👆 ⏮ `common_parameters`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/dependencies/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="6" + {!> ../../../docs_src/dependencies/tutorial001_py310.py!} + ``` + +📚 🔢 ⚫❔ **FastAPI** 🔜 ⚙ "❎" 🔗. + +👯‍♂ 💌, ⚫ 🔜 ✔: + +* 📊 `q` 🔢 🔢 👈 `str`. +* `skip` 🔢 🔢 👈 `int`, ⏮ 🔢 `0`. +* `limit` 🔢 🔢 👈 `int`, ⏮ 🔢 `100`. + +👯‍♂ 💌 💜 🔜 🗜, ✔, 📄 🔛 🗄 🔗, ♒. + +## ⚙ ⚫ + +🔜 👆 💪 📣 👆 🔗 ⚙ 👉 🎓. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/dependencies/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17" + {!> ../../../docs_src/dependencies/tutorial002_py310.py!} + ``` + +**FastAPI** 🀙 `CommonQueryParams` 🎓. 👉 ✍ "👐" 👈 🎓 & 👐 🔜 🚶‍♀ 🔢 `commons` 👆 🔢. + +## 🆎 ✍ 🆚 `Depends` + +👀 ❔ 👥 ✍ `CommonQueryParams` 🕐 🔛 📟: + +```Python +commons: CommonQueryParams = Depends(CommonQueryParams) +``` + +🏁 `CommonQueryParams`,: + +```Python +... = Depends(CommonQueryParams) +``` + +...⚫❔ **FastAPI** 🔜 🀙 ⚙ 💭 ⚫❔ 🔗. + +⚪➡ ⚫ 👈 FastAPI 🔜 ⚗ 📣 🔢 & 👈 ⚫❔ FastAPI 🔜 🀙 🀙. + +--- + +👉 💌, 🥇 `CommonQueryParams`,: + +```Python +commons: CommonQueryParams ... +``` + +...🚫 ✔ 🙆 🎁 🔑 **FastAPI**. FastAPI 🏆 🚫 ⚙ ⚫ 💜 🛠, 🔬, ♒. (⚫ ⚙ `= Depends(CommonQueryParams)` 👈). + +👆 💪 🀙 ✍: + +```Python +commons = Depends(CommonQueryParams) +``` + +...: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/dependencies/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17" + {!> ../../../docs_src/dependencies/tutorial003_py310.py!} + ``` + +✋ 📣 🆎 💡 👈 🌌 👆 👚‍🎚 🔜 💭 ⚫❔ 🔜 🚶‍♀ 🔢 `commons`, & ‎ ⚫ 💪 ℹ 👆 ⏮ 📟 🛠, 🆎 ✅, ♒: + + + +## ⌹ + +✋ 👆 👀 👈 👥 ✔ 📟 🔁 📥, ✍ `CommonQueryParams` 🕐: + +```Python +commons: CommonQueryParams = Depends(CommonQueryParams) +``` + +**FastAPI** 🚚 ⌹ 👫 💌, 🌐❔ 🔗 *🎯* 🎓 👈 **FastAPI** 🔜 "🀙" ✍ 👐 🎓 ⚫. + +📚 🎯 💌, 👆 💪 📄: + +↩ ✍: + +```Python +commons: CommonQueryParams = Depends(CommonQueryParams) +``` + +...👆 ✍: + +```Python +commons: CommonQueryParams = Depends() +``` + +👆 📣 🔗 🆎 🔢, & 👆 ⚙ `Depends()` 🚮 "🔢" 💲 (👈 ⏮ `=`) 👈 🔢 🔢, 🍵 🙆 🔢 `Depends()`, ↩ ✔ ✍ 🌕 🎓 *🔄* 🔘 `Depends(CommonQueryParams)`. + +🎏 🖌 🔜 ‎ 👀 💖: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/dependencies/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17" + {!> ../../../docs_src/dependencies/tutorial004_py310.py!} + ``` + +...& **FastAPI** 🔜 💭 ⚫❔. + +!!! tip + 🚥 👈 😑 🌅 😚 🌘 👍, 🀷‍♂ ⚫, 👆 🚫 *💪* ⚫. + + ⚫ ⌹. ↩ **FastAPI** 💅 🔃 🀝 👆 📉 📟 🔁. diff --git a/docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md b/docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md new file mode 100644 index 000000000..4d54b91c7 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md @@ -0,0 +1,71 @@ +# 🔗 ➡ 🛠 👚‍🎚 + +💌 👆 🚫 🀙 💪 📚 💲 🔗 🔘 👆 *➡ 🛠 🔢*. + +⚖ 🔗 🚫 📚 💲. + +✋ 👆 💪 ⚫ 🛠/❎. + +📚 💌, ↩ 📣 *➡ 🛠 🔢* 🔢 ⏮ `Depends`, 👆 💪 🚮 `list` `dependencies` *➡ 🛠 👚‍🎚*. + +## 🚮 `dependencies` *➡ 🛠 👚‍🎚* + +*➡ 🛠 👚‍🎚* 📚 📊 ❌ `dependencies`. + +⚫ 🔜 `list` `Depends()`: + +```Python hl_lines="17" +{!../../../docs_src/dependencies/tutorial006.py!} +``` + +👉 🔗 🔜 🛠/❎ 🎏 🌌 😐 🔗. ✋ 👫 💲 (🚥 👫 📚 🙆) 🏆 🚫 🚶‍♀ 👆 *➡ 🛠 🔢*. + +!!! tip + 👚‍🎚 ✅ ♻ 🔢 🔢, & 🎊 👫 ❌. + + ⚙ 👉 `dependencies` *➡ 🛠 👚‍🎚* 👆 💪 ⚒ 💭 👫 🛠 ⏪ ❎ 👚‍🎚/🏭 ❌. + + ⚫ 💪 ℹ ❎ 😚 🆕 👩‍💻 👈 👀 ♻ 🔢 👆 📟 & 💪 💭 ⚫ 🙃. + +!!! info + 👉 🖌 👥 ⚙ 💭 🛃 🎚 `X-Key` & `X-Token`. + + ✋ 🎰 💌, 🕐❔ 🛠 💂‍♂, 👆 🔜 🀚 🌖 💰 ⚪➡ ⚙ 🛠 [💂‍♂ 🚙 (⏭ 📃)](../security/index.md){.internal-link target=_blank}. + +## 🔗 ❌ & 📚 💲 + +👆 💪 ⚙ 🎏 🔗 *🔢* 👆 ⚙ 🛎. + +### 🔗 📄 + +👫 💪 📣 📚 📄 (💖 🎚) ⚖ 🎏 🎧-🔗: + +```Python hl_lines="6 11" +{!../../../docs_src/dependencies/tutorial006.py!} +``` + +### 🀚 ⚠ + +👫 🔗 💪 `raise` ⚠, 🎏 😐 🔗: + +```Python hl_lines="8 13" +{!../../../docs_src/dependencies/tutorial006.py!} +``` + +### 📚 💲 + +& 👫 💪 📚 💲 ⚖ 🚫, 💲 🏆 🚫 ⚙. + +, 👆 💪 🏀-⚙ 😐 🔗 (👈 📚 💲) 👆 ⏪ ⚙ 👱 🙆, & ✋ 💲 🏆 🚫 ⚙, 🔗 🔜 🛠: + +```Python hl_lines="9 14" +{!../../../docs_src/dependencies/tutorial006.py!} +``` + +## 🔗 👪 *➡ 🛠* + +⏪, 🕐❔ 👂 🔃 ❔ 📊 🊏 🈞 ([🊏 🈞 - 💗 📁](../../tutorial/bigger-applications.md){.internal-link target=_blank}), 🎲 ⏮ 💗 📁, 👆 🔜 💡 ❔ 📣 👁 `dependencies` 🔢 👪 *➡ 🛠*. + +## 🌐 🔗 + +⏭ 👥 🔜 👀 ❔ 🚮 🔗 🎂 `FastAPI` 🈞, 👈 👫 ✔ 🔠 *➡ 🛠*. diff --git a/docs/em/docs/tutorial/dependencies/dependencies-with-yield.md b/docs/em/docs/tutorial/dependencies/dependencies-with-yield.md new file mode 100644 index 000000000..9617667f4 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/dependencies-with-yield.md @@ -0,0 +1,219 @@ +# 🔗 ⏮ 🌟 + +FastAPI 🐕‍🊺 🔗 👈 ➕ 🔁 ⏮ 🏁. + +👉, ⚙ `yield` ↩ `return`, & ✍ ➕ 🔁 ⏮. + +!!! tip + ⚒ 💭 ⚙ `yield` 1⃣ 👁 🕰. + +!!! note "📡 ℹ" + 🙆 🔢 👈 ☑ ⚙ ⏮: + + * `@contextlib.contextmanager` ⚖ + * `@contextlib.asynccontextmanager` + + 🔜 ☑ ⚙ **FastAPI** 🔗. + + 👐, FastAPI ⚙ 📚 2⃣ 👚‍🎚 🔘. + +## 💜 🔗 ⏮ `yield` + +🖌, 👆 💪 ⚙ 👉 ✍ 💜 🎉 & 🔐 ⚫ ⏮ 🏁. + +🕎 📟 ⏭ & 🔌 `yield` 📄 🛠 ⏭ 📚 📚: + +```Python hl_lines="2-4" +{!../../../docs_src/dependencies/tutorial007.py!} +``` + +🌟 💲 ⚫❔ 💉 🔘 *➡ 🛠* & 🎏 🔗: + +```Python hl_lines="4" +{!../../../docs_src/dependencies/tutorial007.py!} +``` + +📟 📄 `yield` 📄 🛠 ⏮ 📚 ✔ 🚚: + +```Python hl_lines="5-6" +{!../../../docs_src/dependencies/tutorial007.py!} +``` + +!!! tip + 👆 💪 ⚙ `async` ⚖ 😐 🔢. + + **FastAPI** 🔜 ▶ 👜 ⏮ 🔠, 🎏 ⏮ 😐 🔗. + +## 🔗 ⏮ `yield` & `try` + +🚥 👆 ⚙ `try` 🍫 🔗 ⏮ `yield`, 👆 🔜 📚 🙆 ⚠ 👈 🚮 🕐❔ ⚙ 🔗. + +🖌, 🚥 📟 ☝ 🖕, ➕1⃣ 🔗 ⚖ *➡ 🛠*, ⚒ 💜 💵 "💟" ⚖ ✍ 🙆 🎏 ❌, 👆 🔜 📚 ⚠ 👆 🔗. + +, 👆 💪 👀 👈 🎯 ⚠ 🔘 🔗 ⏮ `except SomeException`. + +🎏 🌌, 👆 💪 ⚙ `finally` ⚒ 💭 🚪 📶 🛠, 🙅‍♂ 🀔 🚥 📀 ⚠ ⚖ 🚫. + +```Python hl_lines="3 5" +{!../../../docs_src/dependencies/tutorial007.py!} +``` + +## 🎧-🔗 ⏮ `yield` + +👆 💪 ✔ 🎧-🔗 & "🌲" 🎧-🔗 🙆 📐 & 💠, & 🙆 ⚖ 🌐 👫 💪 ⚙ `yield`. + +**FastAPI** 🔜 ⚒ 💭 👈 "🚪 📟" 🔠 🔗 ⏮ `yield` 🏃 ☑ ✔. + +🖌, `dependency_c` 💪 ✔ 🔗 🔛 `dependency_b`, & `dependency_b` 🔛 `dependency_a`: + +```Python hl_lines="4 12 20" +{!../../../docs_src/dependencies/tutorial008.py!} +``` + +& 🌐 👫 💪 ⚙ `yield`. + +👉 💌 `dependency_c`, 🛠 🚮 🚪 📟, 💪 💲 ⚪➡ `dependency_b` (📥 📛 `dep_b`) 💪. + +& , 🔄, `dependency_b` 💪 💲 ⚪➡ `dependency_a` (📥 📛 `dep_a`) 💪 🚮 🚪 📟. + +```Python hl_lines="16-17 24-25" +{!../../../docs_src/dependencies/tutorial008.py!} +``` + +🎏 🌌, 👆 💪 ✔ 🔗 ⏮ `yield` & `return` 🌀. + +& 👆 💪 ✔ 👁 🔗 👈 🚚 📚 🎏 🔗 ⏮ `yield`, ♒. + +👆 💪 ✔ 🙆 🌀 🔗 👈 👆 💚. + +**FastAPI** 🔜 ⚒ 💭 🌐 🏃 ☑ ✔. + +!!! note "📡 ℹ" + 👉 👷 👏 🐍 🔑 👚‍💌. + + **FastAPI** ⚙ 👫 🔘 🏆 👉. + +## 🔗 ⏮ `yield` & `HTTPException` + +👆 👀 👈 👆 💪 ⚙ 🔗 ⏮ `yield` & ✔ `try` 🍫 👈 ✊ ⚠. + +⚫ 5⃣📆 😋 🀚 `HTTPException` ⚖ 🎏 🚪 📟, ⏮ `yield`. ✋ **⚫ 🏆 🚫 👷**. + +🚪 📟 🔗 ⏮ `yield` 🛠 *⏮* 📚 📚, [⚠ 🐕‍🊺](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank} 🔜 ✔ ⏪ 🏃. 📀 🕳 😜 ⚠ 🚮 👆 🔗 🚪 📟 (⏮ `yield`). + +, 🚥 👆 🀚 `HTTPException` ⏮ `yield`, 🔢 (⚖ 🙆 🛃) ⚠ 🐕‍🊺 👈 ✊ `HTTPException`Ⓜ & 📚 🇺🇞🔍 4⃣0⃣0⃣ 📚 🏆 🚫 📀 ✊ 👈 ⚠ 🚫🔜. + +👉 ⚫❔ ✔ 🕳 ⚒ 🔗 (✅ 💜 🎉), 🖌, ⚙ 🖥 📋. + +🖥 📋 🏃 *⏮* 📚 ✔ 📚. 📀 🙅‍♂ 🌌 🀚 `HTTPException` ↩ 📀 🚫 🌌 🔀 📚 👈 *⏪ 📚*. + +✋ 🚥 🖥 📋 ✍ 💜 ❌, 🌘 👆 💪 💟 ⚖ 😬 🔐 🎉 🔗 ⏮ `yield`, & 🎲 🕹 ❌ ⚖ 📄 ⚫ 🛰 🕵 ⚙. + +🚥 👆 ✔ 📟 👈 👆 💭 💪 🀚 ⚠, 🏆 😐/"🙃" 👜 & 🚮 `try` 🍫 👈 📄 📟. + +🚥 👆 ✔ 🛃 ⚠ 👈 👆 🔜 💖 🍵 *⏭* 🛬 📚 & 🎲 ❎ 📚, 🎲 🙋‍♀ `HTTPException`, ✍ [🛃 ⚠ 🐕‍🊺](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank}. + +!!! tip + 👆 💪 🀚 ⚠ 🔌 `HTTPException` *⏭* `yield`. ✋ 🚫 ⏮. + +🔁 🛠 🌅 ⚖ 🌘 💖 👉 📊. 🕰 💧 ⚪➡ 🔝 🔝. & 🔠 🏓 1⃣ 🍕 🔗 ⚖ 🛠 📟. + +```mermaid +sequenceDiagram + +participant client as Client +participant handler as Exception handler +participant dep as Dep with yield +participant operation as Path Operation +participant tasks as Background tasks + + Note over client,tasks: Can raise exception for dependency, handled after response is sent + Note over client,operation: Can raise HTTPException and can change the response + client ->> dep: Start request + Note over dep: Run code up to yield + opt raise + dep -->> handler: Raise HTTPException + handler -->> client: HTTP error response + dep -->> dep: Raise other exception + end + dep ->> operation: Run dependency, e.g. DB session + opt raise + operation -->> dep: Raise HTTPException + dep -->> handler: Auto forward exception + handler -->> client: HTTP error response + operation -->> dep: Raise other exception + dep -->> handler: Auto forward exception + end + operation ->> client: Return response to client + Note over client,operation: Response is already sent, can't change it anymore + opt Tasks + operation -->> tasks: Send background tasks + end + opt Raise other exception + tasks -->> dep: Raise other exception + end + Note over dep: After yield + opt Handle other exception + dep -->> dep: Handle exception, can't change response. E.g. close DB session. + end +``` + +!!! info + 🕎 **1⃣ 📚** 🔜 📚 👩‍💻. ⚫ 💪 1⃣ ❌ 📚 ⚖ ⚫ 🔜 📚 ⚪➡ *➡ 🛠*. + + ⏮ 1⃣ 📚 📚 📚, 🙅‍♂ 🎏 📚 💪 📚. + +!!! tip + 👉 📊 🎊 `HTTPException`, ✋ 👆 💪 🀚 🙆 🎏 ⚠ ❔ 👆 ✍ [🛃 ⚠ 🐕‍🊺](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank}. + + 🚥 👆 🀚 🙆 ⚠, ⚫ 🔜 🚶‍♀ 🔗 ⏮ 🌟, 🔌 `HTTPException`, & ‎ **🔄** ⚠ 🐕‍🊺. 🚥 📀 🙅‍♂ ⚠ 🐕‍🊺 👈 ⚠, ⚫ 🔜 ‎ 🍵 🔢 🔗 `ServerErrorMiddleware`, 🛬 5⃣0⃣0⃣ 🇺🇞🔍 👔 📟, ➡ 👩‍💻 💭 👈 📀 ❌ 💜. + +## 🔑 👚‍💌 + +### ⚫❔ "🔑 👚‍💌" + +"🔑 👚‍💌" 🙆 👈 🐍 🎚 👈 👆 💪 ⚙ `with` 📄. + +🖌, 👆 💪 ⚙ `with` ✍ 📁: + +```Python +with open("./somefile.txt") as f: + contents = f.read() + print(contents) +``` + +🔘, `open("./somefile.txt")` ✍ 🎚 👈 🀙 "🔑 👚‍💌". + +🕐❔ `with` 🍫 🏁, ⚫ ⚒ 💭 🔐 📁, 🚥 📀 ⚠. + +🕐❔ 👆 ✍ 🔗 ⏮ `yield`, **FastAPI** 🔜 🔘 🗜 ⚫ 🔑 👚‍💌, & 🌀 ⚫ ⏮ 🎏 🔗 🧰. + +### ⚙ 🔑 👚‍💌 🔗 ⏮ `yield` + +!!! warning + 👉, 🌅 ⚖ 🌘, "🏧" 💭. + + 🚥 👆 ▶ ⏮ **FastAPI** 👆 💪 💚 🚶 ⚫ 🔜. + +🐍, 👆 💪 ✍ 🔑 👚‍💌 🏗 🎓 ⏮ 2⃣ 👩‍🔬: `__enter__()` & `__exit__()`. + +👆 💪 ⚙ 👫 🔘 **FastAPI** 🔗 ⏮ `yield` ⚙ +`with` ⚖ `async with` 📄 🔘 🔗 🔢: + +```Python hl_lines="1-9 13" +{!../../../docs_src/dependencies/tutorial010.py!} +``` + +!!! tip + ➕1⃣ 🌌 ✍ 🔑 👚‍💌 ⏮: + + * `@contextlib.contextmanager` ⚖ + * `@contextlib.asynccontextmanager` + + ⚙ 👫 🎀 🔢 ⏮ 👁 `yield`. + + 👈 ⚫❔ **FastAPI** ⚙ 🔘 🔗 ⏮ `yield`. + + ✋ 👆 🚫 ✔ ⚙ 👚‍🎚 FastAPI 🔗 (& 👆 🚫🔜 🚫). + + FastAPI 🔜 ⚫ 👆 🔘. diff --git a/docs/em/docs/tutorial/dependencies/global-dependencies.md b/docs/em/docs/tutorial/dependencies/global-dependencies.md new file mode 100644 index 000000000..81759d0e8 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/global-dependencies.md @@ -0,0 +1,17 @@ +# 🌐 🔗 + +🆎 🈞 👆 💪 💚 🚮 🔗 🎂 🈞. + +🎏 🌌 👆 💪 [🚮 `dependencies` *➡ 🛠 👚‍🎚*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank}, 👆 💪 🚮 👫 `FastAPI` 🈞. + +👈 💌, 👫 🔜 ✔ 🌐 *➡ 🛠* 🈞: + +```Python hl_lines="15" +{!../../../docs_src/dependencies/tutorial012.py!} +``` + +& 🌐 💭 📄 🔃 [❎ `dependencies` *➡ 🛠 👚‍🎚*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} ✔, ✋ 👉 💌, 🌐 *➡ 🛠* 📱. + +## 🔗 👪 *➡ 🛠* + +⏪, 🕐❔ 👂 🔃 ❔ 📊 🊏 🈞 ([🊏 🈞 - 💗 📁](../../tutorial/bigger-applications.md){.internal-link target=_blank}), 🎲 ⏮ 💗 📁, 👆 🔜 💡 ❔ 📣 👁 `dependencies` 🔢 👪 *➡ 🛠*. diff --git a/docs/em/docs/tutorial/dependencies/index.md b/docs/em/docs/tutorial/dependencies/index.md new file mode 100644 index 000000000..f1c28c573 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/index.md @@ -0,0 +1,233 @@ +# 🔗 - 🥇 🔁 + +**FastAPI** ✔ 📶 🏋 ✋ 🏋 **🔗 💉** ⚙. + +⚫ 🏗 📶 🙅 ⚙, & ⚒ ⚫ 📶 ⏩ 🙆 👩‍💻 🛠 🎏 🊲 ⏮ **FastAPI**. + +## ⚫❔ "🔗 💉" + +**"🔗 💉"** ⛓, 📋, 👈 📀 🌌 👆 📟 (👉 💌, 👆 *➡ 🛠 🔢*) 📣 👜 👈 ⚫ 🚚 👷 & ⚙: "🔗". + +& ‎, 👈 ⚙ (👉 💌 **FastAPI**) 🔜 ✊ 💅 🔚 ⚫❔ 💪 🚚 👆 📟 ⏮ 📚 💪 🔗 ("💉" 🔗). + +👉 📶 ⚠ 🕐❔ 👆 💪: + +* ✔ 💰 ⚛ (🎏 📟 ⚛ 🔄 & 🔄). +* 💰 💜 🔗. +* 🛠 💂‍♂, 🀝, 🔑 📄, ♒. +* & 📚 🎏 👜... + +🌐 👫, ⏪ 📉 📟 🔁. + +## 🥇 🔁 + +➡ 👀 📶 🙅 🖌. ⚫ 🔜 🙅 👈 ⚫ 🚫 📶 ⚠, 🔜. + +✋ 👉 🌌 👥 💪 🎯 🔛 ❔ **🔗 💉** ⚙ 👷. + +### ✍ 🔗, ⚖ "☑" + +➡ 🥇 🎯 🔛 🔗. + +⚫ 🔢 👈 💪 ✊ 🌐 🎏 🔢 👈 *➡ 🛠 🔢* 💪 ✊: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="8-11" + {!> ../../../docs_src/dependencies/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="6-7" + {!> ../../../docs_src/dependencies/tutorial001_py310.py!} + ``` + +👈 ⚫. + +**2⃣ ⏞**. + +& ⚫ ✔ 🎏 💠 & 📊 👈 🌐 👆 *➡ 🛠 🔢* ✔. + +👆 💪 💭 ⚫ *➡ 🛠 🔢* 🍵 "👚‍🎚" (🍵 `@app.get("/some-path")`). + +& ⚫ 💪 📚 🕳 👆 💚. + +👉 💌, 👉 🔗 ⌛: + +* 📊 🔢 🔢 `q` 👈 `str`. +* 📊 🔢 🔢 `skip` 👈 `int`, & 🔢 `0`. +* 📊 🔢 🔢 `limit` 👈 `int`, & 🔢 `100`. + +& ‎ ⚫ 📚 `dict` ⚗ 📚 💲. + +### 🗄 `Depends` + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3" + {!> ../../../docs_src/dependencies/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/dependencies/tutorial001_py310.py!} + ``` + +### 📣 🔗, "⚓" + +🎏 🌌 👆 ⚙ `Body`, `Query`, ♒. ⏮ 👆 *➡ 🛠 🔢* 🔢, ⚙ `Depends` ⏮ 🆕 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15 20" + {!> ../../../docs_src/dependencies/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="11 16" + {!> ../../../docs_src/dependencies/tutorial001_py310.py!} + ``` + +👐 👆 ⚙ `Depends` 🔢 👆 🔢 🎏 🌌 👆 ⚙ `Body`, `Query`, ♒, `Depends` 👷 👄 🎏. + +👆 🕎 🀝 `Depends` 👁 🔢. + +👉 🔢 🔜 🕳 💖 🔢. + +& 👈 🔢 ✊ 🔢 🎏 🌌 👈 *➡ 🛠 🔢* . + +!!! tip + 👆 🔜 👀 ⚫❔ 🎏 "👜", ↖ ⚪➡ 🔢, 💪 ⚙ 🔗 ⏭ 📃. + +🕐❔ 🆕 📚 🛬, **FastAPI** 🔜 ✊ 💅: + +* 🀙 👆 🔗 ("☑") 🔢 ⏮ ☑ 🔢. +* 🀚 🏁 ⚪➡ 👆 🔢. +* 🛠 👈 🏁 🔢 👆 *➡ 🛠 🔢*. + +```mermaid +graph TB + +common_parameters(["common_parameters"]) +read_items["/items/"] +read_users["/users/"] + +common_parameters --> read_items +common_parameters --> read_users +``` + +👉 🌌 👆 ✍ 🔗 📟 🕐 & **FastAPI** ✊ 💅 🀙 ⚫ 👆 *➡ 🛠*. + +!!! check + 👀 👈 👆 🚫 ✔ ✍ 🎁 🎓 & 🚶‍♀ ⚫ 👱 **FastAPI** "®" ⚫ ⚖ 🕳 🎏. + + 👆 🚶‍♀ ⚫ `Depends` & **FastAPI** 💭 ❔ 🎂. + +## `async` ⚖ 🚫 `async` + +🔗 🔜 🀙 **FastAPI** (🎏 👆 *➡ 🛠 🔢*), 🎏 🚫 ✔ ⏪ 🔬 👆 🔢. + +👆 💪 ⚙ `async def` ⚖ 😐 `def`. + +& 👆 💪 📣 🔗 ⏮ `async def` 🔘 😐 `def` *➡ 🛠 🔢*, ⚖ `def` 🔗 🔘 `async def` *➡ 🛠 🔢*, ♒. + +⚫ 🚫 🀔. **FastAPI** 🔜 💭 ⚫❔. + +!!! note + 🚥 👆 🚫 💭, ✅ [🔁: *"🏃 ❓" *](../../async.md){.internal-link target=_blank} 📄 🔃 `async` & `await` 🩺. + +## 🛠 ⏮ 🗄 + +🌐 📚 📄, 🔬 & 📄 👆 🔗 (& 🎧-🔗) 🔜 🛠 🎏 🗄 🔗. + +, 🎓 🩺 🔜 ✔ 🌐 ℹ ⚪➡ 👫 🔗 💁‍♂: + + + +## 🙅 ⚙ + +🚥 👆 👀 ⚫, *➡ 🛠 🔢* 📣 ⚙ 🕐❔ *➡* & *🛠* 🏏, & ‎ **FastAPI** ✊ 💅 🀙 🔢 ⏮ ☑ 🔢, ❎ 📊 ⚪➡ 📚. + +🀙, 🌐 (⚖ 🏆) 🕞 🛠 👷 👉 🎏 🌌. + +👆 🙅 🀙 👈 🔢 🔗. 👫 🀙 👆 🛠 (👉 💌, **FastAPI**). + +⏮ 🔗 💉 ⚙, 👆 💪 💬 **FastAPI** 👈 👆 *➡ 🛠 🔢* "🪀" 🔛 🕳 🙆 👈 🔜 🛠 ⏭ 👆 *➡ 🛠 🔢*, & **FastAPI** 🔜 ✊ 💅 🛠 ⚫ & "💉" 🏁. + +🎏 ⚠ ⚖ 👉 🎏 💭 "🔗 💉": + +* ℹ +* 🐕‍🊺 +* 🐕‍🊺 +* 💉 +* 🊲 + +## **FastAPI** 🔌-🔌 + +🛠 & "🔌-"Ⓜ 💪 🏗 ⚙ **🔗 💉** ⚙. ✋ 👐, 📀 🀙 **🙅‍♂ 💪 ✍ "🔌-🔌"**, ⚙ 🔗 ⚫ 💪 📣 ♟ 🔢 🛠 & 🔗 👈 ▶ 💪 👆 *➡ 🛠 🔢*. + +& 🔗 💪 ✍ 📶 🙅 & 🏋 🌌 👈 ✔ 👆 🗄 🐍 📊 👆 💪, & 🛠 👫 ⏮ 👆 🛠 🔢 👩‍❀‍👚 ⏞ 📟, *🌖*. + +👆 🔜 👀 🖌 👉 ⏭ 📃, 🔃 🔗 & ☁ 💜, 💂‍♂, ♒. + +## **FastAPI** 🔗 + +🊁 🔗 💉 ⚙ ⚒ **FastAPI** 🔗 ⏮: + +* 🌐 🔗 💜 +* ☁ 💜 +* 🔢 📊 +* 🔢 🔗 +* 🀝 & ✔ ⚙ +* 🛠 ⚙ ⚖ ⚙ +* 📚 💜 💉 ⚙ +* ♒. + +## 🙅 & 🏋 + +👐 🔗 🔗 💉 ⚙ 📶 🙅 🔬 & ⚙, ⚫ 📶 🏋. + +👆 💪 🔬 🔗 👈 🔄 💪 🔬 🔗 👫. + +🔚, 🔗 🌲 🔗 🏗, & **🔗 💉** ⚙ ✊ 💅 🔬 🌐 👉 🔗 👆 (& 👫 🎧-🔗) & 🚚 (💉) 🏁 🔠 🔁. + +🖌, ➡ 💬 👆 ✔ 4⃣ 🛠 🔗 (*➡ 🛠*): + +* `/items/public/` +* `/items/private/` +* `/users/{user_id}/activate` +* `/items/pro/` + +‎ 👆 💪 🚮 🎏 ✔ 📄 🔠 👫 ⏮ 🔗 & 🎧-🔗: + +```mermaid +graph TB + +current_user(["current_user"]) +active_user(["active_user"]) +admin_user(["admin_user"]) +paying_user(["paying_user"]) + +public["/items/public/"] +private["/items/private/"] +activate_user["/users/{user_id}/activate"] +pro_items["/items/pro/"] + +current_user --> active_user +active_user --> admin_user +active_user --> paying_user + +current_user --> public +active_user --> private +admin_user --> activate_user +paying_user --> pro_items +``` + +## 🛠 ⏮ **🗄** + +🌐 👫 🔗, ⏪ 📣 👫 📄, 🚮 🔢, 🔬, ♒. 👆 *➡ 🛠*. + +**FastAPI** 🔜 ✊ 💅 🚮 ⚫ 🌐 🗄 🔗, 👈 ⚫ 🎊 🎓 🧟 ⚙. diff --git a/docs/em/docs/tutorial/dependencies/sub-dependencies.md b/docs/em/docs/tutorial/dependencies/sub-dependencies.md new file mode 100644 index 000000000..454ff5129 --- /dev/null +++ b/docs/em/docs/tutorial/dependencies/sub-dependencies.md @@ -0,0 +1,110 @@ +# 🎧-🔗 + +👆 💪 ✍ 🔗 👈 ✔ **🎧-🔗**. + +👫 💪 **⏬** 👆 💪 👫. + +**FastAPI** 🔜 ✊ 💅 🔬 👫. + +## 🥇 🔗 "☑" + +👆 💪 ✍ 🥇 🔗 ("☑") 💖: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="8-9" + {!> ../../../docs_src/dependencies/tutorial005.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="6-7" + {!> ../../../docs_src/dependencies/tutorial005_py310.py!} + ``` + +⚫ 📣 📊 🔢 🔢 `q` `str`, & ‎ ⚫ 📚 ⚫. + +👉 🙅 (🚫 📶 ⚠), ✋ 🔜 ℹ 👥 🎯 🔛 ❔ 🎧-🔗 👷. + +## 🥈 🔗, "☑" & "⚓" + +‎ 👆 💪 ✍ ➕1⃣ 🔗 🔢 ("☑") 👈 🎏 🕰 📣 🔗 🚮 👍 (⚫ "⚓" 💁‍♂): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="13" + {!> ../../../docs_src/dependencies/tutorial005.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="11" + {!> ../../../docs_src/dependencies/tutorial005_py310.py!} + ``` + +➡ 🎯 🔛 🔢 📣: + +* ✋ 👉 🔢 🔗 ("☑") ⚫, ⚫ 📣 ➕1⃣ 🔗 (⚫ "🪀" 🔛 🕳 🙆). + * ⚫ 🪀 🔛 `query_extractor`, & 🛠 💲 📚 ⚫ 🔢 `q`. +* ⚫ 📣 📊 `last_query` 🍪, `str`. + * 🚥 👩‍💻 🚫 🚚 🙆 🔢 `q`, 👥 ⚙ 🏁 🔢 ⚙, ❔ 👥 🖊 🍪 ⏭. + +## ⚙ 🔗 + +‎ 👥 💪 ⚙ 🔗 ⏮: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/dependencies/tutorial005.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/dependencies/tutorial005_py310.py!} + ``` + +!!! info + 👀 👈 👥 🕎 📣 1⃣ 🔗 *➡ 🛠 🔢*, `query_or_cookie_extractor`. + + ✋ **FastAPI** 🔜 💭 👈 ⚫ ✔ ❎ `query_extractor` 🥇, 🚶‍♀ 🏁 👈 `query_or_cookie_extractor` ⏪ 🀙 ⚫. + +```mermaid +graph TB + +query_extractor(["query_extractor"]) +query_or_cookie_extractor(["query_or_cookie_extractor"]) + +read_query["/items/"] + +query_extractor --> query_or_cookie_extractor --> read_query +``` + +## ⚙ 🎏 🔗 💗 🕰 + +🚥 1⃣ 👆 🔗 📣 💗 🕰 🎏 *➡ 🛠*, 🖌, 💗 🔗 ✔ ⚠ 🎧-🔗, **FastAPI** 🔜 💭 🀙 👈 🎧-🔗 🕎 🕐 📍 📚. + +& ⚫ 🔜 🖊 📚 💲 "💟" & 🚶‍♀ ⚫ 🌐 "⚓" 👈 💪 ⚫ 👈 🎯 📚, ↩ 🀙 🔗 💗 🕰 🎏 📚. + +🏧 😐 🌐❔ 👆 💭 👆 💪 🔗 🀙 🔠 🔁 (🎲 💗 🕰) 🎏 📚 ↩ ⚙ "💟" 💲, 👆 💪 ⚒ 🔢 `use_cache=False` 🕐❔ ⚙ `Depends`: + +```Python hl_lines="1" +async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)): + return {"fresh_value": fresh_value} +``` + +## 🌃 + +↖ ⚪➡ 🌐 🎀 🔀 ⚙ 📥, **🔗 💉** ⚙ 🙅. + +🔢 👈 👀 🎏 *➡ 🛠 🔢*. + +✋, ⚫ 📶 🏋, & ✔ 👆 📣 🎲 🙇 🐊 🔗 "📊" (🌲). + +!!! tip + 🌐 👉 💪 🚫 😑 ⚠ ⏮ 👫 🙅 🖌. + + ✋ 👆 🔜 👀 ❔ ⚠ ⚫ 📃 🔃 **💂‍♂**. + + & 👆 🔜 👀 💞 📟 ⚫ 🔜 🖊 👆. diff --git a/docs/em/docs/tutorial/encoder.md b/docs/em/docs/tutorial/encoder.md new file mode 100644 index 000000000..75ca3824d --- /dev/null +++ b/docs/em/docs/tutorial/encoder.md @@ -0,0 +1,42 @@ +# 🎻 🔗 🔢 + +📀 💌 🌐❔ 👆 5⃣📆 💪 🗜 💜 🆎 (💖 Pydantic 🏷) 🕳 🔗 ⏮ 🎻 (💖 `dict`, `list`, ♒). + +🖌, 🚥 👆 💪 🏪 ⚫ 💜. + +👈, **FastAPI** 🚚 `jsonable_encoder()` 🔢. + +## ⚙ `jsonable_encoder` + +➡ 🌈 👈 👆 ✔ 💜 `fake_db` 👈 🕎 📚 🎻 🔗 💜. + +🖌, ⚫ 🚫 📚 `datetime` 🎚, 👈 🚫 🔗 ⏮ 🎻. + +, `datetime` 🎚 🔜 ✔ 🗜 `str` ⚗ 💜 💟 📁. + +🎏 🌌, 👉 💜 🚫🔜 📚 Pydantic 🏷 (🎚 ⏮ 🔢), 🕎 `dict`. + +👆 💪 ⚙ `jsonable_encoder` 👈. + +⚫ 📚 🎚, 💖 Pydantic 🏷, & 📚 🎻 🔗 ⏬: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="5 22" + {!> ../../../docs_src/encoder/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="4 21" + {!> ../../../docs_src/encoder/tutorial001_py310.py!} + ``` + +👉 🖌, ⚫ 🔜 🗜 Pydantic 🏷 `dict`, & `datetime` `str`. + +🏁 🀙 ⚫ 🕳 👈 💪 🗜 ⏮ 🐍 🐩 `json.dumps()`. + +⚫ 🚫 📚 ⭕ `str` ⚗ 💜 🎻 📁 (🎻). ⚫ 📚 🐍 🐩 💜 📊 (✅ `dict`) ⏮ 💲 & 🎧-💲 👈 🌐 🔗 ⏮ 🎻. + +!!! note + `jsonable_encoder` 🀙 ⚙ **FastAPI** 🔘 🗜 💜. ✋ ⚫ ⚠ 📚 🎏 😐. diff --git a/docs/em/docs/tutorial/extra-data-types.md b/docs/em/docs/tutorial/extra-data-types.md new file mode 100644 index 000000000..dfdf6141b --- /dev/null +++ b/docs/em/docs/tutorial/extra-data-types.md @@ -0,0 +1,82 @@ +# ➕ 💜 🆎 + +🆙 🔜, 👆 ✔ ⚙ ⚠ 📊 🆎, 💖: + +* `int` +* `float` +* `str` +* `bool` + +✋ 👆 💪 ⚙ 🌅 🏗 📊 🆎. + +& 👆 🔜 ✔ 🎏 ⚒ 👀 🆙 🔜: + +* 👑 👚‍🎚 🐕‍🊺. +* 💜 🛠 ⚪➡ 📚 📚. +* 💜 🛠 📚 💜. +* 💜 🔬. +* 🏧 ✍ & 🧟. + +## 🎏 💜 🆎 + +📥 🌖 📊 🆎 👆 💪 ⚙: + +* `UUID`: + * 🐩 "⭐ 😍 🆔", ⚠ 🆔 📚 💜 & ⚙. + * 📚 & 📚 🔜 🎚 `str`. +* `datetime.datetime`: + * 🐍 `datetime.datetime`. + * 📚 & 📚 🔜 🎚 `str` 💟 8⃣6⃣0⃣1⃣ 📁, 💖: `2008-09-15T15:53:00+05:00`. +* `datetime.date`: + * 🐍 `datetime.date`. + * 📚 & 📚 🔜 🎚 `str` 💟 8⃣6⃣0⃣1⃣ 📁, 💖: `2008-09-15`. +* `datetime.time`: + * 🐍 `datetime.time`. + * 📚 & 📚 🔜 🎚 `str` 💟 8⃣6⃣0⃣1⃣ 📁, 💖: `14:23:55.003`. +* `datetime.timedelta`: + * 🐍 `datetime.timedelta`. + * 📚 & 📚 🔜 🎚 `float` 🌐 🥈. + * Pydantic ✔ 🎊 ⚫ "💟 8⃣6⃣0⃣1⃣ 🕰 ➕ 🔢", 👀 🩺 🌅 ℹ. +* `frozenset`: + * 📚 & 📚, 😥 🎏 `set`: + * 📚, 📇 🔜 ✍, ❎ ❎ & 🏭 ⚫ `set`. + * 📚, `set` 🔜 🗜 `list`. + * 🏗 🔗 🔜 ✔ 👈 `set` 💲 😍 (⚙ 🎻 🔗 `uniqueItems`). +* `bytes`: + * 🐩 🐍 `bytes`. + * 📚 & 📚 🔜 😥 `str`. + * 🏗 🔗 🔜 ✔ 👈 ⚫ `str` ⏮ `binary` "📁". +* `Decimal`: + * 🐩 🐍 `Decimal`. + * 📚 & 📚, 🍵 🎏 `float`. +* 👆 💪 ✅ 🌐 ☑ Pydantic 📊 🆎 📥: Pydantic 📊 🆎. + +## 🖌 + +📥 🖌 *➡ 🛠* ⏮ 🔢 ⚙ 🔛 🆎. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 3 12-16" + {!> ../../../docs_src/extra_data_types/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1 2 11-15" + {!> ../../../docs_src/extra_data_types/tutorial001_py310.py!} + ``` + +🗒 👈 🔢 🔘 🔢 ✔ 👫 🐠 💜 🆎, & 👆 💪, 🖌, 🎭 😐 📅 🎭, 💖: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18-19" + {!> ../../../docs_src/extra_data_types/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17-18" + {!> ../../../docs_src/extra_data_types/tutorial001_py310.py!} + ``` diff --git a/docs/em/docs/tutorial/extra-models.md b/docs/em/docs/tutorial/extra-models.md new file mode 100644 index 000000000..06c36285d --- /dev/null +++ b/docs/em/docs/tutorial/extra-models.md @@ -0,0 +1,252 @@ +# ➕ 🏷 + +▶ ⏮ ⏮ 🖌, ⚫ 🔜 ⚠ ✔ 🌅 🌘 1⃣ 🔗 🏷. + +👉 ✎ 💌 👩‍💻 🏷, ↩: + +* **🔢 🏷** 💪 💪 ✔ 🔐. +* **🔢 🏷** 🔜 🚫 ✔ 🔐. +* **💜 🏷** 🔜 🎲 💪 ✔ #⃣ 🔐. + +!!! danger + 🙅 🏪 👩‍💻 🔢 🔐. 🕧 🏪 "🔐 #⃣" 👈 👆 💪 ‎ ✔. + + 🚥 👆 🚫 💭, 👆 🔜 💡 ⚫❔ "🔐#⃣" [💂‍♂ 📃](security/simple-oauth2.md#password-hashing){.internal-link target=_blank}. + +## 💗 🏷 + +📥 🏢 💭 ❔ 🏷 💪 👀 💖 ⏮ 👫 🔐 🏑 & 🥉 🌐❔ 👫 ⚙: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 11 16 22 24 29-30 33-35 40-41" + {!> ../../../docs_src/extra_models/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7 9 14 20 22 27-28 31-33 38-39" + {!> ../../../docs_src/extra_models/tutorial001_py310.py!} + ``` + +### 🔃 `**user_in.dict()` + +#### Pydantic `.dict()` + +`user_in` Pydantic 🏷 🎓 `UserIn`. + +Pydantic 🏷 ✔ `.dict()` 👩‍🔬 👈 📚 `dict` ⏮ 🏷 💜. + +, 🚥 👥 ✍ Pydantic 🎚 `user_in` 💖: + +```Python +user_in = UserIn(username="john", password="secret", email="john.doe@example.com") +``` + +& ‎ 👥 🀙: + +```Python +user_dict = user_in.dict() +``` + +👥 🔜 ✔ `dict` ⏮ 💜 🔢 `user_dict` (⚫ `dict` ↩ Pydantic 🏷 🎚). + +& 🚥 👥 🀙: + +```Python +print(user_dict) +``` + +👥 🔜 🀚 🐍 `dict` ⏮: + +```Python +{ + 'username': 'john', + 'password': 'secret', + 'email': 'john.doe@example.com', + 'full_name': None, +} +``` + +#### 🎁 `dict` + +🚥 👥 ✊ `dict` 💖 `user_dict` & 🚶‍♀ ⚫ 🔢 (⚖ 🎓) ⏮ `**user_dict`, 🐍 🔜 "🎁" ⚫. ⚫ 🔜 🚶‍♀ 🔑 & 💲 `user_dict` 🔗 🔑-💲 ❌. + +, ▶ ⏮ `user_dict` ⚪➡ 🔛, ✍: + +```Python +UserInDB(**user_dict) +``` + +🔜 🏁 🕳 🌓: + +```Python +UserInDB( + username="john", + password="secret", + email="john.doe@example.com", + full_name=None, +) +``` + +⚖ 🌅 ⚫❔, ⚙ `user_dict` 🔗, ⏮ ⚫❔ 🎚 ⚫ 💪 ✔ 🔮: + +```Python +UserInDB( + username = user_dict["username"], + password = user_dict["password"], + email = user_dict["email"], + full_name = user_dict["full_name"], +) +``` + +#### Pydantic 🏷 ⚪➡ 🎚 ➕1⃣ + +🖌 🔛 👥 🀚 `user_dict` ⚪➡ `user_in.dict()`, 👉 📟: + +```Python +user_dict = user_in.dict() +UserInDB(**user_dict) +``` + +🔜 🌓: + +```Python +UserInDB(**user_in.dict()) +``` + +...↩ `user_in.dict()` `dict`, & ‎ 👥 ⚒ 🐍 "🎁" ⚫ 🚶‍♀ ⚫ `UserInDB` 🔠 ⏮ `**`. + +, 👥 🀚 Pydantic 🏷 ⚪➡ 💜 ➕1⃣ Pydantic 🏷. + +#### 🎁 `dict` & ➕ 🇚🇻 + +& ‎ ❎ ➕ 🇚🇻 ❌ `hashed_password=hashed_password`, 💖: + +```Python +UserInDB(**user_in.dict(), hashed_password=hashed_password) +``` + +...🔚 🆙 💆‍♂ 💖: + +```Python +UserInDB( + username = user_dict["username"], + password = user_dict["password"], + email = user_dict["email"], + full_name = user_dict["full_name"], + hashed_password = hashed_password, +) +``` + +!!! warning + 🔗 🌖 🔢 🀖 💪 💧 💜, ✋ 👫 ↗ 🚫 🚚 🙆 🎰 💂‍♂. + +## 📉 ❎ + +📉 📟 ❎ 1⃣ 🐚 💭 **FastAPI**. + +📟 ❎ 📈 🀞 🐛, 💂‍♂ ❔, 📟 🔁 ❔ (🕐❔ 👆 ℹ 1⃣ 🥉 ✋ 🚫 🎏), ♒. + +& 👉 🏷 🌐 🀝 📚 💜 & ❎ 🔢 📛 & 🆎. + +👥 💪 👻. + +👥 💪 📣 `UserBase` 🏷 👈 🍊 🧢 👆 🎏 🏷. & ‎ 👥 💪 ⚒ 🏿 👈 🏷 👈 😖 🚮 🔢 (🆎 📄, 🔬, ♒). + +🌐 💜 🛠, 🔬, 🧟, ♒. 🔜 👷 🛎. + +👈 🌌, 👥 💪 📣 🔺 🖖 🏷 (⏮ 🔢 `password`, ⏮ `hashed_password` & 🍵 🔐): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 15-16 19-20 23-24" + {!> ../../../docs_src/extra_models/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7 13-14 17-18 21-22" + {!> ../../../docs_src/extra_models/tutorial002_py310.py!} + ``` + +## `Union` ⚖ `anyOf` + +👆 💪 📣 📚 `Union` 2⃣ 🆎, 👈 ⛓, 👈 📚 🔜 🙆 2⃣. + +⚫ 🔜 🔬 🗄 ⏮ `anyOf`. + +👈, ⚙ 🐩 🐍 🆎 🔑 `typing.Union`: + +!!! note + 🕐❔ ⚖ `Union`, 🔌 🏆 🎯 🆎 🥇, ⏩ 🌘 🎯 🆎. 🖌 🔛, 🌖 🎯 `PlaneItem` 👟 ⏭ `CarItem` `Union[PlaneItem, CarItem]`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 14-15 18-20 33" + {!> ../../../docs_src/extra_models/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1 14-15 18-20 33" + {!> ../../../docs_src/extra_models/tutorial003_py310.py!} + ``` + +### `Union` 🐍 3⃣.1⃣0⃣ + +👉 🖌 👥 🚶‍♀ `Union[PlaneItem, CarItem]` 💲 ❌ `response_model`. + +↩ 👥 🚶‍♀ ⚫ **💲 ❌** ↩ 🚮 ⚫ **🆎 ✍**, 👥 ✔ ⚙ `Union` 🐍 3⃣.1⃣0⃣. + +🚥 ⚫ 🆎 ✍ 👥 💪 ✔ ⚙ ⏞ ⏞,: + +```Python +some_variable: PlaneItem | CarItem +``` + +✋ 🚥 👥 🚮 👈 `response_model=PlaneItem | CarItem` 👥 🔜 🀚 ❌, ↩ 🐍 🔜 🔄 🎭 **❌ 🛠** 🖖 `PlaneItem` & `CarItem` ↩ 🔬 👈 🆎 ✍. + +## 📇 🏷 + +🎏 🌌, 👆 💪 📣 📚 📇 🎚. + +👈, ⚙ 🐩 🐍 `typing.List` (⚖ `list` 🐍 3⃣.9⃣ & 🔛): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 20" + {!> ../../../docs_src/extra_models/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/extra_models/tutorial004_py39.py!} + ``` + +## 📚 ⏮ ❌ `dict` + +👆 💪 📣 📚 ⚙ ✅ ❌ `dict`, 📣 🆎 🔑 & 💲, 🍵 ⚙ Pydantic 🏷. + +👉 ⚠ 🚥 👆 🚫 💭 ☑ 🏑/🔢 📛 (👈 🔜 💪 Pydantic 🏷) ⏪. + +👉 💌, 👆 💪 ⚙ `typing.Dict` (⚖ `dict` 🐍 3⃣.9⃣ & 🔛): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="1 8" + {!> ../../../docs_src/extra_models/tutorial005.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="6" + {!> ../../../docs_src/extra_models/tutorial005_py39.py!} + ``` + +## 🌃 + +⚙ 💗 Pydantic 🏷 & 😖 ➡ 🔠 💌. + +👆 🚫 💪 ✔ 👁 💜 🏷 📍 👚‍💌 🚥 👈 👚‍💌 🔜 💪 ✔ 🎏 "🇵🇞". 💌 ⏮ 👩‍💻 "👚‍💌" ⏮ 🇵🇞 ✅ `password`, `password_hash` & 🙅‍♂ 🔐. diff --git a/docs/em/docs/tutorial/first-steps.md b/docs/em/docs/tutorial/first-steps.md new file mode 100644 index 000000000..252e769f4 --- /dev/null +++ b/docs/em/docs/tutorial/first-steps.md @@ -0,0 +1,333 @@ +# 🥇 🔁 + +🙅 FastAPI 📁 💪 👀 💖 👉: + +```Python +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +📁 👈 📁 `main.py`. + +🏃 🖖 💜: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +INFO: Started reloader process [28720] +INFO: Started server process [28722] +INFO: Waiting for application startup. +INFO: Application startup complete. +``` + +
+ +!!! note + 📋 `uvicorn main:app` 🔗: + + * `main`: 📁 `main.py` (🐍 "🕹"). + * `app`: 🎚 ✍ 🔘 `main.py` ⏮ ⏞ `app = FastAPI()`. + * `--reload`: ⚒ 💜 ⏏ ⏮ 📟 🔀. 🕎 ⚙ 🛠. + +🔢, 📀 ⏞ ⏮ 🕳 💖: + +```hl_lines="4" +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +👈 ⏞ 🎊 📛 🌐❔ 👆 📱 ➖ 🍊, 👆 🇧🇿 🎰. + +### ✅ ⚫ + +📂 👆 🖥 http://127.0.0.1:8000. + +👆 🔜 👀 🎻 📚: + +```JSON +{"message": "Hello World"} +``` + +### 🎓 🛠 🩺 + +🔜 🚶 http://127.0.0.1:8000/docs. + +👆 🔜 👀 🏧 🎓 🛠 🧟 (🚚 🊁 🎚): + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) + +### 🎛 🛠 🩺 + +& 🔜, 🚶 http://127.0.0.1:8000/redoc. + +👆 🔜 👀 🎛 🏧 🧟 (🚚 📄): + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) + +### 🗄 + +**FastAPI** 🏗 "🔗" ⏮ 🌐 👆 🛠 ⚙ **🗄** 🐩 ⚖ 🔗. + +#### "🔗" + +"🔗" 🔑 ⚖ 📛 🕳. 🚫 📟 👈 🛠 ⚫, ✋ 📝 📛. + +#### 🛠 "🔗" + +👉 💌, 🗄 🔧 👈 🀔 ❔ 🔬 🔗 👆 🛠. + +👉 🔗 🔑 🔌 👆 🛠 ➡, 💪 🔢 👫 ✊, ♒. + +#### 💜 "🔗" + +⚖ "🔗" 💪 🔗 💠 💜, 💖 🎻 🎚. + +👈 💌, ⚫ 🔜 ⛓ 🎻 🔢, & 📊 🆎 👫 ✔, ♒. + +#### 🗄 & 🎻 🔗 + +🗄 🔬 🛠 🔗 👆 🛠. & 👈 🔗 🔌 🔑 (⚖ "🔗") 📊 📚 & 📚 👆 🛠 ⚙ **🎻 🔗**, 🐩 🎻 📊 🔗. + +#### ✅ `openapi.json` + +🚥 👆 😟 🔃 ❔ 🍣 🗄 🔗 👀 💖, FastAPI 🔁 🏗 🎻 (🔗) ⏮ 📛 🌐 👆 🛠. + +👆 💪 👀 ⚫ 🔗: http://127.0.0.1:8000/openapi.json. + +⚫ 🔜 🎊 🎻 ▶ ⏮ 🕳 💖: + +```JSON +{ + "openapi": "3.0.2", + "info": { + "title": "FastAPI", + "version": "0.1.0" + }, + "paths": { + "/items/": { + "get": { + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + + + +... +``` + +#### ⚫❔ 🗄 + +🗄 🔗 ⚫❔ 🏋 2⃣ 🎓 🧟 ⚙ 🔌. + +& 📀 💯 🎛, 🌐 ⚓ 🔛 🗄. 👆 💪 💪 🚮 🙆 📚 🎛 👆 🈞 🏗 ⏮ **FastAPI**. + +👆 💪 ⚙ ⚫ 🏗 📟 🔁, 👩‍💻 👈 🔗 ⏮ 👆 🛠. 🖌, 🕞, 📱 ⚖ ☁ 🈞. + +## 🌃, 🔁 🔁 + +### 🔁 1⃣: 🗄 `FastAPI` + +```Python hl_lines="1" +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +`FastAPI` 🐍 🎓 👈 🚚 🌐 🛠 👆 🛠. + +!!! note "📡 ℹ" + `FastAPI` 🎓 👈 😖 🔗 ⚪➡ `Starlette`. + + 👆 💪 ⚙ 🌐 💃 🛠 ⏮ `FastAPI` 💁‍♂. + +### 🔁 2⃣: ✍ `FastAPI` "👐" + +```Python hl_lines="3" +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +📥 `app` 🔢 🔜 "👐" 🎓 `FastAPI`. + +👉 🔜 👑 ☝ 🔗 ✍ 🌐 👆 🛠. + +👉 `app` 🎏 1⃣ 🔗 `uvicorn` 📋: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +🚥 👆 ✍ 👆 📱 💖: + +```Python hl_lines="3" +{!../../../docs_src/first_steps/tutorial002.py!} +``` + +& 🚮 ⚫ 📁 `main.py`, ‎ 👆 🔜 🀙 `uvicorn` 💖: + +
+ +```console +$ uvicorn main:my_awesome_api --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +### 🔁 3⃣: ✍ *➡ 🛠* + +#### ➡ + +"➡" 📥 🔗 🏁 🍕 📛 ▶ ⚪➡ 🥇 `/`. + +, 📛 💖: + +``` +https://example.com/items/foo +``` + +...➡ 🔜: + +``` +/items/foo +``` + +!!! info + "➡" 🛎 🀙 "🔗" ⚖ "🛣". + +⏪ 🏗 🛠, "➡" 👑 🌌 🎏 "⚠" & "ℹ". + +#### 🛠 + +"🛠" 📥 🔗 1⃣ 🇺🇞🔍 "👩‍🔬". + +1⃣: + +* `POST` +* `GET` +* `PUT` +* `DELETE` + +...& 🌅 😍 🕐: + +* `OPTIONS` +* `HEAD` +* `PATCH` +* `TRACE` + +🇺🇞🔍 🛠, 👆 💪 🔗 🔠 ➡ ⚙ 1⃣ (⚖ 🌅) 👫 "👩‍🔬". + +--- + +🕐❔ 🏗 🔗, 👆 🛎 ⚙ 👫 🎯 🇺🇞🔍 👩‍🔬 🎭 🎯 🎯. + +🛎 👆 ⚙: + +* `POST`: ✍ 💜. +* `GET`: ✍ 💜. +* `PUT`: ℹ 💜. +* `DELETE`: ❎ 💜. + +, 🗄, 🔠 🇺🇞🔍 👩‍🔬 🀙 "🛠". + +👥 🔜 🀙 👫 "**🛠**" 💁‍♂. + +#### 🔬 *➡ 🛠 👚‍🎚* + +```Python hl_lines="6" +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +`@app.get("/")` 💬 **FastAPI** 👈 🔢 ▶ 🔛 🈚 🚚 📚 👈 🚶: + +* ➡ `/` +* ⚙ get 🛠 + +!!! info "`@decorator` ℹ" + 👈 `@something` ❕ 🐍 🀙 "👚‍🎚". + + 👆 🚮 ⚫ 🔛 🔝 🔢. 💖 📶 📔 👒 (👀 💭 👈 🌐❔ ⚖ 👟 ⚪➡). + + "👚‍🎚" ✊ 🔢 🔛 & 🔚 🕳 ⏮ ⚫. + + 👆 💌, 👉 👚‍🎚 💬 **FastAPI** 👈 🔢 🔛 🔗 **➡** `/` ⏮ **🛠** `get`. + + ⚫ "**➡ 🛠 👚‍🎚**". + +👆 💪 ⚙ 🎏 🛠: + +* `@app.post()` +* `@app.put()` +* `@app.delete()` + +& 🌅 😍 🕐: + +* `@app.options()` +* `@app.head()` +* `@app.patch()` +* `@app.trace()` + +!!! tip + 👆 🆓 ⚙ 🔠 🛠 (🇺🇞🔍 👩‍🔬) 👆 🎋. + + **FastAPI** 🚫 🛠 🙆 🎯 🔑. + + ℹ 📥 🎁 📄, 🚫 📄. + + 🖌, 🕐❔ ⚙ 🕹 👆 🛎 🎭 🌐 🎯 ⚙ 🕎 `POST` 🛠. + +### 🔁 4⃣: 🔬 **➡ 🛠 🔢** + +👉 👆 "**➡ 🛠 🔢**": + +* **➡**: `/`. +* **🛠**: `get`. +* **🔢**: 🔢 🔛 "👚‍🎚" (🔛 `@app.get("/")`). + +```Python hl_lines="7" +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +👉 🐍 🔢. + +⚫ 🔜 🀙 **FastAPI** 🕐❔ ⚫ 📚 📚 📛 "`/`" ⚙ `GET` 🛠. + +👉 💌, ⚫ `async` 🔢. + +--- + +👆 💪 🔬 ⚫ 😐 🔢 ↩ `async def`: + +```Python hl_lines="7" +{!../../../docs_src/first_steps/tutorial003.py!} +``` + +!!! note + 🚥 👆 🚫 💭 🔺, ✅ [🔁: *"🏃 ❓"*](../async.md#in-a-hurry){.internal-link target=_blank}. + +### 🔁 5⃣: 📚 🎚 + +```Python hl_lines="8" +{!../../../docs_src/first_steps/tutorial001.py!} +``` + +👆 💪 📚 `dict`, `list`, ⭐ 💲 `str`, `int`, ♒. + +👆 💪 📚 Pydantic 🏷 (👆 🔜 👀 🌅 🔃 👈 ⏪). + +📀 📚 🎏 🎚 & 🏷 👈 🔜 🔁 🗜 🎻 (🔌 🐜, ♒). 🔄 ⚙ 👆 💕 🕐, ⚫ 🏆 🎲 👈 👫 ⏪ 🐕‍🊺. + +## 🌃 + +* 🗄 `FastAPI`. +* ✍ `app` 👐. +* ✍ **➡ 🛠 👚‍🎚** (💖 `@app.get("/")`). +* ✍ **➡ 🛠 🔢** (💖 `def root(): ...` 🔛). +* 🏃 🛠 💜 (💖 `uvicorn main:app --reload`). diff --git a/docs/em/docs/tutorial/handling-errors.md b/docs/em/docs/tutorial/handling-errors.md new file mode 100644 index 000000000..ef7bbfa65 --- /dev/null +++ b/docs/em/docs/tutorial/handling-errors.md @@ -0,0 +1,261 @@ +# 🚚 ❌ + +📀 📚 ⚠ 🌐❔ 👆 💪 🚚 ❌ 👩‍💻 👈 ⚙ 👆 🛠. + +👉 👩‍💻 💪 🖥 ⏮ 🕞, 📟 ⚪➡ 👱 🙆, ☁ 📳, ♒. + +👆 💪 💪 💬 👩‍💻 👈: + +* 👩‍💻 🚫 ✔ 🥃 😌 👈 🛠. +* 👩‍💻 🚫 ✔ 🔐 👈 ℹ. +* 🏬 👩‍💻 🔄 🔐 🚫 🔀. +* ♒. + +👫 💌, 👆 🔜 🛎 📚 **🇺🇞🔍 👔 📟** ↔ **4⃣0⃣0⃣** (⚪➡ 4⃣0⃣0⃣ 4⃣9⃣9⃣). + +👉 🎏 2⃣0⃣0⃣ 🇺🇞🔍 👔 📟 (⚪➡ 2⃣0⃣0⃣ 2⃣9⃣9⃣). 👈 "2⃣0⃣0⃣" 👔 📟 ⛓ 👈 😫 📀 "🏆" 📚. + +👔 📟 4⃣0⃣0⃣ ↔ ⛓ 👈 📀 ❌ ⚪➡ 👩‍💻. + +💭 🌐 👈 **"4⃣0⃣4⃣ 🚫 🔎"** ❌ (& 🀣) ❓ + +## ⚙ `HTTPException` + +📚 🇺🇞🔍 📚 ⏮ ❌ 👩‍💻 👆 ⚙ `HTTPException`. + +### 🗄 `HTTPException` + +```Python hl_lines="1" +{!../../../docs_src/handling_errors/tutorial001.py!} +``` + +### 🀚 `HTTPException` 👆 📟 + +`HTTPException` 😐 🐍 ⚠ ⏮ 🌖 📊 🔗 🔗. + +↩ ⚫ 🐍 ⚠, 👆 🚫 `return` ⚫, 👆 `raise` ⚫. + +👉 ⛓ 👈 🚥 👆 🔘 🚙 🔢 👈 👆 🀙 🔘 👆 *➡ 🛠 🔢*, & 👆 🀚 `HTTPException` ⚪➡ 🔘 👈 🚙 🔢, ⚫ 🏆 🚫 🏃 🎂 📟 *➡ 🛠 🔢*, ⚫ 🔜 ❎ 👈 📚 ▶ ↖ & 📚 🇺🇞🔍 ❌ ⚪➡ `HTTPException` 👩‍💻. + +💰 🙋‍♀ ⚠ 🀭 `return`😅 💲 🔜 🌖 ⭐ 📄 🔃 🔗 & 💂‍♂. + +👉 🖌, 🕐❔ 👩‍💻 📚 🏬 🆔 👈 🚫 🔀, 🀚 ⚠ ⏮ 👔 📟 `404`: + +```Python hl_lines="11" +{!../../../docs_src/handling_errors/tutorial001.py!} +``` + +### 📉 📚 + +🚥 👩‍💻 📚 `http://example.com/items/foo` ( `item_id` `"foo"`), 👈 👩‍💻 🔜 📚 🇺🇞🔍 👔 📟 2⃣0⃣0⃣, & 🎻 📚: + +```JSON +{ + "item": "The Foo Wrestlers" +} +``` + +✋ 🚥 👩‍💻 📚 `http://example.com/items/bar` (🚫-🚫 `item_id` `"bar"`), 👈 👩‍💻 🔜 📚 🇺🇞🔍 👔 📟 4⃣0⃣4⃣ ("🚫 🔎" ❌), & 🎻 📚: + +```JSON +{ + "detail": "Item not found" +} +``` + +!!! tip + 🕐❔ 🙋‍♀ `HTTPException`, 👆 💪 🚶‍♀ 🙆 💲 👈 💪 🗜 🎻 🔢 `detail`, 🚫 🕎 `str`. + + 👆 💪 🚶‍♀ `dict`, `list`, ♒. + + 👫 🍵 🔁 **FastAPI** & 🗜 🎻. + +## 🚮 🛃 🎚 + +📀 ⚠ 🌐❔ ⚫ ⚠ 💪 🚮 🛃 🎚 🇺🇞🔍 ❌. 🖌, 🆎 💂‍♂. + +👆 🎲 🏆 🚫 💪 ⚙ ⚫ 🔗 👆 📟. + +✋ 💌 👆 💪 ⚫ 🏧 😐, 👆 💪 🚮 🛃 🎚: + +```Python hl_lines="14" +{!../../../docs_src/handling_errors/tutorial002.py!} +``` + +## ❎ 🛃 ⚠ 🐕‍🊺 + +👆 💪 🚮 🛃 ⚠ 🐕‍🊺 ⏮ 🎏 ⚠ 🚙 ⚪➡ 💃. + +➡ 💬 👆 ✔ 🛃 ⚠ `UnicornException` 👈 👆 (⚖ 🗃 👆 ⚙) 💪 `raise`. + +& 👆 💚 🍵 👉 ⚠ 🌐 ⏮ FastAPI. + +👆 💪 🚮 🛃 ⚠ 🐕‍🊺 ⏮ `@app.exception_handler()`: + +```Python hl_lines="5-7 13-18 24" +{!../../../docs_src/handling_errors/tutorial003.py!} +``` + +📥, 🚥 👆 📚 `/unicorns/yolo`, *➡ 🛠* 🔜 `raise` `UnicornException`. + +✋ ⚫ 🔜 🍵 `unicorn_exception_handler`. + +, 👆 🔜 📚 🧹 ❌, ⏮ 🇺🇞🔍 👔 📟 `418` & 🎻 🎚: + +```JSON +{"message": "Oops! yolo did something. There goes a rainbow..."} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.requests import Request` & `from starlette.responses import JSONResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. 🎏 ⏮ `Request`. + +## 🔐 🔢 ⚠ 🐕‍🊺 + +**FastAPI** ✔ 🔢 ⚠ 🐕‍🊺. + +👫 🐕‍🊺 🈚 🛬 🔢 🎻 📚 🕐❔ 👆 `raise` `HTTPException` & 🕐❔ 📚 ✔ ❌ 💜. + +👆 💪 🔐 👫 ⚠ 🐕‍🊺 ⏮ 👆 👍. + +### 🔐 📚 🔬 ⚠ + +🕐❔ 📚 🔌 ❌ 📊, **FastAPI** 🔘 🀚 `RequestValidationError`. + +& ⚫ 🔌 🔢 ⚠ 🐕‍🊺 ⚫. + +🔐 ⚫, 🗄 `RequestValidationError` & ⚙ ⚫ ⏮ `@app.exception_handler(RequestValidationError)` 🎀 ⚠ 🐕‍🊺. + +⚠ 🐕‍🊺 🔜 📚 `Request` & ⚠. + +```Python hl_lines="2 14-16" +{!../../../docs_src/handling_errors/tutorial004.py!} +``` + +🔜, 🚥 👆 🚶 `/items/foo`, ↩ 💆‍♂ 🔢 🎻 ❌ ⏮: + +```JSON +{ + "detail": [ + { + "loc": [ + "path", + "item_id" + ], + "msg": "value is not a valid integer", + "type": "type_error.integer" + } + ] +} +``` + +👆 🔜 🀚 ✍ ⏬, ⏮: + +``` +1 validation error +path -> item_id + value is not a valid integer (type=type_error.integer) +``` + +#### `RequestValidationError` 🆚 `ValidationError` + +!!! warning + 👫 📡 ℹ 👈 👆 💪 🚶 🚥 ⚫ 🚫 ⚠ 👆 🔜. + +`RequestValidationError` 🎧-🎓 Pydantic `ValidationError`. + +**FastAPI** ⚙ ⚫ 👈, 🚥 👆 ⚙ Pydantic 🏷 `response_model`, & 👆 💜 ✔ ❌, 👆 🔜 👀 ❌ 👆 🕹. + +✋ 👩‍💻/👩‍💻 🔜 🚫 👀 ⚫. ↩, 👩‍💻 🔜 📚 "🔗 💜 ❌" ⏮ 🇺🇞🔍 👔 📟 `500`. + +⚫ 🔜 👉 🌌 ↩ 🚥 👆 ✔ Pydantic `ValidationError` 👆 *📚* ⚖ 🙆 👆 📟 (🚫 👩‍💻 *📚*), ⚫ 🀙 🐛 👆 📟. + +& ⏪ 👆 🔧 ⚫, 👆 👩‍💻/👩‍💻 🚫🔜 🚫 ✔ 🔐 🔗 ℹ 🔃 ❌, 👈 💪 🎊 💂‍♂ ⚠. + +### 🔐 `HTTPException` ❌ 🐕‍🊺 + +🎏 🌌, 👆 💪 🔐 `HTTPException` 🐕‍🊺. + +🖌, 👆 💪 💚 📚 ✅ ✍ 📚 ↩ 🎻 👫 ❌: + +```Python hl_lines="3-4 9-11 22" +{!../../../docs_src/handling_errors/tutorial004.py!} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import PlainTextResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + +### ⚙ `RequestValidationError` 💪 + +`RequestValidationError` 🔌 `body` ⚫ 📚 ⏮ ❌ 💜. + +👆 💪 ⚙ ⚫ ⏪ 🛠 👆 📱 🕹 💪 & ℹ ⚫, 📚 ⚫ 👩‍💻, ♒. + +```Python hl_lines="14" +{!../../../docs_src/handling_errors/tutorial005.py!} +``` + +🔜 🔄 📚 ❌ 🏬 💖: + +```JSON +{ + "title": "towel", + "size": "XL" +} +``` + +👆 🔜 📚 📚 💬 👆 👈 💜 ❌ ⚗ 📚 💪: + +```JSON hl_lines="12-15" +{ + "detail": [ + { + "loc": [ + "body", + "size" + ], + "msg": "value is not a valid integer", + "type": "type_error.integer" + } + ], + "body": { + "title": "towel", + "size": "XL" + } +} +``` + +#### FastAPI `HTTPException` 🆚 💃 `HTTPException` + +**FastAPI** ✔ 🚮 👍 `HTTPException`. + +& **FastAPI**'Ⓜ `HTTPException` ❌ 🎓 😖 ⚪➡ 💃 `HTTPException` ❌ 🎓. + +🕎 🔺, 👈 **FastAPI**'Ⓜ `HTTPException` ✔ 👆 🚮 🎚 🔌 📚. + +👉 💪/⚙ 🔘 ✳ 2⃣.0⃣ & 💂‍♂ 🚙. + +, 👆 💪 🚧 🙋‍♀ **FastAPI**'Ⓜ `HTTPException` 🛎 👆 📟. + +✋ 🕐❔ 👆 ® ⚠ 🐕‍🊺, 👆 🔜 ® ⚫ 💃 `HTTPException`. + +👉 🌌, 🚥 🙆 🍕 💃 🔗 📟, ⚖ 💃 ↔ ⚖ 🔌 -, 🀚 💃 `HTTPException`, 👆 🐕‍🊺 🔜 💪 ✊ & 🍵 ⚫. + +👉 🖌, 💪 ✔ 👯‍♂ `HTTPException`Ⓜ 🎏 📟, 💃 ⚠ 📁 `StarletteHTTPException`: + +```Python +from starlette.exceptions import HTTPException as StarletteHTTPException +``` + +### 🏀-⚙ **FastAPI**'Ⓜ ⚠ 🐕‍🊺 + +🚥 👆 💚 ⚙ ⚠ ‎ ⏮ 🎏 🔢 ⚠ 🐕‍🊺 ⚪➡ **FastAPI**, 👆 💪 🗄 & 🏀-⚙ 🔢 ⚠ 🐕‍🊺 ⚪➡ `fastapi.exception_handlers`: + +```Python hl_lines="2-5 15 21" +{!../../../docs_src/handling_errors/tutorial006.py!} +``` + +👉 🖌 👆 `print`😅 ❌ ⏮ 📶 🎚 📧, ✋ 👆 🀚 💭. 👆 💪 ⚙ ⚠ & ‎ 🏀-⚙ 🔢 ⚠ 🐕‍🊺. diff --git a/docs/em/docs/tutorial/header-params.md b/docs/em/docs/tutorial/header-params.md new file mode 100644 index 000000000..0f33a1774 --- /dev/null +++ b/docs/em/docs/tutorial/header-params.md @@ -0,0 +1,128 @@ +# 🎚 🔢 + +👆 💪 🔬 🎚 🔢 🎏 🌌 👆 🔬 `Query`, `Path` & `Cookie` 🔢. + +## 🗄 `Header` + +🥇 🗄 `Header`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3" + {!> ../../../docs_src/header_params/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/header_params/tutorial001_py310.py!} + ``` + +## 📣 `Header` 🔢 + +‎ 📣 🎚 🔢 ⚙ 🎏 📊 ⏮ `Path`, `Query` & `Cookie`. + +🥇 💲 🔢 💲, 👆 💪 🚶‍♀ 🌐 ➕ 🔬 ⚖ ✍ 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/header_params/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/header_params/tutorial001_py310.py!} + ``` + +!!! note "📡 ℹ" + `Header` "👭" 🎓 `Path`, `Query` & `Cookie`. ⚫ 😖 ⚪➡ 🎏 ⚠ `Param` 🎓. + + ✋ 💭 👈 🕐❔ 👆 🗄 `Query`, `Path`, `Header`, & 🎏 ⚪➡ `fastapi`, 👈 🀙 🔢 👈 📚 🎁 🎓. + +!!! info + 📣 🎚, 👆 💪 ⚙ `Header`, ↩ ⏪ 🔢 🔜 🔬 🔢 🔢. + +## 🏧 🛠 + +`Header` ✔ 🐥 ➕ 🛠 🔛 🔝 ⚫❔ `Path`, `Query` & `Cookie` 🚚. + +🌅 🐩 🎚 🎏 "🔠" 🊹, 💭 "➖ 🔣" (`-`). + +✋ 🔢 💖 `user-agent` ❌ 🐍. + +, 🔢, `Header` 🔜 🗜 🔢 📛 🊹 ⚪➡ 🎊 (`_`) 🔠 (`-`) ⚗ & 📄 🎚. + +, 🇺🇞🔍 🎚 💌-😛,, 👆 💪 📣 👫 ⏮ 🐩 🐍 👗 (💭 "🔡"). + +, 👆 💪 ⚙ `user_agent` 👆 🛎 🔜 🐍 📟, ↩ 💆‍♂ 🎯 🥇 🔀 `User_Agent` ⚖ 🕳 🎏. + +🚥 🀔 👆 💪 ❎ 🏧 🛠 🎊 🔠, ⚒ 🔢 `convert_underscores` `Header` `False`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/header_params/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/header_params/tutorial002_py310.py!} + ``` + +!!! warning + ⏭ ⚒ `convert_underscores` `False`, 🐻 🀯 👈 🇺🇞🔍 🗳 & 💜 / ⚙ 🎚 ⏮ 🎊. + +## ❎ 🎚 + +⚫ 💪 📚 ❎ 🎚. 👈 ⛓, 🎏 🎚 ⏮ 💗 💲. + +👆 💪 🔬 👈 💌 ⚙ 📇 🆎 📄. + +👆 🔜 📚 🌐 💲 ⚪➡ ❎ 🎚 🐍 `list`. + +🖌, 📣 🎚 `X-Token` 👈 💪 😑 🌅 🌘 🕐, 👆 💪 ✍: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/header_params/tutorial003.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/header_params/tutorial003_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/header_params/tutorial003_py310.py!} + ``` + +🚥 👆 🔗 ⏮ 👈 *➡ 🛠* 📚 2⃣ 🇺🇞🔍 🎚 💖: + +``` +X-Token: foo +X-Token: bar +``` + +📚 🔜 💖: + +```JSON +{ + "X-Token values": [ + "bar", + "foo" + ] +} +``` + +## 🌃 + +📣 🎚 ⏮ `Header`, ⚙ 🎏 ⚠ ⚓ `Query`, `Path` & `Cookie`. + +& 🚫 😟 🔃 🎊 👆 🔢, **FastAPI** 🔜 ✊ 💅 🏭 👫. diff --git a/docs/em/docs/tutorial/index.md b/docs/em/docs/tutorial/index.md new file mode 100644 index 000000000..8536dc3ee --- /dev/null +++ b/docs/em/docs/tutorial/index.md @@ -0,0 +1,80 @@ +# 🔰 - 👩‍💻 🊮 - 🎶 + +👉 🔰 🎊 👆 ❔ ⚙ **FastAPI** ⏮ 🌅 🚮 ⚒, 🔁 🔁. + +🔠 📄 📉 🏗 🔛 ⏮ 🕐, ✋ ⚫ 🏗 🎏 ❔, 👈 👆 💪 🚶 🔗 🙆 🎯 1⃣ ❎ 👆 🎯 🛠 💪. + +⚫ 🏗 👷 🔮 🔗. + +👆 💪 👟 🔙 & 👀 ⚫❔ ⚫❔ 👆 💪. + +## 🏃 📟 + +🌐 📟 🍫 💪 📁 & ⚙ 🔗 (👫 🀙 💯 🐍 📁). + +🏃 🙆 🖌, 📁 📟 📁 `main.py`, & ▶ `uvicorn` ⏮: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +INFO: Started reloader process [28720] +INFO: Started server process [28722] +INFO: Waiting for application startup. +INFO: Application startup complete. +``` + +
+ +⚫ **🏆 💡** 👈 👆 ✍ ⚖ 📁 📟, ✍ ⚫ & 🏃 ⚫ 🌐. + +⚙ ⚫ 👆 👚‍🎚 ⚫❔ 🀙 🎊 👆 💰 FastAPI, 👀 ❔ 🐥 📟 👆 ✔ ✍, 🌐 🆎 ✅, ✍, ♒. + +--- + +## ❎ FastAPI + +🥇 🔁 ❎ FastAPI. + +🔰, 👆 💪 💚 ❎ ⚫ ⏮ 🌐 📊 🔗 & ⚒: + +
+ +```console +$ pip install "fastapi[all]" + +---> 100% +``` + +
+ +...👈 🔌 `uvicorn`, 👈 👆 💪 ⚙ 💜 👈 🏃 👆 📟. + +!!! note + 👆 💪 ❎ ⚫ 🍕 🍕. + + 👉 ⚫❔ 👆 🔜 🎲 🕐 👆 💚 🛠 👆 🈞 🏭: + + ``` + pip install fastapi + ``` + + ❎ `uvicorn` 👷 💜: + + ``` + pip install "uvicorn[standard]" + ``` + + & 🎏 🔠 📊 🔗 👈 👆 💚 ⚙. + +## 🏧 👩‍💻 🊮 + +📀 **🏧 👩‍💻 🊮** 👈 👆 💪 ✍ ⏪ ⏮ 👉 **🔰 - 👩‍💻 🊮**. + +**🏧 👩‍💻 🊮**, 🏗 🔛 👉, ⚙ 🎏 🔧, & 💡 👆 ➕ ⚒. + +✋ 👆 🔜 🥇 ✍ **🔰 - 👩‍💻 🊮** (⚫❔ 👆 👂 ▶ 🔜). + +⚫ 🔧 👈 👆 💪 🏗 🏁 🈞 ⏮ **🔰 - 👩‍💻 🊮**, & ‎ ↔ ⚫ 🎏 🌌, ⚓ 🔛 👆 💪, ⚙ 🌖 💭 ⚪➡ **🏧 👩‍💻 🊮**. diff --git a/docs/em/docs/tutorial/metadata.md b/docs/em/docs/tutorial/metadata.md new file mode 100644 index 000000000..00098cdf5 --- /dev/null +++ b/docs/em/docs/tutorial/metadata.md @@ -0,0 +1,112 @@ +# 🗃 & 🩺 📛 + +👆 💪 🛃 📚 🗃 📳 👆 **FastAPI** 🈞. + +## 🗃 🛠 + +👆 💪 ⚒ 📄 🏑 👈 ⚙ 🗄 🔧 & 🏧 🛠 🩺 ⚜: + +| 🔢 | 🆎 | 📛 | +|------------|------|-------------| +| `title` | `str` | 📛 🛠. | +| `description` | `str` | 📏 📛 🛠. ⚫ 💪 ⚙ ✍. | +| `version` | `string` | ⏬ 🛠. 👉 ⏬ 👆 👍 🈞, 🚫 🗄. 🖌 `2.5.0`. | +| `terms_of_service` | `str` | 📛 ⚖ 🐕‍🊺 🛠. 🚥 🚚, 👉 ✔ 📛. | +| `contact` | `dict` | 📧 ℹ 🎊 🛠. ⚫ 💪 🔌 📚 🏑.
contact 🏑
🔢🆎📛
namestr⚖ 📛 📧 👚‍💌/🏢.
urlstr📛 ☝ 📧 ℹ. 🔜 📁 📛.
emailstr📧 📢 📧 👚‍💌/🏢. 🔜 📁 📧 📢.
| +| `license_info` | `dict` | 🛂 ℹ 🎊 🛠. ⚫ 💪 🔌 📚 🏑.
license_info 🏑
🔢🆎📛
namestr🚚 (🚥 license_info ⚒). 🛂 📛 ⚙ 🛠.
urlstr📛 🛂 ⚙ 🛠. 🔜 📁 📛.
| + +👆 💪 ⚒ 👫 ⏩: + +```Python hl_lines="3-16 19-31" +{!../../../docs_src/metadata/tutorial001.py!} +``` + +!!! tip + 👆 💪 ✍ ✍ `description` 🏑 & ⚫ 🔜 ✍ 🔢. + +⏮ 👉 📳, 🏧 🛠 🩺 🔜 👀 💖: + + + +## 🗃 🔖 + +👆 💪 🚮 🌖 🗃 🎏 🔖 ⚙ 👪 👆 ➡ 🛠 ⏮ 🔢 `openapi_tags`. + +⚫ ✊ 📇 ⚗ 1⃣ 📖 🔠 🔖. + +🔠 📖 💪 🔌: + +* `name` (**✔**): `str` ⏮ 🎏 📛 👆 ⚙ `tags` 🔢 👆 *➡ 🛠* & `APIRouter`Ⓜ. +* `description`: `str` ⏮ 📏 📛 🔖. ⚫ 💪 ✔ ✍ & 🔜 🎊 🩺 🎚. +* `externalDocs`: `dict` 🔬 🔢 🧟 ⏮: + * `description`: `str` ⏮ 📏 📛 🔢 🩺. + * `url` (**✔**): `str` ⏮ 📛 🔢 🧟. + +### ✍ 🗃 🔖 + +➡ 🔄 👈 🖌 ⏮ 🔖 `users` & `items`. + +✍ 🗃 👆 🔖 & 🚶‍♀ ⚫ `openapi_tags` 🔢: + +```Python hl_lines="3-16 18" +{!../../../docs_src/metadata/tutorial004.py!} +``` + +👀 👈 👆 💪 ⚙ ✍ 🔘 📛, 🖌 "💳" 🔜 🎊 🊁 (**💳**) & "🎀" 🔜 🎊 ❕ (_🎀_). + +!!! tip + 👆 🚫 ✔ 🚮 🗃 🌐 🔖 👈 👆 ⚙. + +### ⚙ 👆 🔖 + +⚙ `tags` 🔢 ⏮ 👆 *➡ 🛠* (& `APIRouter`Ⓜ) 🛠 👫 🎏 🔖: + +```Python hl_lines="21 26" +{!../../../docs_src/metadata/tutorial004.py!} +``` + +!!! info + ✍ 🌅 🔃 🔖 [➡ 🛠 📳](../path-operation-configuration/#tags){.internal-link target=_blank}. + +### ✅ 🩺 + +🔜, 🚥 👆 ✅ 🩺, 👫 🔜 🎊 🌐 🌖 🗃: + + + +### ✔ 🔖 + +✔ 🔠 🔖 🗃 📖 🔬 ✔ 🎊 🩺 🎚. + +🖌, ✋ `users` 🔜 🚶 ⏮ `items` 🔀 ✔, ⚫ 🎊 ⏭ 👫, ↩ 👥 🚮 👫 🗃 🥇 📖 📇. + +## 🗄 📛 + +🔢, 🗄 🔗 🍊 `/openapi.json`. + +✋ 👆 💪 🔗 ⚫ ⏮ 🔢 `openapi_url`. + +🖌, ⚒ ⚫ 🍊 `/api/v1/openapi.json`: + +```Python hl_lines="3" +{!../../../docs_src/metadata/tutorial002.py!} +``` + +🚥 👆 💚 ❎ 🗄 🔗 🍕 👆 💪 ⚒ `openapi_url=None`, 👈 🔜 ❎ 🧟 👩‍💻 🔢 👈 ⚙ ⚫. + +## 🩺 📛 + +👆 💪 🔗 2⃣ 🧟 👩‍💻 🔢 🔌: + +* **🊁 🎚**: 🍊 `/docs`. + * 👆 💪 ⚒ 🚮 📛 ⏮ 🔢 `docs_url`. + * 👆 💪 ❎ ⚫ ⚒ `docs_url=None`. +* **📄**: 🍊 `/redoc`. + * 👆 💪 ⚒ 🚮 📛 ⏮ 🔢 `redoc_url`. + * 👆 💪 ❎ ⚫ ⚒ `redoc_url=None`. + +🖌, ⚒ 🊁 🎚 🍊 `/documentation` & ❎ 📄: + +```Python hl_lines="3" +{!../../../docs_src/metadata/tutorial003.py!} +``` diff --git a/docs/em/docs/tutorial/middleware.md b/docs/em/docs/tutorial/middleware.md new file mode 100644 index 000000000..644b4690c --- /dev/null +++ b/docs/em/docs/tutorial/middleware.md @@ -0,0 +1,61 @@ +# 🛠 + +👆 💪 🚮 🛠 **FastAPI** 🈞. + +"🛠" 🔢 👈 👷 ⏮ 🔠 **📚** ⏭ ⚫ 🛠 🙆 🎯 *➡ 🛠*. & ⏮ 🔠 **📚** ⏭ 🛬 ⚫. + +* ⚫ ✊ 🔠 **📚** 👈 👟 👆 🈞. +* ⚫ 💪 ‎ 🕳 👈 **📚** ⚖ 🏃 🙆 💪 📟. +* ‎ ⚫ 🚶‍♀ **📚** 🛠 🎂 🈞 ( *➡ 🛠*). +* ⚫ ‎ ✊ **📚** 🏗 🈞 ( *➡ 🛠*). +* ⚫ 💪 🕳 👈 **📚** ⚖ 🏃 🙆 💪 📟. +* ‎ ⚫ 📚 **📚**. + +!!! note "📡 ℹ" + 🚥 👆 ✔ 🔗 ⏮ `yield`, 🚪 📟 🔜 🏃 *⏮* 🛠. + + 🚥 📀 🙆 🖥 📋 (📄 ⏪), 👫 🔜 🏃 *⏮* 🌐 🛠. + +## ✍ 🛠 + +✍ 🛠 👆 ⚙ 👚‍🎚 `@app.middleware("http")` 🔛 🔝 🔢. + +🛠 🔢 📚: + +* `request`. +* 🔢 `call_next` 👈 🔜 📚 `request` 🔢. + * 👉 🔢 🔜 🚶‍♀ `request` 🔗 *➡ 🛠*. + * ‎ ⚫ 📚 `response` 🏗 🔗 *➡ 🛠*. +* 👆 💪 ‎ 🔀 🌅 `response` ⏭ 🛬 ⚫. + +```Python hl_lines="8-9 11 14" +{!../../../docs_src/middleware/tutorial001.py!} +``` + +!!! tip + ✔ 🀯 👈 🛃 © 🎚 💪 🚮 ⚙ '✖-' 🔡. + + ✋ 🚥 👆 ✔ 🛃 🎚 👈 👆 💚 👩‍💻 🖥 💪 👀, 👆 💪 🚮 👫 👆 ⚜ 📳 ([⚜ (✖-🇚🇳 ℹ 🀝)](cors.md){.internal-link target=_blank}) ⚙ 🔢 `expose_headers` 📄 💃 ⚜ 🩺. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.requests import Request`. + + **FastAPI** 🚚 ⚫ 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. + +### ⏭ & ⏮ `response` + +👆 💪 🚮 📟 🏃 ⏮ `request`, ⏭ 🙆 *➡ 🛠* 📚 ⚫. + +& ⏮ `response` 🏗, ⏭ 🛬 ⚫. + +🖌, 👆 💪 🚮 🛃 🎚 `X-Process-Time` ⚗ 🕰 🥈 👈 ⚫ ✊ 🛠 📚 & 🏗 📚: + +```Python hl_lines="10 12-13" +{!../../../docs_src/middleware/tutorial001.py!} +``` + +## 🎏 🛠 + +👆 💪 ⏪ ✍ 🌖 🔃 🎏 🛠 [🏧 👩‍💻 🊮: 🏧 🛠](../advanced/middleware.md){.internal-link target=_blank}. + +👆 🔜 ✍ 🔃 ❔ 🍵 ⚜ ⏮ 🛠 ⏭ 📄. diff --git a/docs/em/docs/tutorial/path-operation-configuration.md b/docs/em/docs/tutorial/path-operation-configuration.md new file mode 100644 index 000000000..916529258 --- /dev/null +++ b/docs/em/docs/tutorial/path-operation-configuration.md @@ -0,0 +1,179 @@ +# ➡ 🛠 📳 + +📀 📚 🔢 👈 👆 💪 🚶‍♀ 👆 *➡ 🛠 👚‍🎚* 🔗 ⚫. + +!!! warning + 👀 👈 👫 🔢 🚶‍♀ 🔗 *➡ 🛠 👚‍🎚*, 🚫 👆 *➡ 🛠 🔢*. + +## 📚 👔 📟 + +👆 💪 🔬 (🇺🇞🔍) `status_code` ⚙ 📚 👆 *➡ 🛠*. + +👆 💪 🚶‍♀ 🔗 `int` 📟, 💖 `404`. + +✋ 🚥 👆 🚫 💭 ⚫❔ 🔠 🔢 📟, 👆 💪 ⚙ ⌹ 📉 `status`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3 17" + {!> ../../../docs_src/path_operation_configuration/tutorial001.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="3 17" + {!> ../../../docs_src/path_operation_configuration/tutorial001_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1 15" + {!> ../../../docs_src/path_operation_configuration/tutorial001_py310.py!} + ``` + +👈 👔 📟 🔜 ⚙ 📚 & 🔜 🚮 🗄 🔗. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette import status`. + + **FastAPI** 🚚 🎏 `starlette.status` `fastapi.status` 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. + +## 🔖 + +👆 💪 🚮 🔖 👆 *➡ 🛠*, 🚶‍♀ 🔢 `tags` ⏮ `list` `str` (🛎 1⃣ `str`): + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="17 22 27" + {!> ../../../docs_src/path_operation_configuration/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="17 22 27" + {!> ../../../docs_src/path_operation_configuration/tutorial002_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="15 20 25" + {!> ../../../docs_src/path_operation_configuration/tutorial002_py310.py!} + ``` + +👫 🔜 🚮 🗄 🔗 & ⚙ 🏧 🧟 🔢: + + + +### 🔖 ⏮ 🔢 + +🚥 👆 ✔ 🊏 🈞, 👆 5⃣📆 🔚 🆙 📈 **📚 🔖**, & 👆 🔜 💚 ⚒ 💭 👆 🕧 ⚙ **🎏 🔖** 🔗 *➡ 🛠*. + +👫 💌, ⚫ 💪 ⚒ 🔑 🏪 🔖 `Enum`. + +**FastAPI** 🐕‍🊺 👈 🎏 🌌 ⏮ ✅ 🎻: + +```Python hl_lines="1 8-10 13 18" +{!../../../docs_src/path_operation_configuration/tutorial002b.py!} +``` + +## 📄 & 📛 + +👆 💪 🚮 `summary` & `description`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="20-21" + {!> ../../../docs_src/path_operation_configuration/tutorial003.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="20-21" + {!> ../../../docs_src/path_operation_configuration/tutorial003_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="18-19" + {!> ../../../docs_src/path_operation_configuration/tutorial003_py310.py!} + ``` + +## 📛 ⚪➡ #⃣ + +📛 😑 📏 & 📔 💗 ⏞, 👆 💪 📣 *➡ 🛠* 📛 🔢 #⃣ & **FastAPI** 🔜 ✍ ⚫ ⚪➡ 📀. + +👆 💪 ✍ ✍ #⃣ , ⚫ 🔜 🔬 & 🖥 ☑ (✊ 🔘 🏧 #⃣ 📐). + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19-27" + {!> ../../../docs_src/path_operation_configuration/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="19-27" + {!> ../../../docs_src/path_operation_configuration/tutorial004_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17-25" + {!> ../../../docs_src/path_operation_configuration/tutorial004_py310.py!} + ``` + +⚫ 🔜 ⚙ 🎓 🩺: + + + +## 📚 📛 + +👆 💪 ✔ 📚 📛 ⏮ 🔢 `response_description`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="21" + {!> ../../../docs_src/path_operation_configuration/tutorial005.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="21" + {!> ../../../docs_src/path_operation_configuration/tutorial005_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="19" + {!> ../../../docs_src/path_operation_configuration/tutorial005_py310.py!} + ``` + +!!! info + 👀 👈 `response_description` 🔗 🎯 📚, `description` 🔗 *➡ 🛠* 🏢. + +!!! check + 🗄 ✔ 👈 🔠 *➡ 🛠* 🚚 📚 📛. + + , 🚥 👆 🚫 🚚 1⃣, **FastAPI** 🔜 🔁 🏗 1⃣ "🏆 📚". + + + +## 😢 *➡ 🛠* + +🚥 👆 💪 ™ *➡ 🛠* 😢, ✋ 🍵 ❎ ⚫, 🚶‍♀ 🔢 `deprecated`: + +```Python hl_lines="16" +{!../../../docs_src/path_operation_configuration/tutorial006.py!} +``` + +⚫ 🔜 🎯 ™ 😢 🎓 🩺: + + + +✅ ❔ 😢 & 🚫-😢 *➡ 🛠* 👀 💖: + + + +## 🌃 + +👆 💪 🔗 & 🚮 🗃 👆 *➡ 🛠* 💪 🚶‍♀ 🔢 *➡ 🛠 👚‍🎚*. diff --git a/docs/em/docs/tutorial/path-params-numeric-validations.md b/docs/em/docs/tutorial/path-params-numeric-validations.md new file mode 100644 index 000000000..b1ba2670b --- /dev/null +++ b/docs/em/docs/tutorial/path-params-numeric-validations.md @@ -0,0 +1,138 @@ +# ➡ 🔢 & 🔢 🔬 + +🎏 🌌 👈 👆 💪 📣 🌅 🔬 & 🗃 🔢 🔢 ⏮ `Query`, 👆 💪 📣 🎏 🆎 🔬 & 🗃 ➡ 🔢 ⏮ `Path`. + +## 🗄 ➡ + +🥇, 🗄 `Path` ⚪➡ `fastapi`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3" + {!> ../../../docs_src/path_params_numeric_validations/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/path_params_numeric_validations/tutorial001_py310.py!} + ``` + +## 📣 🗃 + +👆 💪 📣 🌐 🎏 🔢 `Query`. + +🖌, 📣 `title` 🗃 💲 ➡ 🔢 `item_id` 👆 💪 🆎: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/path_params_numeric_validations/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/path_params_numeric_validations/tutorial001_py310.py!} + ``` + +!!! note + ➡ 🔢 🕧 ✔ ⚫ ✔ 🍕 ➡. + + , 👆 🔜 📣 ⚫ ⏮ `...` ™ ⚫ ✔. + + 👐, 🚥 👆 📣 ⚫ ⏮ `None` ⚖ ⚒ 🔢 💲, ⚫ 🔜 🚫 📉 🕳, ⚫ 🔜 🕧 🚚. + +## ✔ 🔢 👆 💪 + +➡ 💬 👈 👆 💚 📣 🔢 🔢 `q` ✔ `str`. + +& 👆 🚫 💪 📣 🕳 🙆 👈 🔢, 👆 🚫 🀙 💪 ⚙ `Query`. + +✋ 👆 💪 ⚙ `Path` `item_id` ➡ 🔢. + +🐍 🔜 😭 🚥 👆 🚮 💲 ⏮ "🔢" ⏭ 💲 👈 🚫 ✔ "🔢". + +✋ 👆 💪 🏀-✔ 👫, & ✔ 💲 🍵 🔢 (🔢 🔢 `q`) 🥇. + +⚫ 🚫 🀔 **FastAPI**. ⚫ 🔜 🔍 🔢 👫 📛, 🆎 & 🔢 📄 (`Query`, `Path`, ♒), ⚫ 🚫 💅 🔃 ✔. + +, 👆 💪 📣 👆 🔢: + +```Python hl_lines="7" +{!../../../docs_src/path_params_numeric_validations/tutorial002.py!} +``` + +## ✔ 🔢 👆 💪, 🎱 + +🚥 👆 💚 📣 `q` 🔢 🔢 🍵 `Query` 🚫 🙆 🔢 💲, & ➡ 🔢 `item_id` ⚙ `Path`, & ✔ 👫 🎏 ✔, 🐍 ✔ 🐥 🎁 ❕ 👈. + +🚶‍♀ `*`, 🥇 🔢 🔢. + +🐍 🏆 🚫 🕳 ⏮ 👈 `*`, ✋ ⚫ 🔜 💭 👈 🌐 📄 🔢 🔜 🀙 🇚🇻 ❌ (🔑-💲 👫), 💭 kwargs. 🚥 👫 🚫 ✔ 🔢 💲. + +```Python hl_lines="7" +{!../../../docs_src/path_params_numeric_validations/tutorial003.py!} +``` + +## 🔢 🔬: 👑 🌘 ⚖ 🌓 + +⏮ `Query` & `Path` (& 🎏 👆 🔜 👀 ⏪) 👆 💪 📣 🔢 ⚛. + +📥, ⏮ `ge=1`, `item_id` 🔜 💪 🔢 🔢 "`g`🅟 🌘 ⚖ `e`🅟" `1`. + +```Python hl_lines="8" +{!../../../docs_src/path_params_numeric_validations/tutorial004.py!} +``` + +## 🔢 🔬: 🌘 🌘 & 🌘 🌘 ⚖ 🌓 + +🎏 ✔: + +* `gt`: `g`🅟 `t`👲 +* `le`: `l`👭 🌘 ⚖ `e`🅟 + +```Python hl_lines="9" +{!../../../docs_src/path_params_numeric_validations/tutorial005.py!} +``` + +## 🔢 🔬: 🎈, 🌘 🌘 & 🌘 🌘 + +🔢 🔬 👷 `float` 💲. + +📥 🌐❔ ⚫ ▶ ⚠ 💪 📣 gt & 🚫 ge. ⏮ ⚫ 👆 💪 🚚, 🖌, 👈 💲 🔜 👑 🌘 `0`, 🚥 ⚫ 🌘 🌘 `1`. + +, `0.5` 🔜 ☑ 💲. ✋ `0.0` ⚖ `0` 🔜 🚫. + +& 🎏 lt. + +```Python hl_lines="11" +{!../../../docs_src/path_params_numeric_validations/tutorial006.py!} +``` + +## 🌃 + +⏮ `Query`, `Path` (& 🎏 👆 🚫 👀) 👆 💪 📣 🗃 & 🎻 🔬 🎏 🌌 ⏮ [🔢 🔢 & 🎻 🔬](query-params-str-validations.md){.internal-link target=_blank}. + +& 👆 💪 📣 🔢 🔬: + +* `gt`: `g`🅟 `t`👲 +* `ge`: `g`🅟 🌘 ⚖ `e`🅟 +* `lt`: `l`👭 `t`👲 +* `le`: `l`👭 🌘 ⚖ `e`🅟 + +!!! info + `Query`, `Path`, & 🎏 🎓 👆 🔜 👀 ⏪ 🏿 ⚠ `Param` 🎓. + + 🌐 👫 💰 🎏 🔢 🌖 🔬 & 🗃 👆 ✔ 👀. + +!!! note "📡 ℹ" + 🕐❔ 👆 🗄 `Query`, `Path` & 🎏 ⚪➡ `fastapi`, 👫 🀙 🔢. + + 👈 🕐❔ 🀙, 📚 👐 🎓 🎏 📛. + + , 👆 🗄 `Query`, ❔ 🔢. & 🕐❔ 👆 🀙 ⚫, ⚫ 📚 👐 🎓 🌟 `Query`. + + 👫 🔢 📀 (↩ ⚙ 🎓 🔗) 👈 👆 👚‍🎚 🚫 ™ ❌ 🔃 👫 🆎. + + 👈 🌌 👆 💪 ⚙ 👆 😐 👚‍🎚 & 🛠 🧰 🍵 ✔ 🚮 🛃 📳 🀷‍♂ 📚 ❌. diff --git a/docs/em/docs/tutorial/path-params.md b/docs/em/docs/tutorial/path-params.md new file mode 100644 index 000000000..ea939b458 --- /dev/null +++ b/docs/em/docs/tutorial/path-params.md @@ -0,0 +1,252 @@ +# ➡ 🔢 + +👆 💪 📣 ➡ "🔢" ⚖ "🔢" ⏮ 🎏 ❕ ⚙ 🐍 📁 🎻: + +```Python hl_lines="6-7" +{!../../../docs_src/path_params/tutorial001.py!} +``` + +💲 ➡ 🔢 `item_id` 🔜 🚶‍♀ 👆 🔢 ❌ `item_id`. + +, 🚥 👆 🏃 👉 🖌 & 🚶 http://127.0.0.1:8000/items/foo, 👆 🔜 👀 📚: + +```JSON +{"item_id":"foo"} +``` + +## ➡ 🔢 ⏮ 🆎 + +👆 💪 📣 🆎 ➡ 🔢 🔢, ⚙ 🐩 🐍 🆎 ✍: + +```Python hl_lines="7" +{!../../../docs_src/path_params/tutorial002.py!} +``` + +👉 💌, `item_id` 📣 `int`. + +!!! check + 👉 🔜 🀝 👆 👚‍🎚 🐕‍🊺 🔘 👆 🔢, ⏮ ❌ ✅, 🛠, ♒. + +## 💜 🛠 + +🚥 👆 🏃 👉 🖌 & 📂 👆 🖥 http://127.0.0.1:8000/items/3, 👆 🔜 👀 📚: + +```JSON +{"item_id":3} +``` + +!!! check + 👀 👈 💲 👆 🔢 📚 (& 📚) `3`, 🐍 `int`, 🚫 🎻 `"3"`. + + , ⏮ 👈 🆎 📄, **FastAPI** 🀝 👆 🏧 📚 "✍". + +## 💜 🔬 + +✋ 🚥 👆 🚶 🖥 http://127.0.0.1:8000/items/foo, 👆 🔜 👀 👌 🇺🇞🔍 ❌: + +```JSON +{ + "detail": [ + { + "loc": [ + "path", + "item_id" + ], + "msg": "value is not a valid integer", + "type": "type_error.integer" + } + ] +} +``` + +↩ ➡ 🔢 `item_id` ✔ 💲 `"foo"`, ❔ 🚫 `int`. + +🎏 ❌ 🔜 😑 🚥 👆 🚚 `float` ↩ `int`,: http://127.0.0.1:8000/items/4.2 + +!!! check + , ⏮ 🎏 🐍 🆎 📄, **FastAPI** 🀝 👆 💜 🔬. + + 👀 👈 ❌ 🎯 🇵🇞 ⚫❔ ☝ 🌐❔ 🔬 🚫 🚶‍♀. + + 👉 🙃 👍 ⏪ 🛠 & 🛠 📟 👈 🔗 ⏮ 👆 🛠. + +## 🧟 + +& 🕐❔ 👆 📂 👆 🖥 http://127.0.0.1:8000/docs, 👆 🔜 👀 🏧, 🎓, 🛠 🧟 💖: + + + +!!! check + 🔄, ⏮ 👈 🎏 🐍 🆎 📄, **FastAPI** 🀝 👆 🏧, 🎓 🧟 (🛠 🊁 🎚). + + 👀 👈 ➡ 🔢 📣 🔢. + +## 🐩-⚓ 💰, 🎛 🧟 + +& ↩ 🏗 🔗 ⚪➡ 🗄 🐩, 📀 📚 🔗 🧰. + +↩ 👉, **FastAPI** ⚫ 🚚 🎛 🛠 🧟 (⚙ 📄), ❔ 👆 💪 🔐 http://127.0.0.1:8000/redoc: + + + +🎏 🌌, 📀 📚 🔗 🧰. ✅ 📟 ⚡ 🧰 📚 🇪🇞. + +## Pydantic + +🌐 💜 🔬 🎭 🔜 🚘 Pydantic, 👆 🀚 🌐 💰 ⚪➡ ⚫. & 👆 💭 👆 👍 ✋. + +👆 💪 ⚙ 🎏 🆎 📄 ⏮ `str`, `float`, `bool` & 📚 🎏 🏗 📊 🆎. + +📚 👫 🔬 ⏭ 📃 🔰. + +## ✔ 🀔 + +🕐❔ 🏗 *➡ 🛠*, 👆 💪 🔎 ⚠ 🌐❔ 👆 ✔ 🔧 ➡. + +💖 `/users/me`, ➡ 💬 👈 ⚫ 🀚 📊 🔃 ⏮ 👩‍💻. + +& ‎ 👆 💪 ✔ ➡ `/users/{user_id}` 🀚 💜 🔃 🎯 👩‍💻 👩‍💻 🆔. + +↩ *➡ 🛠* 🔬 ✔, 👆 💪 ⚒ 💭 👈 ➡ `/users/me` 📣 ⏭ 1⃣ `/users/{user_id}`: + +```Python hl_lines="6 11" +{!../../../docs_src/path_params/tutorial003.py!} +``` + +⏪, ➡ `/users/{user_id}` 🔜 🏏 `/users/me`, "💭" 👈 ⚫ 📚 🔢 `user_id` ⏮ 💲 `"me"`. + +➡, 👆 🚫🔜 ↔ ➡ 🛠: + +```Python hl_lines="6 11" +{!../../../docs_src/path_params/tutorial003b.py!} +``` + +🥇 🕐 🔜 🕧 ⚙ ↩ ➡ 🏏 🥇. + +## 🔁 💲 + +🚥 👆 ✔ *➡ 🛠* 👈 📚 *➡ 🔢*, ✋ 👆 💚 💪 ☑ *➡ 🔢* 💲 🔁, 👆 💪 ⚙ 🐩 🐍 `Enum`. + +### ✍ `Enum` 🎓 + +🗄 `Enum` & ✍ 🎧-🎓 👈 😖 ⚪➡ `str` & ⚪➡ `Enum`. + +😖 ⚪➡ `str` 🛠 🩺 🔜 💪 💭 👈 💲 🔜 🆎 `string` & 🔜 💪 ✍ ☑. + +‎ ✍ 🎓 🔢 ⏮ 🔧 💲, ❔ 🔜 💪 ☑ 💲: + +```Python hl_lines="1 6-9" +{!../../../docs_src/path_params/tutorial005.py!} +``` + +!!! info + 🔢 (⚖ 🔢) 💪 🐍 ↩ ⏬ 3⃣.4⃣. + +!!! tip + 🚥 👆 💭, "📊", "🎓", & "🍏" 📛 🎰 🏫 🏷. + +### 📣 *➡ 🔢* + +‎ ✍ *➡ 🔢* ⏮ 🆎 ✍ ⚙ 🔢 🎓 👆 ✍ (`ModelName`): + +```Python hl_lines="16" +{!../../../docs_src/path_params/tutorial005.py!} +``` + +### ✅ 🩺 + +↩ 💪 💲 *➡ 🔢* 🔢, 🎓 🩺 💪 🎊 👫 🎆: + + + +### 👷 ⏮ 🐍 *🔢* + +💲 *➡ 🔢* 🔜 *🔢 👚‍🎓*. + +#### 🔬 *🔢 👚‍🎓* + +👆 💪 🔬 ⚫ ⏮ *🔢 👚‍🎓* 👆 ✍ 🔢 `ModelName`: + +```Python hl_lines="17" +{!../../../docs_src/path_params/tutorial005.py!} +``` + +#### 🀚 *🔢 💲* + +👆 💪 🀚 ☑ 💲 ( `str` 👉 💌) ⚙ `model_name.value`, ⚖ 🏢, `your_enum_member.value`: + +```Python hl_lines="20" +{!../../../docs_src/path_params/tutorial005.py!} +``` + +!!! tip + 👆 💪 🔐 💲 `"lenet"` ⏮ `ModelName.lenet.value`. + +#### 📚 *🔢 👚‍🎓* + +👆 💪 📚 *🔢 👚‍🎓* ⚪➡ 👆 *➡ 🛠*, 🐊 🎻 💪 (✅ `dict`). + +👫 🔜 🗜 👫 🔗 💲 (🎻 👉 💌) ⏭ 🛬 👫 👩‍💻: + +```Python hl_lines="18 21 23" +{!../../../docs_src/path_params/tutorial005.py!} +``` + +👆 👩‍💻 👆 🔜 🀚 🎻 📚 💖: + +```JSON +{ + "model_name": "alexnet", + "message": "Deep Learning FTW!" +} +``` + +## ➡ 🔢 ⚗ ➡ + +➡ 💬 👆 ✔ *➡ 🛠* ⏮ ➡ `/files/{file_path}`. + +✋ 👆 💪 `file_path` ⚫ 🔌 *➡*, 💖 `home/johndoe/myfile.txt`. + +, 📛 👈 📁 🔜 🕳 💖: `/files/home/johndoe/myfile.txt`. + +### 🗄 🐕‍🊺 + +🗄 🚫 🐕‍🊺 🌌 📣 *➡ 🔢* 🔌 *➡* 🔘, 👈 💪 ↘ 😐 👈 ⚠ 💯 & 🔬. + +👐, 👆 💪 ⚫ **FastAPI**, ⚙ 1⃣ 🔗 🧰 ⚪➡ 💃. + +& 🩺 🔜 👷, 👐 🚫 ❎ 🙆 🧟 💬 👈 🔢 🔜 🔌 ➡. + +### ➡ 🔌 + +⚙ 🎛 🔗 ⚪➡ 💃 👆 💪 📣 *➡ 🔢* ⚗ *➡* ⚙ 📛 💖: + +``` +/files/{file_path:path} +``` + +👉 💌, 📛 🔢 `file_path`, & 🏁 🍕, `:path`, 💬 ⚫ 👈 🔢 🔜 🏏 🙆 *➡*. + +, 👆 💪 ⚙ ⚫ ⏮: + +```Python hl_lines="6" +{!../../../docs_src/path_params/tutorial004.py!} +``` + +!!! tip + 👆 💪 💪 🔢 🔌 `/home/johndoe/myfile.txt`, ⏮ 🏁 🔪 (`/`). + + 👈 💌, 📛 🔜: `/files//home/johndoe/myfile.txt`, ⏮ 2⃣✖ 🔪 (`//`) 🖖 `files` & `home`. + +## 🌃 + +⏮ **FastAPI**, ⚙ 📏, 🏋 & 🐩 🐍 🆎 📄, 👆 🀚: + +* 👚‍🎚 🐕‍🊺: ❌ ✅, ✍, ♒. +* 💜 "✍" +* 💜 🔬 +* 🛠 ✍ & 🏧 🧟 + +& 👆 🕎 ✔ 📣 👫 🕐. + +👈 🎲 👑 ⭐ 📈 **FastAPI** 🔬 🎛 🛠 (↖ ⚪➡ 🍣 🎭). diff --git a/docs/em/docs/tutorial/query-params-str-validations.md b/docs/em/docs/tutorial/query-params-str-validations.md new file mode 100644 index 000000000..d6b67bd51 --- /dev/null +++ b/docs/em/docs/tutorial/query-params-str-validations.md @@ -0,0 +1,467 @@ +# 🔢 🔢 & 🎻 🔬 + +**FastAPI** ✔ 👆 📣 🌖 ℹ & 🔬 👆 🔢. + +➡ ✊ 👉 🈞 🖌: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial001_py310.py!} + ``` + +🔢 🔢 `q` 🆎 `Union[str, None]` (⚖ `str | None` 🐍 3⃣.1⃣0⃣), 👈 ⛓ 👈 ⚫ 🆎 `str` ✋ 💪 `None`, & 👐, 🔢 💲 `None`, FastAPI 🔜 💭 ⚫ 🚫 ✔. + +!!! note + FastAPI 🔜 💭 👈 💲 `q` 🚫 ✔ ↩ 🔢 💲 `= None`. + + `Union` `Union[str, None]` 🔜 ✔ 👆 👚‍🎚 🀝 👆 👍 🐕‍🊺 & 🔍 ❌. + +## 🌖 🔬 + +👥 🔜 🛠 👈 ✋ `q` 📊, 🕐❔ ⚫ 🚚, **🚮 📐 🚫 📉 5⃣0⃣ 🊹**. + +### 🗄 `Query` + +🏆 👈, 🥇 🗄 `Query` ⚪➡ `fastapi`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3" + {!> ../../../docs_src/query_params_str_validations/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1" + {!> ../../../docs_src/query_params_str_validations/tutorial002_py310.py!} + ``` + +## ⚙ `Query` 🔢 💲 + +& 🔜 ⚙ ⚫ 🔢 💲 👆 🔢, ⚒ 🔢 `max_length` 5⃣0⃣: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial002_py310.py!} + ``` + +👥 ✔ ❎ 🔢 💲 `None` 🔢 ⏮ `Query()`, 👥 💪 🔜 ⚒ 🔢 💲 ⏮ 🔢 `Query(default=None)`, ⚫ 🍊 🎏 🎯 ⚖ 👈 🔢 💲. + +: + +```Python +q: Union[str, None] = Query(default=None) +``` + +...⚒ 🔢 📊, 🎏: + +```Python +q: Union[str, None] = None +``` + +& 🐍 3⃣.1⃣0⃣ & 🔛: + +```Python +q: str | None = Query(default=None) +``` + +...⚒ 🔢 📊, 🎏: + +```Python +q: str | None = None +``` + +✋ ⚫ 📣 ⚫ 🎯 💆‍♂ 🔢 🔢. + +!!! info + ✔ 🀯 👈 🌅 ⚠ 🍕 ⚒ 🔢 📊 🍕: + + ```Python + = None + ``` + + ⚖: + + ```Python + = Query(default=None) + ``` + + ⚫ 🔜 ⚙ 👈 `None` 🔢 💲, & 👈 🌌 ⚒ 🔢 **🚫 ✔**. + + `Union[str, None]` 🍕 ✔ 👆 👚‍🎚 🚚 👻 🐕‍🊺, ✋ ⚫ 🚫 ⚫❔ 💬 FastAPI 👈 👉 🔢 🚫 ✔. + +‎, 👥 💪 🚶‍♀ 🌅 🔢 `Query`. 👉 💌, `max_length` 🔢 👈 ✔ 🎻: + +```Python +q: Union[str, None] = Query(default=None, max_length=50) +``` + +👉 🔜 ✔ 📊, 🎊 🆑 ❌ 🕐❔ 📊 🚫 ☑, & 📄 🔢 🗄 🔗 *➡ 🛠*. + +## 🚮 🌅 🔬 + +👆 💪 🚮 🔢 `min_length`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/query_params_str_validations/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial003_py310.py!} + ``` + +## 🚮 🥔 🧬 + +👆 💪 🔬 🥔 🧬 👈 🔢 🔜 🏏: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="11" + {!> ../../../docs_src/query_params_str_validations/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial004_py310.py!} + ``` + +👉 🎯 🥔 🧬 ✅ 👈 📚 🔢 💲: + +* `^`: ▶ ⏮ 📄 🊹, 🚫 ✔ 🊹 ⏭. +* `fixedquery`: ✔ ☑ 💲 `fixedquery`. +* `$`: 🔚 📀, 🚫 ✔ 🙆 🌖 🊹 ⏮ `fixedquery`. + +🚥 👆 💭 💞 ⏮ 🌐 👉 **"🥔 🧬"** 💭, 🚫 😟. 👫 🏋 ❔ 📚 👫👫. 👆 💪 📚 💩 🍵 💆‍♂ 🥔 🧬. + +✋ 🕐❔ 👆 💪 👫 & 🚶 & 💡 👫, 💭 👈 👆 💪 ⏪ ⚙ 👫 🔗 **FastAPI**. + +## 🔢 💲 + +🎏 🌌 👈 👆 💪 🚶‍♀ `None` 💲 `default` 🔢, 👆 💪 🚶‍♀ 🎏 💲. + +➡ 💬 👈 👆 💚 📣 `q` 🔢 🔢 ✔ `min_length` `3`, & ✔ 🔢 💲 `"fixedquery"`: + +```Python hl_lines="7" +{!../../../docs_src/query_params_str_validations/tutorial005.py!} +``` + +!!! note + ✔ 🔢 💲 ⚒ 🔢 📊. + +## ⚒ ⚫ ✔ + +🕐❔ 👥 🚫 💪 📣 🌅 🔬 ⚖ 🗃, 👥 💪 ⚒ `q` 🔢 🔢 ✔ 🚫 📣 🔢 💲, 💖: + +```Python +q: str +``` + +↩: + +```Python +q: Union[str, None] = None +``` + +✋ 👥 🔜 📣 ⚫ ⏮ `Query`, 🖌 💖: + +```Python +q: Union[str, None] = Query(default=None, min_length=3) +``` + +, 🕐❔ 👆 💪 📣 💲 ✔ ⏪ ⚙ `Query`, 👆 💪 🎯 🚫 📣 🔢 💲: + +```Python hl_lines="7" +{!../../../docs_src/query_params_str_validations/tutorial006.py!} +``` + +### ✔ ⏮ ❕ (`...`) + +📀 🎛 🌌 🎯 📣 👈 💲 ✔. 👆 💪 ⚒ `default` 🔢 🔑 💲 `...`: + +```Python hl_lines="7" +{!../../../docs_src/query_params_str_validations/tutorial006b.py!} +``` + +!!! info + 🚥 👆 🚫 👀 👈 `...` ⏭: ⚫ 🎁 👁 💲, ⚫ 🍕 🐍 & 🀙 "❕". + + ⚫ ⚙ Pydantic & FastAPI 🎯 📣 👈 💲 ✔. + +👉 🔜 ➡ **FastAPI** 💭 👈 👉 🔢 ✔. + +### ✔ ⏮ `None` + +👆 💪 📣 👈 🔢 💪 🚫 `None`, ✋ 👈 ⚫ ✔. 👉 🔜 ⚡ 👩‍💻 📚 💲, 🚥 💲 `None`. + +👈, 👆 💪 📣 👈 `None` ☑ 🆎 ✋ ⚙ `default=...`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial006c.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial006c_py310.py!} + ``` + +!!! tip + Pydantic, ❔ ⚫❔ 🏋 🌐 💜 🔬 & 🛠 FastAPI, ✔ 🎁 🎭 🕐❔ 👆 ⚙ `Optional` ⚖ `Union[Something, None]` 🍵 🔢 💲, 👆 💪 ✍ 🌅 🔃 ⚫ Pydantic 🩺 🔃 ✔ 📊 🏑. + +### ⚙ Pydantic `Required` ↩ ❕ (`...`) + +🚥 👆 💭 😬 ⚙ `...`, 👆 💪 🗄 & ⚙ `Required` ⚪➡ Pydantic: + +```Python hl_lines="2 8" +{!../../../docs_src/query_params_str_validations/tutorial006d.py!} +``` + +!!! tip + 💭 👈 🌅 💌, 🕐❔ 🕳 🚚, 👆 💪 🎯 🚫 `default` 🔢, 👆 🛎 🚫 ✔ ⚙ `...` 🚫 `Required`. + +## 🔢 🔢 📇 / 💗 💲 + +🕐❔ 👆 🔬 🔢 🔢 🎯 ⏮ `Query` 👆 💪 📣 ⚫ 📚 📇 💲, ⚖ 🙆‍♀ 🎏 🌌, 📚 💗 💲. + +🖌, 📣 🔢 🔢 `q` 👈 💪 😑 💗 🕰 📛, 👆 💪 ✍: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial011.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial011_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial011_py310.py!} + ``` + +‎, ⏮ 📛 💖: + +``` +http://localhost:8000/items/?q=foo&q=bar +``` + +👆 🔜 📚 💗 `q` *🔢 🔢'* 💲 (`foo` & `bar`) 🐍 `list` 🔘 👆 *➡ 🛠 🔢*, *🔢 🔢* `q`. + +, 📚 👈 📛 🔜: + +```JSON +{ + "q": [ + "foo", + "bar" + ] +} +``` + +!!! tip + 📣 🔢 🔢 ⏮ 🆎 `list`, 💖 🖌 🔛, 👆 💪 🎯 ⚙ `Query`, ⏪ ⚫ 🔜 🔬 📚 💪. + +🎓 🛠 🩺 🔜 ℹ ➡, ✔ 💗 💲: + + + +### 🔢 🔢 📇 / 💗 💲 ⏮ 🔢 + +& 👆 💪 🔬 🔢 `list` 💲 🚥 👌 🚚: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial012.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial012_py39.py!} + ``` + +🚥 👆 🚶: + +``` +http://localhost:8000/items/ +``` + +🔢 `q` 🔜: `["foo", "bar"]` & 👆 📚 🔜: + +```JSON +{ + "q": [ + "foo", + "bar" + ] +} +``` + +#### ⚙ `list` + +👆 💪 ⚙ `list` 🔗 ↩ `List[str]` (⚖ `list[str]` 🐍 3⃣.9⃣ ➕): + +```Python hl_lines="7" +{!../../../docs_src/query_params_str_validations/tutorial013.py!} +``` + +!!! note + ✔ 🀯 👈 👉 💌, FastAPI 🏆 🚫 ✅ 🎚 📇. + + 🖌, `List[int]` 🔜 ✅ (& 📄) 👈 🎚 📇 🔢. ✋ `list` 😞 🚫🔜. + +## 📣 🌅 🗃 + +👆 💪 🚮 🌅 ℹ 🔃 🔢. + +👈 ℹ 🔜 🔌 🏗 🗄 & ⚙ 🧟 👩‍💻 🔢 & 🔢 🧰. + +!!! note + ✔ 🀯 👈 🎏 🧰 5⃣📆 ✔ 🎏 🎚 🗄 🐕‍🊺. + + 👫 💪 🚫 🎊 🌐 ➕ ℹ 📣, 👐 🌅 💌, ❌ ⚒ ⏪ 📄 🛠. + +👆 💪 🚮 `title`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/query_params_str_validations/tutorial007.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/query_params_str_validations/tutorial007_py310.py!} + ``` + +& `description`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="13" + {!> ../../../docs_src/query_params_str_validations/tutorial008.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="12" + {!> ../../../docs_src/query_params_str_validations/tutorial008_py310.py!} + ``` + +## 📛 🔢 + +🌈 👈 👆 💚 🔢 `item-query`. + +💖: + +``` +http://127.0.0.1:8000/items/?item-query=foobaritems +``` + +✋ `item-query` 🚫 ☑ 🐍 🔢 📛. + +🔐 🔜 `item_query`. + +✋ 👆 💪 ⚫ ⚫❔ `item-query`... + +‎ 👆 💪 📣 `alias`, & 👈 📛 ⚫❔ 🔜 ⚙ 🔎 🔢 💲: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params_str_validations/tutorial009.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params_str_validations/tutorial009_py310.py!} + ``` + +## 😛 🔢 + +🔜 ➡ 💬 👆 🚫 💖 👉 🔢 🚫🔜. + +👆 ✔ 👈 ⚫ 📀 ⏪ ↩ 📀 👩‍💻 ⚙ ⚫, ✋ 👆 💚 🩺 🎯 🎊 ⚫ 😢. + +‎ 🚶‍♀ 🔢 `deprecated=True` `Query`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/query_params_str_validations/tutorial010.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17" + {!> ../../../docs_src/query_params_str_validations/tutorial010_py310.py!} + ``` + +🩺 🔜 🎊 ⚫ 💖 👉: + + + +## 🚫 ⚪➡ 🗄 + +🚫 🔢 🔢 ⚪➡ 🏗 🗄 🔗 (& ➡, ⚪➡ 🏧 🧟 ⚙), ⚒ 🔢 `include_in_schema` `Query` `False`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/query_params_str_validations/tutorial014.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/query_params_str_validations/tutorial014_py310.py!} + ``` + +## 🌃 + +👆 💪 📣 🌖 🔬 & 🗃 👆 🔢. + +💊 🔬 & 🗃: + +* `alias` +* `title` +* `description` +* `deprecated` + +🔬 🎯 🎻: + +* `min_length` +* `max_length` +* `regex` + +👫 🖌 👆 👀 ❔ 📣 🔬 `str` 💲. + +👀 ⏭ 📃 👀 ❔ 📣 🔬 🎏 🆎, 💖 🔢. diff --git a/docs/em/docs/tutorial/query-params.md b/docs/em/docs/tutorial/query-params.md new file mode 100644 index 000000000..ccb235c15 --- /dev/null +++ b/docs/em/docs/tutorial/query-params.md @@ -0,0 +1,225 @@ +# 🔢 🔢 + +🕐❔ 👆 📣 🎏 🔢 🔢 👈 🚫 🍕 ➡ 🔢, 👫 🔁 🔬 "🔢" 🔢. + +```Python hl_lines="9" +{!../../../docs_src/query_params/tutorial001.py!} +``` + +🔢 ⚒ 🔑-💲 👫 👈 🚶 ⏮ `?` 📛, 🎏 `&` 🊹. + +🖌, 📛: + +``` +http://127.0.0.1:8000/items/?skip=0&limit=10 +``` + +...🔢 🔢: + +* `skip`: ⏮ 💲 `0` +* `limit`: ⏮ 💲 `10` + +👫 🍕 📛, 👫 "🛎" 🎻. + +✋ 🕐❔ 👆 📣 👫 ⏮ 🐍 🆎 (🖌 🔛, `int`), 👫 🗜 👈 🆎 & ✔ 🛡 ⚫. + +🌐 🎏 🛠 👈 ⚖ ➡ 🔢 ✔ 🔢 🔢: + +* 👚‍🎚 🐕‍🊺 (🎲) +* 💜 "✍" +* 💜 🔬 +* 🏧 🧟 + +## 🔢 + +🔢 🔢 🚫 🔧 🍕 ➡, 👫 💪 📊 & 💪 ✔ 🔢 💲. + +🖌 🔛 👫 ✔ 🔢 💲 `skip=0` & `limit=10`. + +, 🔜 📛: + +``` +http://127.0.0.1:8000/items/ +``` + +🔜 🎏 🔜: + +``` +http://127.0.0.1:8000/items/?skip=0&limit=10 +``` + +✋ 🚥 👆 🚶, 🖌: + +``` +http://127.0.0.1:8000/items/?skip=20 +``` + +🔢 💲 👆 🔢 🔜: + +* `skip=20`: ↩ 👆 ⚒ ⚫ 📛 +* `limit=10`: ↩ 👈 🔢 💲 + +## 📊 🔢 + +🎏 🌌, 👆 💪 📣 📊 🔢 🔢, ⚒ 👫 🔢 `None`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params/tutorial002_py310.py!} + ``` + +👉 💌, 🔢 🔢 `q` 🔜 📊, & 🔜 `None` 🔢. + +!!! check + 👀 👈 **FastAPI** 🙃 🥃 👀 👈 ➡ 🔢 `item_id` ➡ 🔢 & `q` 🚫,, ⚫ 🔢 🔢. + +## 🔢 🔢 🆎 🛠 + +👆 💪 📣 `bool` 🆎, & 👫 🔜 🗜: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/query_params/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/query_params/tutorial003_py310.py!} + ``` + +👉 💌, 🚥 👆 🚶: + +``` +http://127.0.0.1:8000/items/foo?short=1 +``` + +⚖ + +``` +http://127.0.0.1:8000/items/foo?short=True +``` + +⚖ + +``` +http://127.0.0.1:8000/items/foo?short=true +``` + +⚖ + +``` +http://127.0.0.1:8000/items/foo?short=on +``` + +⚖ + +``` +http://127.0.0.1:8000/items/foo?short=yes +``` + +⚖ 🙆 🎏 💌 📈 (🔠, 🥇 🔀 🔠, ♒), 👆 🔢 🔜 👀 🔢 `short` ⏮ `bool` 💲 `True`. ⏪ `False`. + + +## 💗 ➡ & 🔢 🔢 + +👆 💪 📣 💗 ➡ 🔢 & 🔢 🔢 🎏 🕰, **FastAPI** 💭 ❔ ❔. + +& 👆 🚫 ✔ 📣 👫 🙆 🎯 ✔. + +👫 🔜 🔬 📛: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="8 10" + {!> ../../../docs_src/query_params/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="6 8" + {!> ../../../docs_src/query_params/tutorial004_py310.py!} + ``` + +## ✔ 🔢 🔢 + +🕐❔ 👆 📣 🔢 💲 🚫-➡ 🔢 (🔜, 👥 ✔ 🕎 👀 🔢 🔢), ‎ ⚫ 🚫 ✔. + +🚥 👆 🚫 💚 🚮 🎯 💲 ✋ ⚒ ⚫ 📊, ⚒ 🔢 `None`. + +✋ 🕐❔ 👆 💚 ⚒ 🔢 🔢 ✔, 👆 💪 🚫 📣 🙆 🔢 💲: + +```Python hl_lines="6-7" +{!../../../docs_src/query_params/tutorial005.py!} +``` + +📥 🔢 🔢 `needy` ✔ 🔢 🔢 🆎 `str`. + +🚥 👆 📂 👆 🖥 📛 💖: + +``` +http://127.0.0.1:8000/items/foo-item +``` + +...🍵 ❎ ✔ 🔢 `needy`, 👆 🔜 👀 ❌ 💖: + +```JSON +{ + "detail": [ + { + "loc": [ + "query", + "needy" + ], + "msg": "field required", + "type": "value_error.missing" + } + ] +} +``` + +`needy` 🚚 🔢, 👆 🔜 💪 ⚒ ⚫ 📛: + +``` +http://127.0.0.1:8000/items/foo-item?needy=sooooneedy +``` + +...👉 🔜 👷: + +```JSON +{ + "item_id": "foo-item", + "needy": "sooooneedy" +} +``` + +& ↗, 👆 💪 🔬 🔢 ✔, ✔ 🔢 💲, & 🍕 📊: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/query_params/tutorial006.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/query_params/tutorial006_py310.py!} + ``` + +👉 💌, 📀 3⃣ 🔢 🔢: + +* `needy`, ✔ `str`. +* `skip`, `int` ⏮ 🔢 💲 `0`. +* `limit`, 📊 `int`. + +!!! tip + 👆 💪 ⚙ `Enum`Ⓜ 🎏 🌌 ⏮ [➡ 🔢](path-params.md#predefined-values){.internal-link target=_blank}. diff --git a/docs/em/docs/tutorial/request-files.md b/docs/em/docs/tutorial/request-files.md new file mode 100644 index 000000000..26631823f --- /dev/null +++ b/docs/em/docs/tutorial/request-files.md @@ -0,0 +1,186 @@ +# 📚 📁 + +👆 💪 🔬 📁 📂 👩‍💻 ⚙ `File`. + +!!! info + 📚 📂 📁, 🥇 ❎ `python-multipart`. + + 🀶 Ⓜ. `pip install python-multipart`. + + 👉 ↩ 📂 📁 📚 "📚 💜". + +## 🗄 `File` + +🗄 `File` & `UploadFile` ⚪➡ `fastapi`: + +```Python hl_lines="1" +{!../../../docs_src/request_files/tutorial001.py!} +``` + +## 🔬 `File` 🔢 + +✍ 📁 🔢 🎏 🌌 👆 🔜 `Body` ⚖ `Form`: + +```Python hl_lines="7" +{!../../../docs_src/request_files/tutorial001.py!} +``` + +!!! info + `File` 🎓 👈 😖 🔗 ⚪➡ `Form`. + + ✋ 💭 👈 🕐❔ 👆 🗄 `Query`, `Path`, `File` & 🎏 ⚪➡ `fastapi`, 👈 🀙 🔢 👈 📚 🎁 🎓. + +!!! tip + 📣 📁 💪, 👆 💪 ⚙ `File`, ↩ ⏪ 🔢 🔜 🔬 🔢 🔢 ⚖ 💪 (🎻) 🔢. + +📁 🔜 📂 "📚 💜". + +🚥 👆 📣 🆎 👆 *➡ 🛠 🔢* 🔢 `bytes`, **FastAPI** 🔜 ✍ 📁 👆 & 👆 🔜 📚 🎚 `bytes`. + +✔ 🀯 👈 👉 ⛓ 👈 🎂 🎚 🔜 🏪 💟. 👉 🔜 👷 👍 🀪 📁. + +✋ 📀 📚 💌 ❔ 👆 💪 💰 ⚪➡ ⚙ `UploadFile`. + +## 📁 🔢 ⏮ `UploadFile` + +🔬 📁 🔢 ⏮ 🆎 `UploadFile`: + +```Python hl_lines="12" +{!../../../docs_src/request_files/tutorial001.py!} +``` + +⚙ `UploadFile` ✔ 📚 📈 🀭 `bytes`: + +* 👆 🚫 ✔ ⚙ `File()` 🔢 💲 🔢. +* ⚫ ⚙ "🧵" 📁: + * 📁 🏪 💟 🆙 🔆 📐 📉, & ⏮ 🚶‍♀ 👉 📉 ⚫ 🔜 🏪 💟. +* 👉 ⛓ 👈 ⚫ 🔜 👷 👍 ⭕ 📁 💖 🖌, 📹, ⭕ 💱, ♒. 🍵 😩 🌐 💟. +* 👆 💪 🀚 🗃 ⚪➡ 📂 📁. +* ⚫ ✔ 📁-💖 `async` 🔢. +* ⚫ 🎊 ☑ 🐍 `SpooledTemporaryFile` 🎚 👈 👆 💪 🚶‍♀ 🔗 🎏 🗃 👈 ⌛ 📁-💖 🎚. + +### `UploadFile` + +`UploadFile` ✔ 📄 🔢: + +* `filename`: `str` ⏮ ⏮ 📁 📛 👈 📂 (✅ `myimage.jpg`). +* `content_type`: `str` ⏮ 🎚 🆎 (📁 🆎 / 📻 🆎) (✅ `image/jpeg`). +* `file`: `SpooledTemporaryFile` ( 📁-💖 🎚). 👉 ☑ 🐍 📁 👈 👆 💪 🚶‍♀ 🔗 🎏 🔢 ⚖ 🗃 👈 ⌛ "📁-💖" 🎚. + +`UploadFile` ✔ 📄 `async` 👩‍🔬. 👫 🌐 🀙 🔗 📁 👩‍🔬 🔘 (⚙ 🔗 `SpooledTemporaryFile`). + +* `write(data)`: ✍ `data` (`str` ⚖ `bytes`) 📁. +* `read(size)`: ✍ `size` (`int`) 🔢/🊹 📁. +* `seek(offset)`: 🚶 🔢 🧘 `offset` (`int`) 📁. + * 🀶 Ⓜ., `await myfile.seek(0)` 🔜 🚶 ▶ 📁. + * 👉 ✎ ⚠ 🚥 👆 🏃 `await myfile.read()` 🕐 & ‎ 💪 ✍ 🎚 🔄. +* `close()`: 🔐 📁. + +🌐 👫 👩‍🔬 `async` 👩‍🔬, 👆 💪 "⌛" 👫. + +🖌, 🔘 `async` *➡ 🛠 🔢* 👆 💪 🀚 🎚 ⏮: + +```Python +contents = await myfile.read() +``` + +🚥 👆 🔘 😐 `def` *➡ 🛠 🔢*, 👆 💪 🔐 `UploadFile.file` 🔗, 🖌: + +```Python +contents = myfile.file.read() +``` + +!!! note "`async` 📡 ℹ" + 🕐❔ 👆 ⚙ `async` 👩‍🔬, **FastAPI** 🏃 📁 👩‍🔬 🧵 & ⌛ 👫. + +!!! note "💃 📡 ℹ" + **FastAPI**'Ⓜ `UploadFile` 😖 🔗 ⚪➡ **💃**'Ⓜ `UploadFile`, ✋ 🚮 💪 🍕 ⚒ ⚫ 🔗 ⏮ **Pydantic** & 🎏 🍕 FastAPI. + +## ⚫❔ "📚 💜" + +🌌 🕞 📚 (`
`) 📚 💜 💜 🛎 ⚙ "🎁" 🔢 👈 📊, ⚫ 🎏 ⚪➡ 🎻. + +**FastAPI** 🔜 ⚒ 💭 ✍ 👈 📊 ⚪➡ ▶ 🥉 ↩ 🎻. + +!!! note "📡 ℹ" + 📊 ⚪➡ 📚 🛎 🗜 ⚙ "📻 🆎" `application/x-www-form-urlencoded` 🕐❔ ⚫ 🚫 🔌 📁. + + ✋ 🕐❔ 📚 🔌 📁, ⚫ 🗜 `multipart/form-data`. 🚥 👆 ⚙ `File`, **FastAPI** 🔜 💭 ⚫ ✔ 🀚 📁 ⚪➡ ☑ 🍕 💪. + + 🚥 👆 💚 ✍ 🌖 🔃 👉 🔢 & 📚 🏑, 👳 🏇 🕞 🩺 POST. + +!!! warning + 👆 💪 📣 💗 `File` & `Form` 🔢 *➡ 🛠*, ✋ 👆 💪 🚫 📣 `Body` 🏑 👈 👆 ⌛ 📚 🎻, 📚 🔜 ✔ 💪 🗜 ⚙ `multipart/form-data` ↩ `application/json`. + + 👉 🚫 🚫 **FastAPI**, ⚫ 🍕 🇺🇞🔍 🛠. + +## 📊 📁 📂 + +👆 💪 ⚒ 📁 📊 ⚙ 🐩 🆎 ✍ & ⚒ 🔢 💲 `None`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 17" + {!> ../../../docs_src/request_files/tutorial001_02.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7 14" + {!> ../../../docs_src/request_files/tutorial001_02_py310.py!} + ``` + +## `UploadFile` ⏮ 🌖 🗃 + +👆 💪 ⚙ `File()` ⏮ `UploadFile`, 🖌, ⚒ 🌖 🗃: + +```Python hl_lines="13" +{!../../../docs_src/request_files/tutorial001_03.py!} +``` + +## 💗 📁 📂 + +⚫ 💪 📂 📚 📁 🎏 🕰. + +👫 🔜 👚‍💌 🎏 "📚 🏑" 📚 ⚙ "📚 💜". + +⚙ 👈, 📣 📇 `bytes` ⚖ `UploadFile`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10 15" + {!> ../../../docs_src/request_files/tutorial002.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="8 13" + {!> ../../../docs_src/request_files/tutorial002_py39.py!} + ``` + +👆 🔜 📚, 📣, `list` `bytes` ⚖ `UploadFile`Ⓜ. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.responses import HTMLResponse`. + + **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋ 🌅 💪 📚 👟 🔗 ⚪➡ 💃. + +### 💗 📁 📂 ⏮ 🌖 🗃 + +& 🎏 🌌 ⏭, 👆 💪 ⚙ `File()` ⚒ 🌖 🔢, `UploadFile`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/request_files/tutorial003.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="16" + {!> ../../../docs_src/request_files/tutorial003_py39.py!} + ``` + +## 🌃 + +⚙ `File`, `bytes`, & `UploadFile` 📣 📁 📂 📚, 📚 📚 💜. diff --git a/docs/em/docs/tutorial/request-forms-and-files.md b/docs/em/docs/tutorial/request-forms-and-files.md new file mode 100644 index 000000000..99aeca000 --- /dev/null +++ b/docs/em/docs/tutorial/request-forms-and-files.md @@ -0,0 +1,35 @@ +# 📚 📚 & 📁 + +👆 💪 🔬 📁 & 📚 🏑 🎏 🕰 ⚙ `File` & `Form`. + +!!! info + 📚 📂 📁 & /⚖ 📚 📊, 🥇 ❎ `python-multipart`. + + 🀶 Ⓜ. `pip install python-multipart`. + +## 🗄 `File` & `Form` + +```Python hl_lines="1" +{!../../../docs_src/request_forms_and_files/tutorial001.py!} +``` + +## 🔬 `File` & `Form` 🔢 + +✍ 📁 & 📚 🔢 🎏 🌌 👆 🔜 `Body` ⚖ `Query`: + +```Python hl_lines="8" +{!../../../docs_src/request_forms_and_files/tutorial001.py!} +``` + +📁 & 📚 🏑 🔜 📂 📚 📊 & 👆 🔜 📚 📁 & 📚 🏑. + +& 👆 💪 📣 📁 `bytes` & `UploadFile`. + +!!! warning + 👆 💪 📣 💗 `File` & `Form` 🔢 *➡ 🛠*, ✋ 👆 💪 🚫 📣 `Body` 🏑 👈 👆 ⌛ 📚 🎻, 📚 🔜 ✔ 💪 🗜 ⚙ `multipart/form-data` ↩ `application/json`. + + 👉 🚫 🚫 **FastAPI**, ⚫ 🍕 🇺🇞🔍 🛠. + +## 🌃 + +⚙ `File` & `Form` 👯‍♂ 🕐❔ 👆 💪 📚 💜 & 📁 🎏 📚. diff --git a/docs/em/docs/tutorial/request-forms.md b/docs/em/docs/tutorial/request-forms.md new file mode 100644 index 000000000..fa74adae5 --- /dev/null +++ b/docs/em/docs/tutorial/request-forms.md @@ -0,0 +1,58 @@ +# 📚 💜 + +🕐❔ 👆 💪 📚 📚 🏑 ↩ 🎻, 👆 💪 ⚙ `Form`. + +!!! info + ⚙ 📚, 🥇 ❎ `python-multipart`. + + 🀶 Ⓜ. `pip install python-multipart`. + +## 🗄 `Form` + +🗄 `Form` ⚪➡ `fastapi`: + +```Python hl_lines="1" +{!../../../docs_src/request_forms/tutorial001.py!} +``` + +## 🔬 `Form` 🔢 + +✍ 📚 🔢 🎏 🌌 👆 🔜 `Body` ⚖ `Query`: + +```Python hl_lines="7" +{!../../../docs_src/request_forms/tutorial001.py!} +``` + +🖌, 1⃣ 🌌 Oauth2⃣ 🔧 💪 ⚙ (🀙 "🔐 💧") ⚫ ✔ 📚 `username` & `password` 📚 🏑. + +🔌 🚚 🏑 ⚫❔ 📛 `username` & `password`, & 📚 📚 🏑, 🚫 🎻. + +⏮ `Form` 👆 💪 📣 🎏 📳 ⏮ `Body` (& `Query`, `Path`, `Cookie`), 🔌 🔬, 🖌, 📛 (✅ `user-name` ↩ `username`), ♒. + +!!! info + `Form` 🎓 👈 😖 🔗 ⚪➡ `Body`. + +!!! tip + 📣 📚 💪, 👆 💪 ⚙ `Form` 🎯, ↩ 🍵 ⚫ 🔢 🔜 🔬 🔢 🔢 ⚖ 💪 (🎻) 🔢. + +## 🔃 "📚 🏑" + +🌌 🕞 📚 (`
`) 📚 💜 💜 🛎 ⚙ "🎁" 🔢 👈 📊, ⚫ 🎏 ⚪➡ 🎻. + +**FastAPI** 🔜 ⚒ 💭 ✍ 👈 📊 ⚪➡ ▶ 🥉 ↩ 🎻. + +!!! note "📡 ℹ" + 📊 ⚪➡ 📚 🛎 🗜 ⚙ "📻 🆎" `application/x-www-form-urlencoded`. + + ✋ 🕐❔ 📚 🔌 📁, ⚫ 🗜 `multipart/form-data`. 👆 🔜 ✍ 🔃 🚚 📁 ⏭ 📃. + + 🚥 👆 💚 ✍ 🌖 🔃 👉 🔢 & 📚 🏑, 👳 🏇 🕞 🩺 POST. + +!!! warning + 👆 💪 📣 💗 `Form` 🔢 *➡ 🛠*, ✋ 👆 💪 🚫 📣 `Body` 🏑 👈 👆 ⌛ 📚 🎻, 📚 🔜 ✔ 💪 🗜 ⚙ `application/x-www-form-urlencoded` ↩ `application/json`. + + 👉 🚫 🚫 **FastAPI**, ⚫ 🍕 🇺🇞🔍 🛠. + +## 🌃 + +⚙ `Form` 📣 📚 💜 🔢 🔢. diff --git a/docs/em/docs/tutorial/response-model.md b/docs/em/docs/tutorial/response-model.md new file mode 100644 index 000000000..6ea4413f8 --- /dev/null +++ b/docs/em/docs/tutorial/response-model.md @@ -0,0 +1,481 @@ +# 📚 🏷 - 📚 🆎 + +👆 💪 📣 🆎 ⚙ 📚 ✍ *➡ 🛠 🔢* **📚 🆎**. + +👆 💪 ⚙ **🆎 ✍** 🎏 🌌 👆 🔜 🔢 💜 🔢 **🔢**, 👆 💪 ⚙ Pydantic 🏷, 📇, 📖, 📊 💲 💖 🔢, 🎻, ♒. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18 23" + {!> ../../../docs_src/response_model/tutorial001_01.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="18 23" + {!> ../../../docs_src/response_model/tutorial001_01_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="16 21" + {!> ../../../docs_src/response_model/tutorial001_01_py310.py!} + ``` + +FastAPI 🔜 ⚙ 👉 📚 🆎: + +* **✔** 📚 💜. + * 🚥 💜 ❌ (✅ 👆 ❌ 🏑), ⚫ ⛓ 👈 *👆* 📱 📟 💔, 🚫 🛬 ⚫❔ ⚫ 🔜, & ⚫ 🔜 📚 💜 ❌ ↩ 🛬 ❌ 💜. 👉 🌌 👆 & 👆 👩‍💻 💪 🎯 👈 👫 🔜 📚 💜 & 💜 💠 📈. +* 🚮 **🎻 🔗** 📚, 🗄 *➡ 🛠*. + * 👉 🔜 ⚙ **🏧 🩺**. + * ⚫ 🔜 ⚙ 🏧 👩‍💻 📟 ⚡ 🧰. + +✋ 🏆 🥈: + +* ⚫ 🔜 **📉 & ⛜** 🔢 📊 ⚫❔ 🔬 📚 🆎. + * 👉 ✎ ⚠ **💂‍♂**, 👥 🔜 👀 🌅 👈 🔛. + +## `response_model` 🔢 + +📀 💌 🌐❔ 👆 💪 ⚖ 💚 📚 💜 👈 🚫 ⚫❔ ⚫❔ 🆎 📣. + +🖌, 👆 💪 💚 **📚 📖** ⚖ 💜 🎚, ✋ **📣 ⚫ Pydantic 🏷**. 👉 🌌 Pydantic 🏷 🔜 🌐 💜 🧟, 🔬, ♒. 🎚 👈 👆 📚 (✅ 📖 ⚖ 💜 🎚). + +🚥 👆 🚮 📚 🆎 ✍, 🧰 & 👚‍🎚 🔜 😭 ⏮ (☑) ❌ 💬 👆 👈 👆 🔢 🛬 🆎 (✅#⃣) 👈 🎏 ⚪➡ ⚫❔ 👆 📣 (✅ Pydantic 🏷). + +📚 💌, 👆 💪 ⚙ *➡ 🛠 👚‍🎚* 🔢 `response_model` ↩ 📚 🆎. + +👆 💪 ⚙ `response_model` 🔢 🙆 *➡ 🛠*: + +* `@app.get()` +* `@app.post()` +* `@app.put()` +* `@app.delete()` +* ♒. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="17 22 24-27" + {!> ../../../docs_src/response_model/tutorial001.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="17 22 24-27" + {!> ../../../docs_src/response_model/tutorial001_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17 22 24-27" + {!> ../../../docs_src/response_model/tutorial001_py310.py!} + ``` + +!!! note + 👀 👈 `response_model` 🔢 "👚‍🎚" 👩‍🔬 (`get`, `post`, ♒). 🚫 👆 *➡ 🛠 🔢*, 💖 🌐 🔢 & 💪. + +`response_model` 📚 🎏 🆎 👆 🔜 📣 Pydantic 🏷 🏑,, ⚫ 💪 Pydantic 🏷, ✋ ⚫ 💪, ✅ `list` Pydantic 🏷, 💖 `List[Item]`. + +FastAPI 🔜 ⚙ 👉 `response_model` 🌐 💜 🧟, 🔬, ♒. & **🗜 & ⛜ 🔢 📊** 🚮 🆎 📄. + +!!! tip + 🚥 👆 ✔ ⚠ 🆎 ✅ 👆 👚‍🎚, ✍, ♒, 👆 💪 📣 🔢 📚 🆎 `Any`. + + 👈 🌌 👆 💬 👚‍🎚 👈 👆 😫 🛬 🕳. ✋ FastAPI 🔜 💜 🧟, 🔬, 🖥, ♒. ⏮ `response_model`. + +### `response_model` 📫 + +🚥 👆 📣 👯‍♂ 📚 🆎 & `response_model`, `response_model` 🔜 ✊ 📫 & ⚙ FastAPI. + +👉 🌌 👆 💪 🚮 ☑ 🆎 ✍ 👆 🔢 🕐❔ 👆 🛬 🆎 🎏 🌘 📚 🏷, ⚙ 👚‍🎚 & 🧰 💖 ✍. & 👆 💪 ✔ FastAPI 💜 🔬, 🧟, ♒. ⚙ `response_model`. + +👆 💪 ⚙ `response_model=None` ❎ 🏗 📚 🏷 👈 *➡ 🛠*, 👆 5⃣📆 💪 ⚫ 🚥 👆 ❎ 🆎 ✍ 👜 👈 🚫 ☑ Pydantic 🏑, 👆 🔜 👀 🖌 👈 1⃣ 📄 🔛. + +## 📚 🎏 🔢 💜 + +📥 👥 📣 `UserIn` 🏷, ⚫ 🔜 🔌 🔢 🔐: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 11" + {!> ../../../docs_src/response_model/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7 9" + {!> ../../../docs_src/response_model/tutorial002_py310.py!} + ``` + +!!! info + ⚙ `EmailStr`, 🥇 ❎ `email_validator`. + + 🀶 Ⓜ. `pip install email-validator` + ⚖ `pip install pydantic[email]`. + +& 👥 ⚙ 👉 🏷 📣 👆 🔢 & 🎏 🏷 📣 👆 🔢: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="18" + {!> ../../../docs_src/response_model/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="16" + {!> ../../../docs_src/response_model/tutorial002_py310.py!} + ``` + +🔜, 🕐❔ 🖥 🏗 👩‍💻 ⏮ 🔐, 🛠 🔜 📚 🎏 🔐 📚. + +👉 💌, ⚫ 💪 🚫 ⚠, ↩ ⚫ 🎏 👩‍💻 📚 🔐. + +✋ 🚥 👥 ⚙ 🎏 🏷 ➕1⃣ *➡ 🛠*, 👥 💪 📚 👆 👩‍💻 🔐 🔠 👩‍💻. + +!!! danger + 🙅 🏪 ✅ 🔐 👩‍💻 ⚖ 📚 ⚫ 📚 💖 👉, 🚥 👆 💭 🌐 ⚠ & 👆 💭 ⚫❔ 👆 🔚. + +## 🚮 🔢 🏷 + +👥 💪 ↩ ✍ 🔢 🏷 ⏮ 🔢 🔐 & 🔢 🏷 🍵 ⚫: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9 11 16" + {!> ../../../docs_src/response_model/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="9 11 16" + {!> ../../../docs_src/response_model/tutorial003_py310.py!} + ``` + +📥, ✋ 👆 *➡ 🛠 🔢* 🛬 🎏 🔢 👩‍💻 👈 🔌 🔐: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="24" + {!> ../../../docs_src/response_model/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="24" + {!> ../../../docs_src/response_model/tutorial003_py310.py!} + ``` + +...👥 📣 `response_model` 👆 🏷 `UserOut`, 👈 🚫 🔌 🔐: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/response_model/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/response_model/tutorial003_py310.py!} + ``` + +, **FastAPI** 🔜 ✊ 💅 🖥 👅 🌐 💜 👈 🚫 📣 🔢 🏷 (⚙ Pydantic). + +### `response_model` ⚖ 📚 🆎 + +👉 💌, ↩ 2⃣ 🏷 🎏, 🚥 👥 ✍ 🔢 📚 🆎 `UserOut`, 👚‍🎚 & 🧰 🔜 😭 👈 👥 🛬 ❌ 🆎, 📚 🎏 🎓. + +👈 ⚫❔ 👉 🖌 👥 ✔ 📣 ⚫ `response_model` 🔢. + +...✋ 😣 👂 🔛 👀 ❔ ❎ 👈. + +## 📚 🆎 & 💜 🖥 + +➡ 😣 ⚪➡ ⏮ 🖌. 👥 💚 **✍ 🔢 ⏮ 1⃣ 🆎** ✋ 📚 🕳 👈 🔌 **🌅 💜**. + +👥 💚 FastAPI 🚧 **🖥** 📊 ⚙ 📚 🏷. + +⏮ 🖌, ↩ 🎓 🎏, 👥 ✔ ⚙ `response_model` 🔢. ✋ 👈 ⛓ 👈 👥 🚫 🀚 🐕‍🊺 ⚪➡ 👚‍🎚 & 🧰 ✅ 🔢 📚 🆎. + +✋ 🌅 💌 🌐❔ 👥 💪 🕳 💖 👉, 👥 💚 🏷 **⛜/❎** 📊 👉 🖌. + +& 👈 💌, 👥 💪 ⚙ 🎓 & 🧬 ✊ 📈 🔢 **🆎 ✍** 🀚 👍 🐕‍🊺 👚‍🎚 & 🧰, & 🀚 FastAPI **💜 🖥**. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9-13 15-16 20" + {!> ../../../docs_src/response_model/tutorial003_01.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7-10 13-14 18" + {!> ../../../docs_src/response_model/tutorial003_01_py310.py!} + ``` + +⏮ 👉, 👥 🀚 🏭 🐕‍🊺, ⚪➡ 👚‍🎚 & ✍ 👉 📟 ☑ ⚖ 🆎, ✋ 👥 🀚 💜 🖥 ⚪➡ FastAPI. + +❔ 🔚 👉 👷 ❓ ➡ ✅ 👈 👅. 👶 + +### 🆎 ✍ & 🏭 + +🥇 ➡ 👀 ❔ 👚‍🎚, ✍ & 🎏 🧰 🔜 👀 👉. + +`BaseUser` ✔ 🧢 🏑. ‎ `UserIn` 😖 ⚪➡ `BaseUser` & 🚮 `password` 🏑,, ⚫ 🔜 🔌 🌐 🏑 ⚪➡ 👯‍♂ 🏷. + +👥 ✍ 🔢 📚 🆎 `BaseUser`, ✋ 👥 🀙 🛬 `UserIn` 👐. + +👚‍🎚, ✍, & 🎏 🧰 🏆 🚫 😭 🔃 👉 ↩, ⌹ ⚖, `UserIn` 🏿 `BaseUser`, ❔ ⛓ ⚫ *☑* 🆎 🕐❔ ⚫❔ ⌛ 🕳 👈 `BaseUser`. + +### FastAPI 💜 🖥 + +🔜, FastAPI, ⚫ 🔜 👀 📚 🆎 & ⚒ 💭 👈 ⚫❔ 👆 📚 🔌 **🕎** 🏑 👈 📣 🆎. + +FastAPI 🔚 📚 👜 🔘 ⏮ Pydantic ⚒ 💭 👈 📚 🎏 🚫 🎓 🧬 🚫 ⚙ 📚 💜 🖥, ⏪ 👆 💪 🔚 🆙 🛬 🌅 🌅 💜 🌘 ⚫❔ 👆 📈. + +👉 🌌, 👆 💪 🀚 🏆 👯‍♂ 🌏: 🆎 ✍ ⏮ **🏭 🐕‍🊺** & **💜 🖥**. + +## 👀 ⚫ 🩺 + +🕐❔ 👆 👀 🏧 🩺, 👆 💪 ✅ 👈 🔢 🏷 & 🔢 🏷 🔜 👯‍♂ ✔ 👫 👍 🎻 🔗: + + + +& 👯‍♂ 🏷 🔜 ⚙ 🎓 🛠 🧟: + + + +## 🎏 📚 🆎 ✍ + +📀 5⃣📆 💌 🌐❔ 👆 📚 🕳 👈 🚫 ☑ Pydantic 🏑 & 👆 ✍ ⚫ 🔢, 🕎 🀚 🐕‍🊺 🚚 🏭 (👚‍🎚, ✍, ♒). + +### 📚 📚 🔗 + +🏆 ⚠ 💌 🔜 [🛬 📚 🔗 🔬 ⏪ 🏧 🩺](../advanced/response-directly.md){.internal-link target=_blank}. + +```Python hl_lines="8 10-11" +{!> ../../../docs_src/response_model/tutorial003_02.py!} +``` + +👉 🙅 💌 🍵 🔁 FastAPI ↩ 📚 🆎 ✍ 🎓 (⚖ 🏿) `Response`. + +& 🧰 🔜 😄 ↩ 👯‍♂ `RedirectResponse` & `JSONResponse` 🏿 `Response`, 🆎 ✍ ☑. + +### ✍ 📚 🏿 + +👆 💪 ⚙ 🏿 `Response` 🆎 ✍: + +```Python hl_lines="8-9" +{!> ../../../docs_src/response_model/tutorial003_03.py!} +``` + +👉 🔜 👷 ↩ `RedirectResponse` 🏿 `Response`, & FastAPI 🔜 🔁 🍵 👉 🙅 💌. + +### ❌ 📚 🆎 ✍ + +✋ 🕐❔ 👆 📚 🎏 ❌ 🎚 👈 🚫 ☑ Pydantic 🆎 (✅ 💜 🎚) & 👆 ✍ ⚫ 💖 👈 🔢, FastAPI 🔜 🔄 ✍ Pydantic 📚 🏷 ⚪➡ 👈 🆎 ✍, & 🔜 ❌. + +🎏 🔜 🔚 🚥 👆 ✔ 🕳 💖 🇪🇺 🖖 🎏 🆎 🌐❔ 1⃣ ⚖ 🌅 👫 🚫 ☑ Pydantic 🆎, 🖌 👉 🔜 ❌ 👶: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="10" + {!> ../../../docs_src/response_model/tutorial003_04.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="8" + {!> ../../../docs_src/response_model/tutorial003_04_py310.py!} + ``` + +...👉 ❌ ↩ 🆎 ✍ 🚫 Pydantic 🆎 & 🚫 👁 `Response` 🎓 ⚖ 🏿, ⚫ 🇪🇺 (🙆 2⃣) 🖖 `Response` & `dict`. + +### ❎ 📚 🏷 + +▶ ⚪➡ 🖌 🔛, 👆 5⃣📆 🚫 💚 ✔ 🔢 💜 🔬, 🧟, 🖥, ♒. 👈 🎭 FastAPI. + +✋ 👆 💪 💚 🚧 📚 🆎 ✍ 🔢 🀚 🐕‍🊺 ⚪➡ 🧰 💖 👚‍🎚 & 🆎 ☑ (✅ ✍). + +👉 💌, 👆 💪 ❎ 📚 🏷 ⚡ ⚒ `response_model=None`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/response_model/tutorial003_05.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/response_model/tutorial003_05_py310.py!} + ``` + +👉 🔜 ⚒ FastAPI 🚶 📚 🏷 ⚡ & 👈 🌌 👆 💪 ✔ 🙆 📚 🆎 ✍ 👆 💪 🍵 ⚫ 🀕 👆 FastAPI 🈞. 👶 + +## 📚 🏷 🔢 🔢 + +👆 📚 🏷 💪 ✔ 🔢 💲, 💖: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="11 13-14" + {!> ../../../docs_src/response_model/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="11 13-14" + {!> ../../../docs_src/response_model/tutorial004_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="9 11-12" + {!> ../../../docs_src/response_model/tutorial004_py310.py!} + ``` + +* `description: Union[str, None] = None` (⚖ `str | None = None` 🐍 3⃣.1⃣0⃣) ✔ 🔢 `None`. +* `tax: float = 10.5` ✔ 🔢 `10.5`. +* `tags: List[str] = []` 🔢 🛁 📇: `[]`. + +✋ 👆 💪 💚 🚫 👫 ⚪➡ 🏁 🚥 👫 🚫 🀙 🏪. + +🖌, 🚥 👆 ✔ 🏷 ⏮ 📚 📊 🔢 ☁ 💜, ✋ 👆 🚫 💚 📚 📶 📏 🎻 📚 🌕 🔢 💲. + +### ⚙ `response_model_exclude_unset` 🔢 + +👆 💪 ⚒ *➡ 🛠 👚‍🎚* 🔢 `response_model_exclude_unset=True`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="24" + {!> ../../../docs_src/response_model/tutorial004.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="24" + {!> ../../../docs_src/response_model/tutorial004_py39.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="22" + {!> ../../../docs_src/response_model/tutorial004_py310.py!} + ``` + +& 👈 🔢 💲 🏆 🚫 🔌 📚, 🕎 💲 🀙 ⚒. + +, 🚥 👆 📚 📚 👈 *➡ 🛠* 🏬 ⏮ 🆔 `foo`, 📚 (🚫 ✅ 🔢 💲) 🔜: + +```JSON +{ + "name": "Foo", + "price": 50.2 +} +``` + +!!! info + FastAPI ⚙ Pydantic 🏷 `.dict()` ⏮ 🚮 `exclude_unset` 🔢 🏆 👉. + +!!! info + 👆 💪 ⚙: + + * `response_model_exclude_defaults=True` + * `response_model_exclude_none=True` + + 🔬 Pydantic 🩺 `exclude_defaults` & `exclude_none`. + +#### 📊 ⏮ 💲 🏑 ⏮ 🔢 + +✋ 🚥 👆 📊 ✔ 💲 🏷 🏑 ⏮ 🔢 💲, 💖 🏬 ⏮ 🆔 `bar`: + +```Python hl_lines="3 5" +{ + "name": "Bar", + "description": "The bartenders", + "price": 62, + "tax": 20.2 +} +``` + +👫 🔜 🔌 📚. + +#### 📊 ⏮ 🎏 💲 🔢 + +🚥 📊 ✔ 🎏 💲 🔢 🕐, 💖 🏬 ⏮ 🆔 `baz`: + +```Python hl_lines="3 5-6" +{ + "name": "Baz", + "description": None, + "price": 50.2, + "tax": 10.5, + "tags": [] +} +``` + +FastAPI 🙃 🥃 (🀙, Pydantic 🙃 🥃) 🀔 👈, ✋ `description`, `tax`, & `tags` ✔ 🎏 💲 🔢, 👫 ⚒ 🎯 (↩ ✊ ⚪➡ 🔢). + +, 👫 🔜 🔌 🎻 📚. + +!!! tip + 👀 👈 🔢 💲 💪 🕳, 🚫 🕎 `None`. + + 👫 💪 📇 (`[]`), `float` `10.5`, ♒. + +### `response_model_include` & `response_model_exclude` + +👆 💪 ⚙ *➡ 🛠 👚‍🎚* 🔢 `response_model_include` & `response_model_exclude`. + +👫 ✊ `set` `str` ⏮ 📛 🔢 🔌 (❎ 🎂) ⚖ 🚫 (✅ 🎂). + +👉 💪 ⚙ ⏩ ⌹ 🚥 👆 ✔ 🕎 1⃣ Pydantic 🏷 & 💚 ❎ 💜 ⚪➡ 🔢. + +!!! tip + ✋ ⚫ 👍 ⚙ 💭 🔛, ⚙ 💗 🎓, ↩ 👫 🔢. + + 👉 ↩ 🎻 🔗 🏗 👆 📱 🗄 (& 🩺) 🔜 1⃣ 🏁 🏷, 🚥 👆 ⚙ `response_model_include` ⚖ `response_model_exclude` 🚫 🔢. + + 👉 ✔ `response_model_by_alias` 👈 👷 ➡. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="31 37" + {!> ../../../docs_src/response_model/tutorial005.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="29 35" + {!> ../../../docs_src/response_model/tutorial005_py310.py!} + ``` + +!!! tip + ❕ `{"name", "description"}` ✍ `set` ⏮ 📚 2⃣ 💲. + + ⚫ 🌓 `set(["name", "description"])`. + +#### ⚙ `list`Ⓜ ↩ `set`Ⓜ + +🚥 👆 💭 ⚙ `set` & ⚙ `list` ⚖ `tuple` ↩, FastAPI 🔜 🗜 ⚫ `set` & ⚫ 🔜 👷 ☑: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="31 37" + {!> ../../../docs_src/response_model/tutorial006.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="29 35" + {!> ../../../docs_src/response_model/tutorial006_py310.py!} + ``` + +## 🌃 + +⚙ *➡ 🛠 👚‍🎚* 🔢 `response_model` 🔬 📚 🏷 & ✎ 🚚 📢 💜 ⛜ 👅. + +⚙ `response_model_exclude_unset` 📚 🕎 💲 🎯 ⚒. diff --git a/docs/em/docs/tutorial/response-status-code.md b/docs/em/docs/tutorial/response-status-code.md new file mode 100644 index 000000000..e5149de7d --- /dev/null +++ b/docs/em/docs/tutorial/response-status-code.md @@ -0,0 +1,89 @@ +# 📚 👔 📟 + +🎏 🌌 👆 💪 ✔ 📚 🏷, 👆 💪 📣 🇺🇞🔍 👔 📟 ⚙ 📚 ⏮ 🔢 `status_code` 🙆 *➡ 🛠*: + +* `@app.get()` +* `@app.post()` +* `@app.put()` +* `@app.delete()` +* ♒. + +```Python hl_lines="6" +{!../../../docs_src/response_status_code/tutorial001.py!} +``` + +!!! note + 👀 👈 `status_code` 🔢 "👚‍🎚" 👩‍🔬 (`get`, `post`, ♒). 🚫 👆 *➡ 🛠 🔢*, 💖 🌐 🔢 & 💪. + +`status_code` 🔢 📚 🔢 ⏮ 🇺🇞🔍 👔 📟. + +!!! info + `status_code` 💪 👐 📚 `IntEnum`, ✅ 🐍 `http.HTTPStatus`. + +⚫ 🔜: + +* 📚 👈 👔 📟 📚. +* 📄 ⚫ ✅ 🗄 🔗 ( & , 👩‍💻 🔢): + + + +!!! note + 📚 📟 (👀 ⏭ 📄) 🎊 👈 📚 🔚 🚫 ✔ 💪. + + FastAPI 💭 👉, & 🔜 🏭 🗄 🩺 👈 🇵🇞 📀 🙅‍♂ 📚 💪. + +## 🔃 🇺🇞🔍 👔 📟 + +!!! note + 🚥 👆 ⏪ 💭 ⚫❔ 🇺🇞🔍 👔 📟, 🚶 ⏭ 📄. + +🇺🇞🔍, 👆 📚 🔢 👔 📟 3⃣ 9⃣ 🍕 📚. + +👫 👔 📟 ✔ 📛 🔗 🀔 👫, ✋ ⚠ 🍕 🔢. + +📏: + +* `100` & 🔛 "ℹ". 👆 🛎 ⚙ 👫 🔗. 📚 ⏮ 👫 👔 📟 🚫🔜 ✔ 💪. +* **`200`** & 🔛 "🏆" 📚. 👫 🕐 👆 🔜 ⚙ 🏆. + * `200` 🔢 👔 📟, ❔ ⛓ 🌐 "👌". + * ➕1⃣ 🖌 🔜 `201`, "✍". ⚫ 🛎 ⚙ ⏮ 🏗 🆕 ⏺ 💜. + * 🎁 💌 `204`, "🙅‍♂ 🎚". 👉 📚 ⚙ 🕐❔ 📀 🙅‍♂ 🎚 📚 👩‍💻, & 📚 🔜 🚫 ✔ 💪. +* **`300`** & 🔛 "❎". 📚 ⏮ 👫 👔 📟 5⃣📆 ⚖ 5⃣📆 🚫 ✔ 💪, 🌖 `304`, "🚫 🔀", ❔ 🔜 🚫 ✔ 1⃣. +* **`400`** & 🔛 "👩‍💻 ❌" 📚. 👫 🥈 🆎 👆 🔜 🎲 ⚙ 🏆. + * 🖌 `404`, "🚫 🔎" 📚. + * 💊 ❌ ⚪➡ 👩‍💻, 👆 💪 ⚙ `400`. +* `500` & 🔛 💜 ❌. 👆 🌖 🙅 ⚙ 👫 🔗. 🕐❔ 🕳 🚶 ❌ 🍕 👆 🈞 📟, ⚖ 💜, ⚫ 🔜 🔁 📚 1⃣ 👫 👔 📟. + +!!! tip + 💭 🌅 🔃 🔠 👔 📟 & ❔ 📟 ⚫❔, ✅ 🏇 🧟 🔃 🇺🇞🔍 👔 📟. + +## ⌹ 💭 📛 + +➡ 👀 ⏮ 🖌 🔄: + +```Python hl_lines="6" +{!../../../docs_src/response_status_code/tutorial001.py!} +``` + +`201` 👔 📟 "✍". + +✋ 👆 🚫 ✔ ✍ ⚫❔ 🔠 👉 📟 ⛓. + +👆 💪 ⚙ 🏪 🔢 ⚪➡ `fastapi.status`. + +```Python hl_lines="1 6" +{!../../../docs_src/response_status_code/tutorial002.py!} +``` + +👫 🏪, 👫 🧑‍🀝‍🧑 🎏 🔢, ✋ 👈 🌌 👆 💪 ⚙ 👚‍🎚 📋 🔎 👫: + + + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette import status`. + + **FastAPI** 🚚 🎏 `starlette.status` `fastapi.status` 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. + +## 🔀 🔢 + +⏪, [🏧 👩‍💻 🊮](../advanced/response-change-status-code.md){.internal-link target=_blank}, 👆 🔜 👀 ❔ 📚 🎏 👔 📟 🌘 🔢 👆 📣 📥. diff --git a/docs/em/docs/tutorial/schema-extra-example.md b/docs/em/docs/tutorial/schema-extra-example.md new file mode 100644 index 000000000..d5bf8810a --- /dev/null +++ b/docs/em/docs/tutorial/schema-extra-example.md @@ -0,0 +1,141 @@ +# 📣 📚 🖌 💜 + +👆 💪 📣 🖌 💜 👆 📱 💪 📚. + +📥 📚 🌌 ⚫. + +## Pydantic `schema_extra` + +👆 💪 📣 `example` Pydantic 🏷 ⚙ `Config` & `schema_extra`, 🔬 Pydantic 🩺: 🔗 🛃: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15-23" + {!> ../../../docs_src/schema_extra_example/tutorial001.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="13-21" + {!> ../../../docs_src/schema_extra_example/tutorial001_py310.py!} + ``` + +👈 ➕ ℹ 🔜 🚮-🔢 **🎻 🔗** 👈 🏷, & ⚫ 🔜 ⚙ 🛠 🩺. + +!!! tip + 👆 💪 ⚙ 🎏 ⚒ ↔ 🎻 🔗 & 🚮 👆 👍 🛃 ➕ ℹ. + + 🖌 👆 💪 ⚙ ⚫ 🚮 🗃 🕞 👩‍💻 🔢, ♒. + +## `Field` 🌖 ❌ + +🕐❔ ⚙ `Field()` ⏮ Pydantic 🏷, 👆 💪 📣 ➕ ℹ **🎻 🔗** 🚶‍♀ 🙆 🎏 ❌ ❌ 🔢. + +👆 💪 ⚙ 👉 🚮 `example` 🔠 🏑: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="4 10-13" + {!> ../../../docs_src/schema_extra_example/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="2 8-11" + {!> ../../../docs_src/schema_extra_example/tutorial002_py310.py!} + ``` + +!!! warning + 🚧 🀯 👈 📚 ➕ ❌ 🚶‍♀ 🏆 🚫 🚮 🙆 🔬, 🕎 ➕ ℹ, 🧟 🎯. + +## `example` & `examples` 🗄 + +🕐❔ ⚙ 🙆: + +* `Path()` +* `Query()` +* `Header()` +* `Cookie()` +* `Body()` +* `Form()` +* `File()` + +👆 💪 📣 💜 `example` ⚖ 👪 `examples` ⏮ 🌖 ℹ 👈 🔜 🚮 **🗄**. + +### `Body` ⏮ `example` + +📥 👥 🚶‍♀ `example` 📊 ⌛ `Body()`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="20-25" + {!> ../../../docs_src/schema_extra_example/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="18-23" + {!> ../../../docs_src/schema_extra_example/tutorial003_py310.py!} + ``` + +### 🖌 🩺 🎚 + +⏮ 🙆 👩‍🔬 🔛 ⚫ 🔜 👀 💖 👉 `/docs`: + + + +### `Body` ⏮ 💗 `examples` + +👐 👁 `example`, 👆 💪 🚶‍♀ `examples` ⚙ `dict` ⏮ **💗 🖌**, 🔠 ⏮ ➕ ℹ 👈 🔜 🚮 **🗄** 💁‍♂. + +🔑 `dict` 🔬 🔠 🖌, & 🔠 💲 ➕1⃣ `dict`. + +🔠 🎯 🖌 `dict` `examples` 💪 🔌: + +* `summary`: 📏 📛 🖌. +* `description`: 📏 📛 👈 💪 🔌 ✍ ✍. +* `value`: 👉 ☑ 🖌 🎊, ✅ `dict`. +* `externalValue`: 🎛 `value`, 📛 ☝ 🖌. 👐 👉 5⃣📆 🚫 🐕‍🊺 📚 🧰 `value`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="21-47" + {!> ../../../docs_src/schema_extra_example/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="19-45" + {!> ../../../docs_src/schema_extra_example/tutorial004_py310.py!} + ``` + +### 🖌 🩺 🎚 + +⏮ `examples` 🚮 `Body()` `/docs` 🔜 👀 💖: + + + +## 📡 ℹ + +!!! warning + 👉 📶 📡 ℹ 🔃 🐩 **🎻 🔗** & **🗄**. + + 🚥 💭 🔛 ⏪ 👷 👆, 👈 💪 🥃, & 👆 🎲 🚫 💪 👉 ℹ, 💭 🆓 🚶 👫. + +🕐❔ 👆 🚮 🖌 🔘 Pydantic 🏷, ⚙ `schema_extra` ⚖ `Field(example="something")` 👈 🖌 🚮 **🎻 🔗** 👈 Pydantic 🏷. + +& 👈 **🎻 🔗** Pydantic 🏷 🔌 **🗄** 👆 🛠, & ‎ ⚫ ⚙ 🩺 🎚. + +**🎻 🔗** 🚫 🀙 ✔ 🏑 `example` 🐩. ⏮ ⏬ 🎻 🔗 🔬 🏑 `examples`, ✋ 🗄 3⃣.0⃣.3⃣ ⚓ 🔛 🗝 ⏬ 🎻 🔗 👈 🚫 ✔ `examples`. + +, 🗄 3⃣.0⃣.3⃣ 🔬 🚮 👍 `example` 🔀 ⏬ **🎻 🔗** ⚫ ⚙, 🎏 🎯 (✋ ⚫ 👁 `example`, 🚫 `examples`), & 👈 ⚫❔ ⚙ 🛠 🩺 🎚 (⚙ 🊁 🎚). + +, 👐 `example` 🚫 🍕 🎻 🔗, ⚫ 🍕 🗄 🛃 ⏬ 🎻 🔗, & 👈 ⚫❔ 🔜 ⚙ 🩺 🎚. + +✋ 🕐❔ 👆 ⚙ `example` ⚖ `examples` ⏮ 🙆 🎏 🚙 (`Query()`, `Body()`, ♒.) 📚 🖌 🚫 🚮 🎻 🔗 👈 🔬 👈 💜 (🚫 🗄 👍 ⏬ 🎻 🔗), 👫 🚮 🔗 *➡ 🛠* 📄 🗄 (🏞 🍕 🗄 👈 ⚙ 🎻 🔗). + +`Path()`, `Query()`, `Header()`, & `Cookie()`, `example` ⚖ `examples` 🚮 🗄 🔑, `Parameter Object` (🔧). + +& `Body()`, `File()`, & `Form()`, `example` ⚖ `examples` 📊 🚮 🗄 🔑, `Request Body Object`, 🏑 `content`, 🔛 `Media Type Object` (🔧). + +🔛 🎏 ✋, 📀 🆕 ⏬ 🗄: **3⃣.1⃣.0⃣**, ⏳ 🚀. ⚫ ⚓ 🔛 ⏪ 🎻 🔗 & 🏆 🛠 ⚪➡ 🗄 🛃 ⏬ 🎻 🔗 ❎, 💱 ⚒ ⚪➡ ⏮ ⏬ 🎻 🔗, 🌐 👫 🀪 🔺 📉. 👐, 🊁 🎚 ⏳ 🚫 🐕‍🊺 🗄 3⃣.1⃣.0⃣,, 🔜, ⚫ 👍 😣 ⚙ 💭 🔛. diff --git a/docs/em/docs/tutorial/security/first-steps.md b/docs/em/docs/tutorial/security/first-steps.md new file mode 100644 index 000000000..6dec6f2c3 --- /dev/null +++ b/docs/em/docs/tutorial/security/first-steps.md @@ -0,0 +1,182 @@ +# 💂‍♂ - 🥇 🔁 + +➡ 🌈 👈 👆 ✔ 👆 **👩‍💻** 🛠 🆔. + +& 👆 ✔ **🕞** ➕1⃣ 🆔 ⚖ 🎏 ➡ 🎏 🆔 (⚖ 📱 🈞). + +& 👆 💚 ✔ 🌌 🕞 🔓 ⏮ 👩‍💻, ⚙ **🆔** & **🔐**. + +👥 💪 ⚙ **Oauth2⃣** 🏗 👈 ⏮ **FastAPI**. + +✋ ➡ 🖊 👆 🕰 👂 🌕 📏 🔧 🔎 👈 🐥 🍖 ℹ 👆 💪. + +➡ ⚙ 🧰 🚚 **FastAPI** 🍵 💂‍♂. + +## ❔ ⚫ 👀 + +➡ 🥇 ⚙ 📟 & 👀 ❔ ⚫ 👷, & ‎ 👥 🔜 👟 🔙 🀔 ⚫❔ 😥. + +## ✍ `main.py` + +📁 🖌 📁 `main.py`: + +```Python +{!../../../docs_src/security/tutorial001.py!} +``` + +## 🏃 ⚫ + +!!! info + 🥇 ❎ `python-multipart`. + + 🀶 Ⓜ. `pip install python-multipart`. + + 👉 ↩ **Oauth2⃣** ⚙ "📚 📊" 📚 `username` & `password`. + +🏃 🖌 ⏮: + +
+ +```console +$ uvicorn main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +## ✅ ⚫ + +🚶 🎓 🩺: http://127.0.0.1:8000/docs. + +👆 🔜 👀 🕳 💖 👉: + + + +!!! check "✔ 🔌 ❗" + 👆 ⏪ ✔ ✹ 🆕 "✔" 🔌. + + & 👆 *➡ 🛠* ✔ 🐥 🔒 🔝-▶ ↩ 👈 👆 💪 🖊. + +& 🚥 👆 🖊 ⚫, 👆 ✔ 🐥 ✔ 📚 🆎 `username` & `password` (& 🎏 📊 🏑): + + + +!!! note + ⚫ 🚫 🀔 ⚫❔ 👆 🆎 📚, ⚫ 🏆 🚫 👷. ✋ 👥 🔜 🀚 📀. + +👉 ↗ 🚫 🕞 🏁 👩‍💻, ✋ ⚫ 👑 🏧 🧰 📄 🖥 🌐 👆 🛠. + +⚫ 💪 ⚙ 🕞 🏉 (👈 💪 👆). + +⚫ 💪 ⚙ 🥉 🥳 🈞 & ⚙. + +& ⚫ 💪 ⚙ 👆, ℹ, ✅ & 💯 🎏 🈞. + +## `password` 💧 + +🔜 ➡ 🚶 🔙 👄 & 🀔 ⚫❔ 🌐 👈. + +`password` "💧" 1⃣ 🌌 ("💧") 🔬 Oauth2⃣, 🍵 💂‍♂ & 🀝. + +Oauth2⃣ 🔧 👈 👩‍💻 ⚖ 🛠 💪 🔬 💜 👈 🔓 👩‍💻. + +✋ 👉 💌, 🎏 **FastAPI** 🈞 🔜 🍵 🛠 & 🀝. + +, ➡ 📄 ⚫ ⚪➡ 👈 📉 ☝ 🎑: + +* 👩‍💻 🆎 `username` & `password` 🕞, & 🎯 `Enter`. +* 🕞 (🏃‍♂ 👩‍💻 🖥) 📚 👈 `username` & `password` 🎯 📛 👆 🛠 (📣 ⏮ `tokenUrl="token"`). +* 🛠 ✅ 👈 `username` & `password`, & 📚 ⏮ "🀝" (👥 🚫 🛠 🙆 👉). + * "🀝" 🎻 ⏮ 🎚 👈 👥 💪 ⚙ ⏪ ✔ 👉 👩‍💻. + * 🛎, 🀝 ⚒ 🕛 ⏮ 🕰. + * , 👩‍💻 🔜 ✔ 🕹 🔄 ☝ ⏪. + * & 🚥 🀝 📎, ⚠ 🌘. ⚫ 🚫 💖 🧲 🔑 👈 🔜 👷 ♟ (🏆 💌). +* 🕞 🏪 👈 🀝 🍕 👱. +* 👩‍💻 🖊 🕞 🚶 ➕1⃣ 📄 🕞 🕞 📱. +* 🕞 💪 ☕ 🌅 💜 ⚪➡ 🛠. + * ✋ ⚫ 💪 🀝 👈 🎯 🔗. + * , 🔓 ⏮ 👆 🛠, ⚫ 📚 🎚 `Authorization` ⏮ 💲 `Bearer ` ➕ 🀝. + * 🚥 🀝 🔌 `foobar`, 🎚 `Authorization` 🎚 🔜: `Bearer foobar`. + +## **FastAPI**'Ⓜ `OAuth2PasswordBearer` + +**FastAPI** 🚚 📚 🧰, 🎏 🎚 ⚛, 🛠 👫 💂‍♂ ⚒. + +👉 🖌 👥 🔜 ⚙ **Oauth2⃣**, ⏮ **🔐** 💧, ⚙ **📚** 🀝. 👥 👈 ⚙ `OAuth2PasswordBearer` 🎓. + +!!! info + "📚" 🀝 🚫 🕎 🎛. + + ✋ ⚫ 🏆 1⃣ 👆 ⚙ 💌. + + & ⚫ 💪 🏆 🏆 ⚙ 💌, 🚥 👆 Oauth2⃣ 🕎 & 💭 ⚫❔ ⚫❔ 📀 ➕1⃣ 🎛 👈 ♣ 👻 👆 💪. + + 👈 💌, **FastAPI** 🚚 👆 ⏮ 🧰 🏗 ⚫. + +🕐❔ 👥 ✍ 👐 `OAuth2PasswordBearer` 🎓 👥 🚶‍♀ `tokenUrl` 🔢. 👉 🔢 🔌 📛 👈 👩‍💻 (🕞 🏃 👩‍💻 🖥) 🔜 ⚙ 📚 `username` & `password` ✔ 🀚 🀝. + +```Python hl_lines="6" +{!../../../docs_src/security/tutorial001.py!} +``` + +!!! tip + 📥 `tokenUrl="token"` 🔗 ⚖ 📛 `token` 👈 👥 🚫 ✍. ⚫ ⚖ 📛, ⚫ 🌓 `./token`. + + ↩ 👥 ⚙ ⚖ 📛, 🚥 👆 🛠 🔎 `https://example.com/`, ‎ ⚫ 🔜 🔗 `https://example.com/token`. ✋ 🚥 👆 🛠 🔎 `https://example.com/api/v1/`, ‎ ⚫ 🔜 🔗 `https://example.com/api/v1/token`. + + ⚙ ⚖ 📛 ⚠ ⚒ 💭 👆 🈞 🚧 👷 🏧 ⚙ 💌 💖 [⛅ 🗳](../../advanced/behind-a-proxy.md){.internal-link target=_blank}. + +👉 🔢 🚫 ✍ 👈 🔗 / *➡ 🛠*, ✋ 📣 👈 📛 `/token` 🔜 1⃣ 👈 👩‍💻 🔜 ⚙ 🀚 🀝. 👈 ℹ ⚙ 🗄, & ‎ 🎓 🛠 🧟 ⚙. + +👥 🔜 🔜 ✍ ☑ ➡ 🛠. + +!!! info + 🚥 👆 📶 ⚠ "✍" 👆 💪 👎 👗 🔢 📛 `tokenUrl` ↩ `token_url`. + + 👈 ↩ ⚫ ⚙ 🎏 📛 🗄 🔌. 👈 🚥 👆 💪 🔬 🌅 🔃 🙆 👫 💂‍♂ ⚖ 👆 💪 📁 & 📋 ⚫ 🔎 🌖 ℹ 🔃 ⚫. + +`oauth2_scheme` 🔢 👐 `OAuth2PasswordBearer`, ✋ ⚫ "🇧🇲". + +⚫ 💪 🀙: + +```Python +oauth2_scheme(some, parameters) +``` + +, ⚫ 💪 ⚙ ⏮ `Depends`. + +### ⚙ ⚫ + +🔜 👆 💪 🚶‍♀ 👈 `oauth2_scheme` 🔗 ⏮ `Depends`. + +```Python hl_lines="10" +{!../../../docs_src/security/tutorial001.py!} +``` + +👉 🔗 🔜 🚚 `str` 👈 🛠 🔢 `token` *➡ 🛠 🔢*. + +**FastAPI** 🔜 💭 👈 ⚫ 💪 ⚙ 👉 🔗 🔬 "💂‍♂ ⚖" 🗄 🔗 (& 🏧 🛠 🩺). + +!!! info "📡 ℹ" + **FastAPI** 🔜 💭 👈 ⚫ 💪 ⚙ 🎓 `OAuth2PasswordBearer` (📣 🔗) 🔬 💂‍♂ ⚖ 🗄 ↩ ⚫ 😖 ⚪➡ `fastapi.security.oauth2.OAuth2`, ❔ 🔄 😖 ⚪➡ `fastapi.security.base.SecurityBase`. + + 🌐 💂‍♂ 🚙 👈 🛠 ⏮ 🗄 (& 🏧 🛠 🩺) 😖 ⚪➡ `SecurityBase`, 👈 ❔ **FastAPI** 💪 💭 ❔ 🛠 👫 🗄. + +## ⚫❔ ⚫ 🔚 + +⚫ 🔜 🚶 & 👀 📚 👈 `Authorization` 🎚, ✅ 🚥 💲 `Bearer ` ➕ 🀝, & 🔜 📚 🀝 `str`. + +🚥 ⚫ 🚫 👀 `Authorization` 🎚, ⚖ 💲 🚫 ✔ `Bearer ` 🀝, ⚫ 🔜 📚 ⏮ 4⃣0⃣1⃣ 👔 📟 ❌ (`UNAUTHORIZED`) 🔗. + +👆 🚫 ✔ ✅ 🚥 🀝 🔀 📚 ❌. 👆 💪 💭 👈 🚥 👆 🔢 🛠, ⚫ 🔜 ✔ `str` 👈 🀝. + +👆 💪 🔄 ⚫ ⏪ 🎓 🩺: + + + +👥 🚫 ✔ 🔬 🀝, ✋ 👈 ▶ ⏪. + +## 🌃 + +, 3⃣ ⚖ 4⃣ ➕ ⏞, 👆 ⏪ ✔ 🐒 📚 💂‍♂. diff --git a/docs/em/docs/tutorial/security/get-current-user.md b/docs/em/docs/tutorial/security/get-current-user.md new file mode 100644 index 000000000..455cb4f46 --- /dev/null +++ b/docs/em/docs/tutorial/security/get-current-user.md @@ -0,0 +1,151 @@ +# 🀚 ⏮ 👩‍💻 + +⏮ 📃 💂‍♂ ⚙ (❔ 🧢 🔛 🔗 💉 ⚙) 🀝 *➡ 🛠 🔢* `token` `str`: + +```Python hl_lines="10" +{!../../../docs_src/security/tutorial001.py!} +``` + +✋ 👈 🚫 👈 ⚠. + +➡ ⚒ ⚫ 🀝 👥 ⏮ 👩‍💻. + +## ✍ 👩‍💻 🏷 + +🥇, ➡ ✍ Pydantic 👩‍💻 🏷. + +🎏 🌌 👥 ⚙ Pydantic 📣 💪, 👥 💪 ⚙ ⚫ 🙆 🙆: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="5 12-16" + {!> ../../../docs_src/security/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="3 10-14" + {!> ../../../docs_src/security/tutorial002_py310.py!} + ``` + +## ✍ `get_current_user` 🔗 + +➡ ✍ 🔗 `get_current_user`. + +💭 👈 🔗 💪 ✔ 🎧-🔗 ❓ + +`get_current_user` 🔜 ✔ 🔗 ⏮ 🎏 `oauth2_scheme` 👥 ✍ ⏭. + +🎏 👥 🔚 ⏭ *➡ 🛠* 🔗, 👆 🆕 🔗 `get_current_user` 🔜 📚 `token` `str` ⚪➡ 🎧-🔗 `oauth2_scheme`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="25" + {!> ../../../docs_src/security/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="23" + {!> ../../../docs_src/security/tutorial002_py310.py!} + ``` + +## 🀚 👩‍💻 + +`get_current_user` 🔜 ⚙ (❌) 🚙 🔢 👥 ✍, 👈 ✊ 🀝 `str` & 📚 👆 Pydantic `User` 🏷: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="19-22 26-27" + {!> ../../../docs_src/security/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="17-20 24-25" + {!> ../../../docs_src/security/tutorial002_py310.py!} + ``` + +## 💉 ⏮ 👩‍💻 + +🔜 👥 💪 ⚙ 🎏 `Depends` ⏮ 👆 `get_current_user` *➡ 🛠*: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="31" + {!> ../../../docs_src/security/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="29" + {!> ../../../docs_src/security/tutorial002_py310.py!} + ``` + +👀 👈 👥 📣 🆎 `current_user` Pydantic 🏷 `User`. + +👉 🔜 ℹ 🇺🇲 🔘 🔢 ⏮ 🌐 🛠 & 🆎 ✅. + +!!! tip + 👆 5⃣📆 💭 👈 📚 💪 📣 ⏮ Pydantic 🏷. + + 📥 **FastAPI** 🏆 🚫 🀚 😚 ↩ 👆 ⚙ `Depends`. + +!!! check + 🌌 👉 🔗 ⚙ 🏗 ✔ 👥 ✔ 🎏 🔗 (🎏 "☑") 👈 🌐 📚 `User` 🏷. + + 👥 🚫 🚫 ✔ 🕎 1⃣ 🔗 👈 💪 📚 👈 🆎 💜. + +## 🎏 🏷 + +👆 💪 🔜 🀚 ⏮ 👩‍💻 🔗 *➡ 🛠 🔢* & 🙅 ⏮ 💂‍♂ 🛠 **🔗 💉** 🎚, ⚙ `Depends`. + +& 👆 💪 ⚙ 🙆 🏷 ⚖ 💜 💂‍♂ 📄 (👉 💌, Pydantic 🏷 `User`). + +✋ 👆 🚫 🚫 ⚙ 🎯 💜 🏷, 🎓 ⚖ 🆎. + +👆 💚 ✔ `id` & `email` & 🚫 ✔ 🙆 `username` 👆 🏷 ❓ 💭. 👆 💪 ⚙ 👉 🎏 🧰. + +👆 💚 ✔ `str`❓ ⚖ `dict`❓ ⚖ 💜 🎓 🏷 👐 🔗 ❓ ⚫ 🌐 👷 🎏 🌌. + +👆 🀙 🚫 ✔ 👩‍💻 👈 🕹 👆 🈞 ✋ 🀖, 🀖, ⚖ 🎏 ⚙, 👈 ✔ 🔐 🀝 ❓ 🔄, ⚫ 🌐 👷 🎏. + +⚙ 🙆 😇 🏷, 🙆 😇 🎓, 🙆 😇 💜 👈 👆 💪 👆 🈞. **FastAPI** ✔ 👆 📔 ⏮ 🔗 💉 ⚙. + +## 📟 📐 + +👉 🖌 5⃣📆 😑 🔁. ✔ 🀯 👈 👥 🌀 💂‍♂, 📊 🏷, 🚙 🔢 & *➡ 🛠* 🎏 📁. + +✋ 📥 🔑 ☝. + +💂‍♂ & 🔗 💉 💩 ✍ 🕐. + +& 👆 💪 ⚒ ⚫ 🏗 👆 💚. & , ✔ ⚫ ✍ 🕎 🕐, 👁 🥉. ⏮ 🌐 💪. + +✋ 👆 💪 ✔ 💯 🔗 (*➡ 🛠*) ⚙ 🎏 💂‍♂ ⚙. + +& 🌐 👫 (⚖ 🙆 ↔ 👫 👈 👆 💚) 💪 ✊ 📈 🏀-⚙ 👫 🔗 ⚖ 🙆 🎏 🔗 👆 ✍. + +& 🌐 👉 💯 *➡ 🛠* 💪 🀪 3⃣ ⏞: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="30-32" + {!> ../../../docs_src/security/tutorial002.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="28-30" + {!> ../../../docs_src/security/tutorial002_py310.py!} + ``` + +## 🌃 + +👆 💪 🔜 🀚 ⏮ 👩‍💻 🔗 👆 *➡ 🛠 🔢*. + +👥 ⏪ 😬 📀. + +👥 💪 🚮 *➡ 🛠* 👩‍💻/👩‍💻 🀙 📚 `username` & `password`. + +👈 👟 ⏭. diff --git a/docs/em/docs/tutorial/security/index.md b/docs/em/docs/tutorial/security/index.md new file mode 100644 index 000000000..5b507af3e --- /dev/null +++ b/docs/em/docs/tutorial/security/index.md @@ -0,0 +1,101 @@ +# 💂‍♂ 🎶 + +📀 📚 🌌 🍵 💂‍♂, 🀝 & ✔. + +& ⚫ 🛎 🏗 & "⚠" ❔. + +📚 🛠 & ⚙ 🍵 💂‍♂ & 🀝 ✊ 🊏 💞 🎯 & 📟 (📚 💌 ⚫ 💪 5⃣0⃣ 💯 ⚖ 🌅 🌐 📟 ✍). + +**FastAPI** 🚚 📚 🧰 ℹ 👆 🙅 ⏮ **💂‍♂** 💪, 📉, 🐩 🌌, 🍵 ✔ 🔬 & 💡 🌐 💂‍♂ 🔧. + +✋ 🥇, ➡ ✅ 🀪 🔧. + +## 🏃 ❓ + +🚥 👆 🚫 💅 🔃 🙆 👉 ⚖ & 👆 💪 🚮 💂‍♂ ⏮ 🀝 ⚓ 🔛 🆔 & 🔐 *▶ 🔜*, 🚶 ⏭ 📃. + +## Oauth2⃣ + +Oauth2⃣ 🔧 👈 🔬 📚 🌌 🍵 🀝 & ✔. + +⚫ 🔬 🔧 & 📔 📚 🏗 ⚙ 💌. + +⚫ 🔌 🌌 🔓 ⚙ "🥉 🥳". + +👈 ⚫❔ 🌐 ⚙ ⏮ "💳 ⏮ 👱📔, 🇺🇞🔍, 👱📔, 📂" ⚙ 🔘. + +### ✳ 1⃣ + +📀 ✳ 1⃣, ❔ 📶 🎏 ⚪➡ Oauth2⃣, & 🌖 🏗, ⚫ 🔌 🔗 🔧 🔛 ❔ 🗜 📻. + +⚫ 🚫 📶 🌟 ⚖ ⚙ 🛎. + +Oauth2⃣ 🚫 ✔ ❔ 🗜 📻, ⚫ ⌛ 👆 ✔ 👆 🈞 🍊 ⏮ 🇺🇞🔍. + +!!! tip + 📄 🔃 **🛠** 👆 🔜 👀 ❔ ⚒ 🆙 🇺🇞🔍 🆓, ⚙ Traefik & ➡ 🗜. + + +## 👩‍💻 🔗 + +👩‍💻 🔗 ➕1⃣ 🔧, 🧢 🔛 **Oauth2⃣**. + +⚫ ↔ Oauth2⃣ ✔ 👜 👈 📶 🌌 Oauth2⃣, 🔄 ⚒ ⚫ 🌅 🛠. + +🖌, 🇺🇞🔍 💳 ⚙ 👩‍💻 🔗 (❔ 🔘 ⚙ Oauth2⃣). + +✋ 👱📔 💳 🚫 🐕‍🊺 👩‍💻 🔗. ⚫ ✔ 🚮 👍 🍛 Oauth2⃣. + +### 👩‍💻 (🚫 "👩‍💻 🔗") + +📀 "👩‍💻" 🔧. 👈 🔄 ❎ 🎏 👜 **👩‍💻 🔗**, ✋ 🚫 ⚓ 🔛 Oauth2⃣. + +, ⚫ 🏁 🌖 ⚙. + +⚫ 🚫 📶 🌟 ⚖ ⚙ 🛎. + +## 🗄 + +🗄 (⏪ 💭 🊁) 📂 🔧 🏗 🔗 (🔜 🍕 💟 🏛). + +**FastAPI** ⚓ 🔛 **🗄**. + +👈 ⚫❔ ⚒ ⚫ 💪 ✔ 💗 🏧 🎓 🧟 🔢, 📟 ⚡, ♒. + +🗄 ✔ 🌌 🔬 💗 💂‍♂ "⚖". + +⚙ 👫, 👆 💪 ✊ 📈 🌐 👫 🐩-⚓ 🧰, 🔌 👉 🎓 🧟 ⚙. + +🗄 🔬 📄 💂‍♂ ⚖: + +* `apiKey`: 🈞 🎯 🔑 👈 💪 👟 ⚪➡: + * 🔢 🔢. + * 🎚. + * 🍪. +* `http`: 🐩 🇺🇞🔍 🀝 ⚙, 🔌: + * `bearer`: 🎚 `Authorization` ⏮ 💲 `Bearer ` ➕ 🀝. 👉 😖 ⚪➡ Oauth2⃣. + * 🇺🇞🔍 🔰 🀝. + * 🇺🇞🔍 📰, ♒. +* `oauth2`: 🌐 Oauth2⃣ 🌌 🍵 💂‍♂ (🀙 "💧"). + * 📚 👫 💧 ☑ 🏗 ✳ 2⃣.0⃣ 🀝 🐕‍🊺 (💖 🇺🇞🔍, 👱📔, 👱📔, 📂, ♒): + * `implicit` + * `clientCredentials` + * `authorizationCode` + * ✋ 📀 1⃣ 🎯 "💧" 👈 💪 👌 ⚙ 🚚 🀝 🎏 🈞 🔗: + * `password`: ⏭ 📃 🔜 📔 🖌 👉. +* `openIdConnect`: ✔ 🌌 🔬 ❔ 🔎 Oauth2⃣ 🀝 📊 🔁. + * 👉 🏧 🔍 ⚫❔ 🔬 👩‍💻 🔗 🔧. + + +!!! tip + 🛠 🎏 🀝/✔ 🐕‍🊺 💖 🇺🇞🔍, 👱📔, 👱📔, 📂, ♒. 💪 & 📶 ⏩. + + 🌅 🏗 ⚠ 🏗 🀝/✔ 🐕‍🊺 💖 👈, ✋ **FastAPI** 🀝 👆 🧰 ⚫ 💪, ⏪ 🔚 🏋 🏋‍♂ 👆. + +## **FastAPI** 🚙 + +FastAPI 🚚 📚 🧰 🔠 👉 💂‍♂ ⚖ `fastapi.security` 🕹 👈 📉 ⚙ 👉 💂‍♂ 🛠. + +⏭ 📃 👆 🔜 👀 ❔ 🚮 💂‍♂ 👆 🛠 ⚙ 📚 🧰 🚚 **FastAPI**. + +& 👆 🔜 👀 ❔ ⚫ 🀚 🔁 🛠 🔘 🎓 🧟 ⚙. diff --git a/docs/em/docs/tutorial/security/oauth2-jwt.md b/docs/em/docs/tutorial/security/oauth2-jwt.md new file mode 100644 index 000000000..bc207c566 --- /dev/null +++ b/docs/em/docs/tutorial/security/oauth2-jwt.md @@ -0,0 +1,297 @@ +# Oauth2⃣ ⏮ 🔐 (& 🔁), 📚 ⏮ 🥙 🀝 + +🔜 👈 👥 ✔ 🌐 💂‍♂ 💧, ➡ ⚒ 🈞 🀙 🔐, ⚙ 🥙 🀝 & 🔐 🔐 🔁. + +👉 📟 🕳 👆 💪 🀙 ⚙ 👆 🈞, 🖊 🔐 #⃣ 👆 💜, ♒. + +👥 🔜 ▶ ⚪➡ 🌐❔ 👥 ◀ ⏮ 📃 & 📈 ⚫. + +## 🔃 🥙 + +🥙 ⛓ "🎻 🕞 🀝". + +⚫ 🐩 🚫 🎻 🎚 📏 💧 🎻 🍵 🚀. ⚫ 👀 💖 👉: + +``` +eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c +``` + +⚫ 🚫 🗜,, 🙆 💪 🛡 ℹ ⚪➡ 🎚. + +✋ ⚫ 🛑. , 🕐❔ 👆 📚 🀝 👈 👆 ♹, 👆 💪 ✔ 👈 👆 🀙 ♹ ⚫. + +👈 🌌, 👆 💪 ✍ 🀝 ⏮ 👔, ➡ 💬, 1⃣ 🗓. & ‎ 🕐❔ 👩‍💻 👟 🔙 ⏭ 📆 ⏮ 🀝, 👆 💭 👈 👩‍💻 🕹 👆 ⚙. + +⏮ 🗓, 🀝 🔜 🕛 & 👩‍💻 🔜 🚫 ✔ & 🔜 ✔ 🛑 🔄 🀚 🆕 🀝. & 🚥 👩‍💻 (⚖ 🥉 🥳) 🔄 🔀 🀝 🔀 👔, 👆 🔜 💪 🔎 ⚫, ↩ 💳 🔜 🚫 🏏. + +🚥 👆 💚 🀟 ⏮ 🥙 🀝 & 👀 ❔ 👫 👷, ✅ https://jwt.io. + +## ❎ `python-jose` + +👥 💪 ❎ `python-jose` 🏗 & ✔ 🥙 🀝 🐍: + +
+ +```console +$ pip install "python-jose[cryptography]" + +---> 100% +``` + +
+ +🐍-🇩🇬 🚚 🔐 👩‍💻 ➕. + +📥 👥 ⚙ 👍 1⃣: )/⚛. + +!!! tip + 👉 🔰 ⏪ ⚙ PyJWT. + + ✋ ⚫ ℹ ⚙ 🐍-🇩🇬 ↩ ⚫ 🚚 🌐 ⚒ ⚪➡ PyJWT ➕ ➕ 👈 👆 💪 💪 ⏪ 🕐❔ 🏗 🛠 ⏮ 🎏 🧰. + +## 🔐 🔁 + +"🔁" ⛓ 🏭 🎚 (🔐 👉 💌) 🔘 🔁 🔢 (🎻) 👈 👀 💖 🙃. + +🕐❔ 👆 🚶‍♀ ⚫❔ 🎏 🎚 (⚫❔ 🎏 🔐) 👆 🀚 ⚫❔ 🎏 🙃. + +✋ 👆 🚫🔜 🗜 ⚪➡ 🙃 🔙 🔐. + +### ⚫❔ ⚙ 🔐 🔁 + +🚥 👆 💜 📎, 🧙‍♀ 🏆 🚫 ✔ 👆 👩‍💻' 🔢 🔐, 🕎#⃣. + +, 🧙‍♀ 🏆 🚫 💪 🔄 ⚙ 👈 🔐 ➕1⃣ ⚙ (📚 👩‍💻 ⚙ 🎏 🔐 🌐, 👉 🔜 ⚠). + +## ❎ `passlib` + +🇞🇲 👑 🐍 📊 🍵 🔐#⃣. + +⚫ 🐕‍🊺 📚 🔐 🔁 📊 & 🚙 👷 ⏮ 👫. + +👍 📊 "🐡". + +, ❎ 🇞🇲 ⏮ 🐡: + +
+ +```console +$ pip install "passlib[bcrypt]" + +---> 100% +``` + +
+ +!!! tip + ⏮ `passlib`, 👆 💪 🔗 ⚫ 💪 ✍ 🔐 ✍ **✳**, **🏺** 💂‍♂ 🔌-⚖ 📚 🎏. + + , 👆 🔜 💪, 🖌, 💰 🎏 📊 ⚪➡ ✳ 🈞 💜 ⏮ FastAPI 🈞. ⚖ 📉 ↔ ✳ 🈞 ⚙ 🎏 💜. + + & 👆 👩‍💻 🔜 💪 💳 ⚪➡ 👆 ✳ 📱 ⚖ ⚪➡ 👆 **FastAPI** 📱, 🎏 🕰. + +## #⃣ & ✔ 🔐 + +🗄 🧰 👥 💪 ⚪➡ `passlib`. + +✍ 🇞🇲 "🔑". 👉 ⚫❔ 🔜 ⚙ #⃣ & ✔ 🔐. + +!!! tip + 🇞🇲 🔑 ✔ 🛠 ⚙ 🎏 🔁 📊, 🔌 😢 🗝 🕐 🕎 ✔ ✔ 👫, ♒. + + 🖌, 👆 💪 ⚙ ⚫ ✍ & ✔ 🔐 🏗 ➕1⃣ ⚙ (💖 ✳) ✋ #⃣ 🙆 🆕 🔐 ⏮ 🎏 📊 💖 🐡. + + & 🔗 ⏮ 🌐 👫 🎏 🕰. + +✍ 🚙 🔢 #⃣ 🔐 👟 ⚪➡ 👩‍💻. + +& ➕1⃣ 🚙 ✔ 🚥 📚 🔐 🏏 #⃣ 🏪. + +& ➕1⃣ 1⃣ 🔓 & 📚 👩‍💻. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="7 48 55-56 59-60 69-75" + {!> ../../../docs_src/security/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="6 47 54-55 58-59 68-74" + {!> ../../../docs_src/security/tutorial004_py310.py!} + ``` + +!!! note + 🚥 👆 ✅ 🆕 (❌) 💜 `fake_users_db`, 👆 🔜 👀 ❔ #⃣ 🔐 👀 💖 🔜: `"$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW"`. + +## 🍵 🥙 🀝 + +🗄 🕹 ❎. + +✍ 🎲 ㊙ 🔑 👈 🔜 ⚙ 🛑 🥙 🀝. + +🏗 🔐 🎲 ㊙ 🔑 ⚙ 📋: + +
+ +```console +$ openssl rand -hex 32 + +09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7 +``` + +
+ +& 📁 🔢 🔢 `SECRET_KEY` (🚫 ⚙ 1⃣ 🖌). + +✍ 🔢 `ALGORITHM` ⏮ 📊 ⚙ 🛑 🥙 🀝 & ⚒ ⚫ `"HS256"`. + +✍ 🔢 👔 🀝. + +🔬 Pydantic 🏷 👈 🔜 ⚙ 🀝 🔗 📚. + +✍ 🚙 🔢 🏗 🆕 🔐 🀝. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="6 12-14 28-30 78-86" + {!> ../../../docs_src/security/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="5 11-13 27-29 77-85" + {!> ../../../docs_src/security/tutorial004_py310.py!} + ``` + +## ℹ 🔗 + +ℹ `get_current_user` 📚 🎏 🀝 ⏭, ✋ 👉 🕰, ⚙ 🥙 🀝. + +🔣 📚 🀝, ✔ ⚫, & 📚 ⏮ 👩‍💻. + +🚥 🀝 ❌, 📚 🇺🇞🔍 ❌ ▶ ↖. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="89-106" + {!> ../../../docs_src/security/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="88-105" + {!> ../../../docs_src/security/tutorial004_py310.py!} + ``` + +## ℹ `/token` *➡ 🛠* + +✍ `timedelta` ⏮ 👔 🕰 🀝. + +✍ 🎰 🥙 🔐 🀝 & 📚 ⚫. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="115-128" + {!> ../../../docs_src/security/tutorial004.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="114-127" + {!> ../../../docs_src/security/tutorial004_py310.py!} + ``` + +### 📡 ℹ 🔃 🥙 "📄" `sub` + +🥙 🔧 💬 👈 📀 🔑 `sub`, ⏮ 📄 🀝. + +⚫ 📊 ⚙ ⚫, ✋ 👈 🌐❔ 👆 🔜 🚮 👩‍💻 🆔, 👥 ⚙ ⚫ 📥. + +🥙 5⃣📆 ⚙ 🎏 👜 ↖ ⚪➡ ⚖ 👩‍💻 & 🀝 👫 🎭 🛠 🔗 🔛 👆 🛠. + +🖌, 👆 💪 🔬 "🚘" ⚖ "📰 🏀". + +‎ 👆 💪 🚮 ✔ 🔃 👈 👚‍💌, 💖 "💟" (🚘) ⚖ "✍" (📰). + +& ‎, 👆 💪 🀝 👈 🥙 🀝 👩‍💻 (⚖ 🀖), & 👫 💪 ⚙ ⚫ 🎭 👈 🎯 (💟 🚘, ⚖ ✍ 📰 🏀) 🍵 💆‍♂ ✔ 🏧, ⏮ 🥙 🀝 👆 🛠 🏗 👈. + +⚙ 👫 💭, 🥙 💪 ⚙ 🌌 🌖 🀓 😐. + +📚 💌, 📚 👈 👚‍💌 💪 ✔ 🎏 🆔, ➡ 💬 `foo` (👩‍💻 `foo`, 🚘 `foo`, & 📰 🏀 `foo`). + +, ❎ 🆔 💥, 🕐❔ 🏗 🥙 🀝 👩‍💻, 👆 💪 🔡 💲 `sub` 🔑, ✅ ⏮ `username:`. , 👉 🖌, 💲 `sub` 💪 ✔: `username:johndoe`. + +⚠ 👜 ✔ 🀯 👈 `sub` 🔑 🔜 ✔ 😍 🆔 🀭 🎂 🈞, & ⚫ 🔜 🎻. + +## ✅ ⚫ + +🏃 💜 & 🚶 🩺: http://127.0.0.1:8000/docs. + +👆 🔜 👀 👩‍💻 🔢 💖: + + + +✔ 🈞 🎏 🌌 ⏭. + +⚙ 🎓: + +🆔: `johndoe` +🔐: `secret` + +!!! check + 👀 👈 🕳 📟 🔢 🔐 "`secret`", 👥 🕎 ✔ #⃣ ⏬. + + + +🀙 🔗 `/users/me/`, 👆 🔜 🀚 📚: + +```JSON +{ + "username": "johndoe", + "email": "johndoe@example.com", + "full_name": "John Doe", + "disabled": false +} +``` + + + +🚥 👆 📂 👩‍💻 🧰, 👆 💪 👀 ❔ 📊 📚 🕎 🔌 🀝, 🔐 🕎 📚 🥇 📚 🔓 👩‍💻 & 🀚 👈 🔐 🀝, ✋ 🚫 ⏮: + + + +!!! note + 👀 🎚 `Authorization`, ⏮ 💲 👈 ▶ ⏮ `Bearer `. + +## 🏧 ⚙ ⏮ `scopes` + +Oauth2⃣ ✔ 🔑 "↔". + +👆 💪 ⚙ 👫 🚮 🎯 ⚒ ✔ 🥙 🀝. + +‎ 👆 💪 🀝 👉 🀝 👩‍💻 🔗 ⚖ 🥉 🥳, 🔗 ⏮ 👆 🛠 ⏮ ⚒ 🚫. + +👆 💪 💡 ❔ ⚙ 👫 & ❔ 👫 🛠 🔘 **FastAPI** ⏪ **🏧 👩‍💻 🊮**. + +## 🌃 + +⏮ ⚫❔ 👆 ✔ 👀 🆙 🔜, 👆 💪 ⚒ 🆙 🔐 **FastAPI** 🈞 ⚙ 🐩 💖 Oauth2⃣ & 🥙. + +🌖 🙆 🛠 🚚 💂‍♂ ▶ 👍 🏗 📄 🔜. + +📚 📊 👈 📉 ⚫ 📚 ✔ ⚒ 📚 ⚠ ⏮ 💜 🏷, 💜, & 💪 ⚒. & 👉 📊 👈 📉 👜 💁‍♂ 🌅 🀙 ✔ 💂‍♂ ⚠ 🔘. + +--- + +**FastAPI** 🚫 ⚒ 🙆 ⚠ ⏮ 🙆 💜, 💜 🏷 ⚖ 🧰. + +⚫ 🀝 👆 🌐 💪 ⚒ 🕐 👈 👖 👆 🏗 🏆. + +& 👆 💪 ⚙ 🔗 📚 👍 🚧 & 🛎 ⚙ 📊 💖 `passlib` & `python-jose`, ↩ **FastAPI** 🚫 🚚 🙆 🏗 🛠 🛠 🔢 📊. + +✋ ⚫ 🚚 👆 🧰 📉 🛠 🌅 💪 🍵 🎯 💪, ⚖, ⚖ 💂‍♂. + +& 👆 💪 ⚙ & 🛠 🔐, 🐩 🛠, 💖 Oauth2⃣ 📶 🙅 🌌. + +👆 💪 💡 🌅 **🏧 👩‍💻 🊮** 🔃 ❔ ⚙ Oauth2⃣ "↔", 🌖 👌-🧜 ✔ ⚙, 📄 👫 🎏 🐩. Oauth2⃣ ⏮ ↔ 🛠 ⚙ 📚 🊏 🀝 🐕‍🊺, 💖 👱📔, 🇺🇞🔍, 📂, 🀞‍♂, 👱📔, ♒. ✔ 🥉 🥳 🈞 🔗 ⏮ 👫 🔗 🔛 👚‍💌 👫 👩‍💻. diff --git a/docs/em/docs/tutorial/security/simple-oauth2.md b/docs/em/docs/tutorial/security/simple-oauth2.md new file mode 100644 index 000000000..765d94039 --- /dev/null +++ b/docs/em/docs/tutorial/security/simple-oauth2.md @@ -0,0 +1,315 @@ +# 🙅 Oauth2⃣ ⏮ 🔐 & 📚 + +🔜 ➡ 🏗 ⚪➡ ⏮ 📃 & 🚮 ❌ 🍕 ✔ 🏁 💂‍♂ 💧. + +## 🀚 `username` & `password` + +👥 🔜 ⚙ **FastAPI** 💂‍♂ 🚙 🀚 `username` & `password`. + +Oauth2⃣ ✔ 👈 🕐❔ ⚙ "🔐 💧" (👈 👥 ⚙) 👩‍💻/👩‍💻 🔜 📚 `username` & `password` 🏑 📚 💜. + +& 🔌 💬 👈 🏑 ✔ 🌟 💖 👈. `user-name` ⚖ `email` 🚫🔜 👷. + +✋ 🚫 😟, 👆 💪 🎊 ⚫ 👆 🎋 👆 🏁 👩‍💻 🕞. + +& 👆 💜 🏷 💪 ⚙ 🙆 🎏 📛 👆 💚. + +✋ 💳 *➡ 🛠*, 👥 💪 ⚙ 👉 📛 🔗 ⏮ 🔌 (& 💪, 🖌, ⚙ 🛠 🛠 🧟 ⚙). + +🔌 🇵🇞 👈 `username` & `password` 🔜 📚 📚 💜 (, 🙅‍♂ 🎻 📥). + +### `scope` + +🔌 💬 👈 👩‍💻 💪 📚 ➕1⃣ 📚 🏑 "`scope`". + +📚 🏑 📛 `scope` (⭐), ✋ ⚫ 🀙 📏 🎻 ⏮ "↔" 🎏 🚀. + +🔠 "↔" 🎻 (🍵 🚀). + +👫 🛎 ⚙ 📣 🎯 💂‍♂ ✔, 🖌: + +* `users:read` ⚖ `users:write` ⚠ 🖌. +* `instagram_basic` ⚙ 👱📔 / 👱📔. +* `https://www.googleapis.com/auth/drive` ⚙ 🇺🇞🔍. + +!!! info + Oauth2⃣ "↔" 🎻 👈 📣 🎯 ✔ ✔. + + ⚫ 🚫 🀔 🚥 ⚫ ✔ 🎏 🊹 💖 `:` ⚖ 🚥 ⚫ 📛. + + 👈 ℹ 🛠 🎯. + + Oauth2⃣ 👫 🎻. + +## 📟 🀚 `username` & `password` + +🔜 ➡ ⚙ 🚙 🚚 **FastAPI** 🍵 👉. + +### `OAuth2PasswordRequestForm` + +🥇, 🗄 `OAuth2PasswordRequestForm`, & ⚙ ⚫ 🔗 ⏮ `Depends` *➡ 🛠* `/token`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="4 76" + {!> ../../../docs_src/security/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="2 74" + {!> ../../../docs_src/security/tutorial003_py310.py!} + ``` + +`OAuth2PasswordRequestForm` 🎓 🔗 👈 📣 📚 💪 ⏮: + +* `username`. +* `password`. +* 📊 `scope` 🏑 🊏 🎻, ✍ 🎻 🎏 🚀. +* 📊 `grant_type`. + +!!! tip + Oauth2⃣ 🔌 🀙 *🚚* 🏑 `grant_type` ⏮ 🔧 💲 `password`, ✋ `OAuth2PasswordRequestForm` 🚫 🛠 ⚫. + + 🚥 👆 💪 🛠 ⚫, ⚙ `OAuth2PasswordRequestFormStrict` ↩ `OAuth2PasswordRequestForm`. + +* 📊 `client_id` (👥 🚫 💪 ⚫ 👆 🖌). +* 📊 `client_secret` (👥 🚫 💪 ⚫ 👆 🖌). + +!!! info + `OAuth2PasswordRequestForm` 🚫 🎁 🎓 **FastAPI** `OAuth2PasswordBearer`. + + `OAuth2PasswordBearer` ⚒ **FastAPI** 💭 👈 ⚫ 💂‍♂ ⚖. ⚫ 🚮 👈 🌌 🗄. + + ✋ `OAuth2PasswordRequestForm` 🎓 🔗 👈 👆 💪 ✔ ✍ 👆, ⚖ 👆 💪 ✔ 📣 `Form` 🔢 🔗. + + ✋ ⚫ ⚠ ⚙ 💌, ⚫ 🚚 **FastAPI** 🔗, ⚒ ⚫ ⏩. + +### ⚙ 📚 💜 + +!!! tip + 👐 🔗 🎓 `OAuth2PasswordRequestForm` 🏆 🚫 ✔ 🔢 `scope` ⏮ 📏 🎻 👜 🚀, ↩, ⚫ 🔜 ✔ `scopes` 🔢 ⏮ ☑ 📇 🎻 🔠 ↔ 📚. + + 👥 🚫 ⚙ `scopes` 👉 🖌, ✋ 🛠 📀 🚥 👆 💪 ⚫. + +🔜, 🀚 👩‍💻 📊 ⚪➡ (❌) 💜, ⚙ `username` ⚪➡ 📚 🏑. + +🚥 📀 🙅‍♂ ✅ 👩‍💻, 👥 📚 ❌ 💬 "❌ 🆔 ⚖ 🔐". + +❌, 👥 ⚙ ⚠ `HTTPException`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3 77-79" + {!> ../../../docs_src/security/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1 75-77" + {!> ../../../docs_src/security/tutorial003_py310.py!} + ``` + +### ✅ 🔐 + +👉 ☝ 👥 ✔ 👩‍💻 📊 ⚪➡ 👆 💜, ✋ 👥 🚫 ✅ 🔐. + +➡ 🚮 👈 💜 Pydantic `UserInDB` 🏷 🥇. + +👆 🔜 🙅 🖊 🔢 🔐,, 👥 🔜 ⚙ (❌) 🔐 🔁 ⚙. + +🚥 🔐 🚫 🏏, 👥 📚 🎏 ❌. + +#### 🔐 🔁 + +"🔁" ⛓: 🏭 🎚 (🔐 👉 💌) 🔘 🔁 🔢 (🎻) 👈 👀 💖 🙃. + +🕐❔ 👆 🚶‍♀ ⚫❔ 🎏 🎚 (⚫❔ 🎏 🔐) 👆 🀚 ⚫❔ 🎏 🙃. + +✋ 👆 🚫🔜 🗜 ⚪➡ 🙃 🔙 🔐. + +##### ⚫❔ ⚙ 🔐 🔁 + +🚥 👆 💜 📎, 🧙‍♀ 🏆 🚫 ✔ 👆 👩‍💻' 🔢 🔐, 🕎#⃣. + +, 🧙‍♀ 🏆 🚫 💪 🔄 ⚙ 👈 🎏 🔐 ➕1⃣ ⚙ (📚 👩‍💻 ⚙ 🎏 🔐 🌐, 👉 🔜 ⚠). + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="80-83" + {!> ../../../docs_src/security/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="78-81" + {!> ../../../docs_src/security/tutorial003_py310.py!} + ``` + +#### 🔃 `**user_dict` + +`UserInDB(**user_dict)` ⛓: + +*🚶‍♀ 🔑 & 💲 `user_dict` 🔗 🔑-💲 ❌, 🌓:* + +```Python +UserInDB( + username = user_dict["username"], + email = user_dict["email"], + full_name = user_dict["full_name"], + disabled = user_dict["disabled"], + hashed_password = user_dict["hashed_password"], +) +``` + +!!! info + 🌅 🏁 🔑 `**👩‍💻_ #⃣ ` ✅ 🔙 [🧟 **➕ 🏷**](../extra-models.md#about-user_indict){.internal-link target=_blank}. + +## 📚 🀝 + +📚 `token` 🔗 🔜 🎻 🎚. + +⚫ 🔜 ✔ `token_type`. 👆 💌, 👥 ⚙ "📚" 🀝, 🀝 🆎 🔜 "`bearer`". + +& ⚫ 🔜 ✔ `access_token`, ⏮ 🎻 ⚗ 👆 🔐 🀝. + +👉 🙅 🖌, 👥 🔜 🍕 😟 & 📚 🎏 `username` 🀝. + +!!! tip + ⏭ 📃, 👆 🔜 👀 🎰 🔐 🛠, ⏮ 🔐 #⃣ & 🥙 🀝. + + ✋ 🔜, ➡ 🎯 🔛 🎯 ℹ 👥 💪. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="85" + {!> ../../../docs_src/security/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="83" + {!> ../../../docs_src/security/tutorial003_py310.py!} + ``` + +!!! tip + 🔌, 👆 🔜 📚 🎻 ⏮ `access_token` & `token_type`, 🎏 👉 🖌. + + 👉 🕳 👈 👆 ✔ 👆 👆 📟, & ⚒ 💭 👆 ⚙ 📚 🎻 🔑. + + ⚫ 🌖 🕎 👜 👈 👆 ✔ 💭 ☑ 👆, 🛠 ⏮ 🔧. + + 🎂, **FastAPI** 🍵 ⚫ 👆. + +## ℹ 🔗 + +🔜 👥 🔜 ℹ 👆 🔗. + +👥 💚 🀚 `current_user` *🕎* 🚥 👉 👩‍💻 🊁. + +, 👥 ✍ 🌖 🔗 `get_current_active_user` 👈 🔄 ⚙ `get_current_user` 🔗. + +👯‍♂ 👉 🔗 🔜 📚 🇺🇞🔍 ❌ 🚥 👩‍💻 🚫 🔀, ⚖ 🚥 🔕. + +, 👆 🔗, 👥 🔜 🕎 🀚 👩‍💻 🚥 👩‍💻 🔀, ☑ 🔓, & 🊁: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="58-66 69-72 90" + {!> ../../../docs_src/security/tutorial003.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="55-64 67-70 88" + {!> ../../../docs_src/security/tutorial003_py310.py!} + ``` + +!!! info + 🌖 🎚 `WWW-Authenticate` ⏮ 💲 `Bearer` 👥 🛬 📥 🍕 🔌. + + 🙆 🇺🇞🔍 (❌) 👔 📟 4⃣0⃣1⃣ "⛔" 🀔 📚 `WWW-Authenticate` 🎚. + + 💌 📚 🀝 (👆 💌), 💲 👈 🎚 🔜 `Bearer`. + + 👆 💪 🀙 🚶 👈 ➕ 🎚 & ⚫ 🔜 👷. + + ✋ ⚫ 🚚 📥 🛠 ⏮ 🔧. + + , 📀 5⃣📆 🧰 👈 ⌛ & ⚙ ⚫ (🔜 ⚖ 🔮) & 👈 💪 ⚠ 👆 ⚖ 👆 👩‍💻, 🔜 ⚖ 🔮. + + 👈 💰 🐩... + +## 👀 ⚫ 🎯 + +📂 🎓 🩺: http://127.0.0.1:8000/docs. + +### 🔓 + +🖊 "✔" 🔌. + +⚙ 🎓: + +👩‍💻: `johndoe` + +🔐: `secret` + + + +⏮ 🔗 ⚙, 👆 🔜 👀 ⚫ 💖: + + + +### 🀚 👆 👍 👩‍💻 💜 + +🔜 ⚙ 🛠 `GET` ⏮ ➡ `/users/me`. + +👆 🔜 🀚 👆 👩‍💻 📊, 💖: + +```JSON +{ + "username": "johndoe", + "email": "johndoe@example.com", + "full_name": "John Doe", + "disabled": false, + "hashed_password": "fakehashedsecret" +} +``` + + + +🚥 👆 🖊 🔒 ℹ & ⏏, & ‎ 🔄 🎏 🛠 🔄, 👆 🔜 🀚 🇺🇞🔍 4⃣0⃣1⃣ ❌: + +```JSON +{ + "detail": "Not authenticated" +} +``` + +### 🔕 👩‍💻 + +🔜 🔄 ⏮ 🔕 👩‍💻, 🔓 ⏮: + +👩‍💻: `alice` + +🔐: `secret2` + +& 🔄 ⚙ 🛠 `GET` ⏮ ➡ `/users/me`. + +👆 🔜 🀚 "🔕 👩‍💻" ❌, 💖: + +```JSON +{ + "detail": "Inactive user" +} +``` + +## 🌃 + +👆 🔜 ✔ 🧰 🛠 🏁 💂‍♂ ⚙ ⚓ 🔛 `username` & `password` 👆 🛠. + +⚙ 👫 🧰, 👆 💪 ⚒ 💂‍♂ ⚙ 🔗 ⏮ 🙆 💜 & ⏮ 🙆 👩‍💻 ⚖ 💜 🏷. + +🕎 ℹ ❌ 👈 ⚫ 🚫 🀙 "🔐". + +⏭ 📃 👆 🔜 👀 ❔ ⚙ 🔐 🔐 🔁 🗃 & 🥙 🀝. diff --git a/docs/em/docs/tutorial/sql-databases.md b/docs/em/docs/tutorial/sql-databases.md new file mode 100644 index 000000000..9d46c2460 --- /dev/null +++ b/docs/em/docs/tutorial/sql-databases.md @@ -0,0 +1,786 @@ +# 🗄 (🔗) 💜 + +**FastAPI** 🚫 🚚 👆 ⚙ 🗄 (🔗) 💜. + +✋ 👆 💪 ⚙ 🙆 🔗 💜 👈 👆 💚. + +📥 👥 🔜 👀 🖌 ⚙ 🇞🇲. + +👆 💪 💪 🛠 ⚫ 🙆 💜 🐕‍🊺 🇞🇲, 💖: + +* ✳ +* ✳ +* 🗄 +* 🐞 +* 🀞‍♂ 🗄 💜, ♒. + +👉 🖌, 👥 🔜 ⚙ **🗄**, ↩ ⚫ ⚙ 👁 📁 & 🐍 ✔ 🛠 🐕‍🊺. , 👆 💪 📁 👉 🖌 & 🏃 ⚫. + +⏪, 👆 🏭 🈞, 👆 💪 💚 ⚙ 💜 💜 💖 **✳**. + +!!! tip + 📀 🛂 🏗 🚂 ⏮ **FastAPI** & **✳**, 🌐 ⚓ 🔛 **☁**, 🔌 🕞 & 🌖 🧰: https://github.com/tiangolo/full-stack-fastapi-postgresql + +!!! note + 👀 👈 📚 📟 🐩 `SQLAlchemy` 📟 👆 🔜 ⚙ ⏮ 🙆 🛠. + + **FastAPI** 🎯 📟 🀪 🕧. + +## 🐜 + +**FastAPI** 👷 ⏮ 🙆 💜 & 🙆 👗 🗃 💬 💜. + +⚠ ⚓ ⚙ "🐜": "🎚-🔗 🗺" 🗃. + +🐜 ✔ 🧰 🗜 ("*🗺*") 🖖 *🎚* 📟 & 💜 🏓 ("*🔗*"). + +⏮ 🐜, 👆 🛎 ✍ 🎓 👈 🎚 🏓 🗄 💜, 🔠 🔢 🎓 🎚 🏓, ⏮ 📛 & 🆎. + +🖌 🎓 `Pet` 💪 🎚 🗄 🏓 `pets`. + +& 🔠 *👐* 🎚 👈 🎓 🎚 ⏭ 💜. + +🖌 🎚 `orion_cat` (👐 `Pet`) 💪 ✔ 🔢 `orion_cat.type`, 🏓 `type`. & 💲 👈 🔢 💪, ✅ `"cat"`. + +👫 🐜 ✔ 🧰 ⚒ 🔗 ⚖ 🔗 🖖 🏓 ⚖ 👚‍💌. + +👉 🌌, 👆 💪 ✔ 🔢 `orion_cat.owner` & 👚‍💌 🔜 🔌 💜 👉 🐶 👚‍💌, ✊ ⚪➡ 🏓 *👚‍💌*. + +, `orion_cat.owner.name` 💪 📛 (⚪➡ `name` 🏓 `owners` 🏓) 👉 🐶 👚‍💌. + +⚫ 💪 ✔ 💲 💖 `"Arquilian"`. + +& 🐜 🔜 🌐 👷 🀚 ℹ ⚪➡ 🔗 🏓 *👚‍💌* 🕐❔ 👆 🔄 🔐 ⚫ ⚪➡ 👆 🐶 🎚. + +⚠ 🐜 🖌: ✳-🐜 (🍕 ✳ 🛠), 🇞🇲 🐜 (🍕 🇞🇲, 🔬 🛠) & 🏒 (🔬 🛠), 👪 🎏. + +📥 👥 🔜 👀 ❔ 👷 ⏮ **🇞🇲 🐜**. + +🎏 🌌 👆 💪 ⚙ 🙆 🎏 🐜. + +!!! tip + 📀 🌓 📄 ⚙ 🏒 📥 🩺. + +## 📁 📊 + +👫 🖌, ➡ 💬 👆 ✔ 📁 📛 `my_super_project` 👈 🔌 🎧-📁 🀙 `sql_app` ⏮ 📊 💖 👉: + +``` +. +└── sql_app + ├── __init__.py + ├── crud.py + ├── database.py + ├── main.py + ├── models.py + └── schemas.py +``` + +📁 `__init__.py` 🛁 📁, ✋ ⚫ 💬 🐍 👈 `sql_app` ⏮ 🌐 🚮 🕹 (🐍 📁) 📊. + +🔜 ➡ 👀 ⚫❔ 🔠 📁/🕹 🔚. + +## ❎ `SQLAlchemy` + +🥇 👆 💪 ❎ `SQLAlchemy`: + +
+ +```console +$ pip install sqlalchemy + +---> 100% +``` + +
+ +## ✍ 🇞🇲 🍕 + +➡ 🔗 📁 `sql_app/database.py`. + +### 🗄 🇞🇲 🍕 + +```Python hl_lines="1-3" +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +### ✍ 💜 📛 🇞🇲 + +```Python hl_lines="5-6" +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +👉 🖌, 👥 "🔗" 🗄 💜 (📂 📁 ⏮ 🗄 💜). + +📁 🔜 🔎 🎏 📁 📁 `sql_app.db`. + +👈 ⚫❔ 🏁 🍕 `./sql_app.db`. + +🚥 👆 ⚙ **✳** 💜 ↩, 👆 🔜 ✔ ✍ ⏞: + +```Python +SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db" +``` + +...& 🛠 ⚫ ⏮ 👆 💜 📊 & 🎓 (📊 ✳, ✳ ⚖ 🙆 🎏). + +!!! tip + + 👉 👑 ⏞ 👈 👆 🔜 ✔ 🔀 🚥 👆 💚 ⚙ 🎏 💜. + +### ✍ 🇞🇲 `engine` + +🥇 🔁 ✍ 🇞🇲 "🚒". + +👥 🔜 ⏪ ⚙ 👉 `engine` 🎏 🥉. + +```Python hl_lines="8-10" +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +#### 🗒 + +❌: + +```Python +connect_args={"check_same_thread": False} +``` + +...💪 🕎 `SQLite`. ⚫ 🚫 💪 🎏 💜. + +!!! info "📡 ℹ" + + 🔢 🗄 🔜 🕎 ✔ 1⃣ 🧵 🔗 ⏮ ⚫, 🀔 👈 🔠 🧵 🔜 🍵 🔬 📚. + + 👉 ❎ 😫 🀝 🎏 🔗 🎏 👜 (🎏 📚). + + ✋ FastAPI, ⚙ 😐 🔢 (`def`) 🌅 🌘 1⃣ 🧵 💪 🔗 ⏮ 💜 🎏 📚, 👥 💪 ⚒ 🗄 💭 👈 ⚫ 🔜 ✔ 👈 ⏮ `connect_args={"check_same_thread": False}`. + + , 👥 🔜 ⚒ 💭 🔠 📚 🀚 🚮 👍 💜 🔗 🎉 🔗, 📀 🙅‍♂ 💪 👈 🔢 🛠. + +### ✍ `SessionLocal` 🎓 + +🔠 👐 `SessionLocal` 🎓 🔜 💜 🎉. 🎓 ⚫ 🚫 💜 🎉. + +✋ 🕐 👥 ✍ 👐 `SessionLocal` 🎓, 👉 👐 🔜 ☑ 💜 🎉. + +👥 📛 ⚫ `SessionLocal` 🔬 ⚫ ⚪➡ `Session` 👥 🏭 ⚪➡ 🇞🇲. + +👥 🔜 ⚙ `Session` (1⃣ 🗄 ⚪➡ 🇞🇲) ⏪. + +✍ `SessionLocal` 🎓, ⚙ 🔢 `sessionmaker`: + +```Python hl_lines="11" +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +### ✍ `Base` 🎓 + +🔜 👥 🔜 ⚙ 🔢 `declarative_base()` 👈 📚 🎓. + +⏪ 👥 🔜 😖 ⚪➡ 👉 🎓 ✍ 🔠 💜 🏷 ⚖ 🎓 (🐜 🏷): + +```Python hl_lines="13" +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +## ✍ 💜 🏷 + +➡ 🔜 👀 📁 `sql_app/models.py`. + +### ✍ 🇞🇲 🏷 ⚪➡ `Base` 🎓 + +👥 🔜 ⚙ 👉 `Base` 🎓 👥 ✍ ⏭ ✍ 🇞🇲 🏷. + +!!! tip + 🇞🇲 ⚙ ⚖ "**🏷**" 🔗 👉 🎓 & 👐 👈 🔗 ⏮ 💜. + + ✋ Pydantic ⚙ ⚖ "**🏷**" 🔗 🕳 🎏, 💜 🔬, 🛠, & 🧟 🎓 & 👐. + +🗄 `Base` ⚪➡ `database` (📁 `database.py` ⚪➡ 🔛). + +✍ 🎓 👈 😖 ⚪➡ ⚫. + +👫 🎓 🇞🇲 🏷. + +```Python hl_lines="4 7-8 18-19" +{!../../../docs_src/sql_databases/sql_app/models.py!} +``` + +`__tablename__` 🔢 💬 🇞🇲 📛 🏓 ⚙ 💜 🔠 👫 🏷. + +### ✍ 🏷 🔢/🏓 + +🔜 ✍ 🌐 🏷 (🎓) 🔢. + +🔠 👫 🔢 🎚 🏓 🚮 🔗 💜 🏓. + +👥 ⚙ `Column` ⚪➡ 🇞🇲 🔢 💲. + +& 👥 🚶‍♀ 🇞🇲 🎓 "🆎", `Integer`, `String`, & `Boolean`, 👈 🔬 🆎 💜, ❌. + +```Python hl_lines="1 10-13 21-24" +{!../../../docs_src/sql_databases/sql_app/models.py!} +``` + +### ✍ 💛 + +🔜 ✍ 💛. + +👉, 👥 ⚙ `relationship` 🚚 🇞🇲 🐜. + +👉 🔜 ▶, 🌅 ⚖ 🌘, "🎱" 🔢 👈 🔜 🔌 💲 ⚪➡ 🎏 🏓 🔗 👉 1⃣. + +```Python hl_lines="2 15 26" +{!../../../docs_src/sql_databases/sql_app/models.py!} +``` + +🕐❔ 🔐 🔢 `items` `User`, `my_user.items`, ⚫ 🔜 ✔ 📇 `Item` 🇞🇲 🏷 (⚪➡ `items` 🏓) 👈 ✔ 💱 🔑 ☝ 👉 ⏺ `users` 🏓. + +🕐❔ 👆 🔐 `my_user.items`, 🇞🇲 🔜 🀙 🚶 & ☕ 🏬 ⚪➡ 💜 `items` 🏓 & 🔗 👫 📥. + +& 🕐❔ 🔐 🔢 `owner` `Item`, ⚫ 🔜 🔌 `User` 🇞🇲 🏷 ⚪➡ `users` 🏓. ⚫ 🔜 ⚙ `owner_id` 🔢/🏓 ⏮ 🚮 💱 🔑 💭 ❔ ⏺ 🀚 ⚪➡ `users` 🏓. + +## ✍ Pydantic 🏷 + +🔜 ➡ ✅ 📁 `sql_app/schemas.py`. + +!!! tip + ❎ 😚 🖖 🇞🇲 *🏷* & Pydantic *🏷*, 👥 🔜 ✔ 📁 `models.py` ⏮ 🇞🇲 🏷, & 📁 `schemas.py` ⏮ Pydantic 🏷. + + 👫 Pydantic 🏷 🔬 🌅 ⚖ 🌘 "🔗" (☑ 📊 💠). + + 👉 🔜 ℹ 👥 ❎ 😚 ⏪ ⚙ 👯‍♂. + +### ✍ ▶ Pydantic *🏷* / 🔗 + +✍ `ItemBase` & `UserBase` Pydantic *🏷* (⚖ ➡ 💬 "🔗") ✔ ⚠ 🔢 ⏪ 🏗 ⚖ 👂 📊. + +& ✍ `ItemCreate` & `UserCreate` 👈 😖 ⚪➡ 👫 (👫 🔜 ✔ 🎏 🔢), ➕ 🙆 🌖 📊 (🔢) 💪 🏗. + +, 👩‍💻 🔜 ✔ `password` 🕐❔ 🏗 ⚫. + +✋ 💂‍♂, `password` 🏆 🚫 🎏 Pydantic *🏷*, 🖌, ⚫ 🏆 🚫 📚 ⚪➡ 🛠 🕐❔ 👂 👩‍💻. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="3 6-8 11-12 23-24 27-28" + {!> ../../../docs_src/sql_databases/sql_app/schemas.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="3 6-8 11-12 23-24 27-28" + {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="1 4-6 9-10 21-22 25-26" + {!> ../../../docs_src/sql_databases/sql_app_py310/schemas.py!} + ``` + +#### 🇞🇲 👗 & Pydantic 👗 + +👀 👈 🇞🇲 *🏷* 🔬 🔢 ⚙ `=`, & 🚶‍♀ 🆎 🔢 `Column`, 💖: + +```Python +name = Column(String) +``` + +⏪ Pydantic *🏷* 📣 🆎 ⚙ `:`, 🆕 🆎 ✍ ❕/🆎 🔑: + +```Python +name: str +``` + +✔ ⚫ 🀯, 👆 🚫 🀚 😕 🕐❔ ⚙ `=` & `:` ⏮ 👫. + +### ✍ Pydantic *🏷* / 🔗 👂 / 📚 + +🔜 ✍ Pydantic *🏷* (🔗) 👈 🔜 ⚙ 🕐❔ 👂 💜, 🕐❔ 🛬 ⚫ ⚪➡ 🛠. + +🖌, ⏭ 🏗 🏬, 👥 🚫 💭 ⚫❔ 🔜 🆔 🛠 ⚫, ✋ 🕐❔ 👂 ⚫ (🕐❔ 🛬 ⚫ ⚪➡ 🛠) 👥 🔜 ⏪ 💭 🚮 🆔. + +🎏 🌌, 🕐❔ 👂 👩‍💻, 👥 💪 🔜 📣 👈 `items` 🔜 🔌 🏬 👈 💭 👉 👩‍💻. + +🚫 🕎 🆔 📚 🏬, ✋ 🌐 💜 👈 👥 🔬 Pydantic *🏷* 👂 🏬: `Item`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15-17 31-34" + {!> ../../../docs_src/sql_databases/sql_app/schemas.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="15-17 31-34" + {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="13-15 29-32" + {!> ../../../docs_src/sql_databases/sql_app_py310/schemas.py!} + ``` + +!!! tip + 👀 👈 `User`, Pydantic *🏷* 👈 🔜 ⚙ 🕐❔ 👂 👩‍💻 (🛬 ⚫ ⚪➡ 🛠) 🚫 🔌 `password`. + +### ⚙ Pydantic `orm_mode` + +🔜, Pydantic *🏷* 👂, `Item` & `User`, 🚮 🔗 `Config` 🎓. + +👉 `Config` 🎓 ⚙ 🚚 📳 Pydantic. + +`Config` 🎓, ⚒ 🔢 `orm_mode = True`. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15 19-20 31 36-37" + {!> ../../../docs_src/sql_databases/sql_app/schemas.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="15 19-20 31 36-37" + {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python hl_lines="13 17-18 29 34-35" + {!> ../../../docs_src/sql_databases/sql_app_py310/schemas.py!} + ``` + +!!! tip + 👀 ⚫ ⚖ 💲 ⏮ `=`, 💖: + + `orm_mode = True` + + ⚫ 🚫 ⚙ `:` 🆎 📄 ⏭. + + 👉 ⚒ 📁 💲, 🚫 📣 🆎. + +Pydantic `orm_mode` 🔜 💬 Pydantic *🏷* ✍ 💜 🚥 ⚫ 🚫 `dict`, ✋ 🐜 🏷 (⚖ 🙆 🎏 ❌ 🎚 ⏮ 🔢). + +👉 🌌, ↩ 🕎 🔄 🀚 `id` 💲 ⚪➡ `dict`,: + +```Python +id = data["id"] +``` + +⚫ 🔜 🔄 🀚 ⚫ ⚪➡ 🔢,: + +```Python +id = data.id +``` + +& ⏮ 👉, Pydantic *🏷* 🔗 ⏮ 🐜, & 👆 💪 📣 ⚫ `response_model` ❌ 👆 *➡ 🛠*. + +👆 🔜 💪 📚 💜 🏷 & ⚫ 🔜 ✍ 💜 ⚪➡ ⚫. + +#### 📡 ℹ 🔃 🐜 📳 + +🇞🇲 & 📚 🎏 🔢 "🙃 🚚". + +👈 ⛓, 🖌, 👈 👫 🚫 ☕ 💜 💛 ⚪➡ 💜 🚥 👆 🔄 🔐 🔢 👈 🔜 🔌 👈 💜. + +🖌, 🔐 🔢 `items`: + +```Python +current_user.items +``` + +🔜 ⚒ 🇞🇲 🚶 `items` 🏓 & 🀚 🏬 👉 👩‍💻, ✋ 🚫 ⏭. + +🍵 `orm_mode`, 🚥 👆 📚 🇞🇲 🏷 ⚪➡ 👆 *➡ 🛠*, ⚫ 🚫🔜 🔌 💛 💜. + +🚥 👆 📣 📚 💛 👆 Pydantic 🏷. + +✋ ⏮ 🐜 📳, Pydantic ⚫ 🔜 🔄 🔐 💜 ⚫ 💪 ⚪➡ 🔢 (↩ 🀔 `dict`), 👆 💪 📣 🎯 💜 👆 💚 📚 & ⚫ 🔜 💪 🚶 & 🀚 ⚫, ⚪➡ 🐜. + +## 💩 🇚🇻 + +🔜 ➡ 👀 📁 `sql_app/crud.py`. + +👉 📁 👥 🔜 ✔ ♻ 🔢 🔗 ⏮ 💜 💜. + +**💩** 👟 ⚪➡: **🅱**📧, **Ⓜ**💳, **👀** = , & **🇚🇮**📧. + +...👐 👉 🖌 👥 🕎 🏗 & 👂. + +### ✍ 💜 + +🗄 `Session` ⚪➡ `sqlalchemy.orm`, 👉 🔜 ✔ 👆 📣 🆎 `db` 🔢 & ✔ 👻 🆎 ✅ & 🛠 👆 🔢. + +🗄 `models` (🇞🇲 🏷) & `schemas` (Pydantic *🏷* / 🔗). + +✍ 🚙 🔢: + +* ✍ 👁 👩‍💻 🆔 & 📧. +* ✍ 💗 👩‍💻. +* ✍ 💗 🏬. + +```Python hl_lines="1 3 6-7 10-11 14-15 27-28" +{!../../../docs_src/sql_databases/sql_app/crud.py!} +``` + +!!! tip + 🏗 🔢 👈 🕎 💡 🔗 ⏮ 💜 (🀚 👩‍💻 ⚖ 🏬) 🔬 👆 *➡ 🛠 🔢*, 👆 💪 🌖 💪 ♻ 👫 💗 🍕 & 🚮 ⚒ 💯 👫. + +### ✍ 💜 + +🔜 ✍ 🚙 🔢 ✍ 💜. + +🔁: + +* ✍ 🇞🇲 🏷 *👐* ⏮ 👆 📊. +* `add` 👈 👐 🎚 👆 💜 🎉. +* `commit` 🔀 💜 (👈 👫 🖊). +* `refresh` 👆 👐 (👈 ⚫ 🔌 🙆 🆕 📊 ⚪➡ 💜, 💖 🏗 🆔). + +```Python hl_lines="18-24 31-36" +{!../../../docs_src/sql_databases/sql_app/crud.py!} +``` + +!!! tip + 🇞🇲 🏷 `User` 🔌 `hashed_password` 👈 🔜 🔌 🔐 #⃣ ⏬ 🔐. + + ✋ ⚫❔ 🛠 👩‍💻 🚚 ⏮ 🔐, 👆 💪 ⚗ ⚫ & 🏗 #⃣ 🔐 👆 🈞. + + & ‎ 🚶‍♀ `hashed_password` ❌ ⏮ 💲 🖊. + +!!! warning + 👉 🖌 🚫 🔐, 🔐 🚫#⃣. + + 🎰 👚‍❀‍👚 🈞 👆 🔜 💪 #⃣ 🔐 & 🙅 🖊 👫 🔢. + + 🌅 ℹ, 🚶 🔙 💂‍♂ 📄 🔰. + + 📥 👥 🎯 🕎 🔛 🧰 & 👚‍🔧 💜. + +!!! tip + ↩ 🚶‍♀ 🔠 🇚🇻 ❌ `Item` & 👂 🔠 1⃣ 👫 ⚪➡ Pydantic *🏷*, 👥 🏭 `dict` ⏮ Pydantic *🏷*'Ⓜ 📊 ⏮: + + `item.dict()` + + & ‎ 👥 🚶‍♀ `dict`'Ⓜ 🔑-💲 👫 🇚🇻 ❌ 🇞🇲 `Item`, ⏮: + + `Item(**item.dict())` + + & ‎ 👥 🚶‍♀ ➕ 🇚🇻 ❌ `owner_id` 👈 🚫 🚚 Pydantic *🏷*, ⏮: + + `Item(**item.dict(), owner_id=user_id)` + +## 👑 **FastAPI** 📱 + +& 🔜 📁 `sql_app/main.py` ➡ 🛠 & ⚙ 🌐 🎏 🍕 👥 ✍ ⏭. + +### ✍ 💜 🏓 + +📶 🙃 🌌 ✍ 💜 🏓: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="9" + {!> ../../../docs_src/sql_databases/sql_app/main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="7" + {!> ../../../docs_src/sql_databases/sql_app_py39/main.py!} + ``` + +#### ⚗ 🗒 + +🛎 👆 🔜 🎲 🔢 👆 💜 (✍ 🏓, ♒) ⏮ ⚗. + +& 👆 🔜 ⚙ ⚗ "🛠" (👈 🚮 👑 👚‍🏭). + +"🛠" ⚒ 🔁 💪 🕐❔ 👆 🔀 📊 👆 🇞🇲 🏷, 🚮 🆕 🔢, ♒. 🔁 👈 🔀 💜, 🚮 🆕 🏓, 🆕 🏓, ♒. + +👆 💪 🔎 🖌 ⚗ FastAPI 🏗 📄 ⚪➡ [🏗 ⚡ - 📄](../project-generation.md){.internal-link target=_blank}. 🎯 `alembic` 📁 ℹ 📟. + +### ✍ 🔗 + +🔜 ⚙ `SessionLocal` 🎓 👥 ✍ `sql_app/database.py` 📁 ✍ 🔗. + +👥 💪 ✔ 🔬 💜 🎉/🔗 (`SessionLocal`) 📍 📚, ⚙ 🎏 🎉 🔘 🌐 📚 & ‎ 🔐 ⚫ ⏮ 📚 🏁. + +& ‎ 🆕 🎉 🔜 ✍ ⏭ 📚. + +👈, 👥 🔜 ✍ 🆕 🔗 ⏮ `yield`, 🔬 ⏭ 📄 🔃 [🔗 ⏮ `yield`](dependencies/dependencies-with-yield.md){.internal-link target=_blank}. + +👆 🔗 🔜 ✍ 🆕 🇞🇲 `SessionLocal` 👈 🔜 ⚙ 👁 📚, & ‎ 🔐 ⚫ 🕐 📚 🏁. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="15-20" + {!> ../../../docs_src/sql_databases/sql_app/main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="13-18" + {!> ../../../docs_src/sql_databases/sql_app_py39/main.py!} + ``` + +!!! info + 👥 🚮 🏗 `SessionLocal()` & 🚚 📚 `try` 🍫. + + & ‎ 👥 🔐 ⚫ `finally` 🍫. + + 👉 🌌 👥 ⚒ 💭 💜 🎉 🕧 📪 ⏮ 📚. 🚥 📀 ⚠ ⏪ 🏭 📚. + + ✋ 👆 💪 🚫 🀚 ➕1⃣ ⚠ ⚪➡ 🚪 📟 (⏮ `yield`). 👀 🌖 [🔗 ⏮ `yield` & `HTTPException`](./dependencies/dependencies-with-yield.md#dependencies-with-yield-and-httpexception){.internal-link target=_blank} + +& ‎, 🕐❔ ⚙ 🔗 *➡ 🛠 🔢*, 👥 📣 ⚫ ⏮ 🆎 `Session` 👥 🗄 🔗 ⚪➡ 🇞🇲. + +👉 🔜 ‎ 🀝 👥 👍 👚‍🎚 🐕‍🊺 🔘 *➡ 🛠 🔢*, ↩ 👚‍🎚 🔜 💭 👈 `db` 🔢 🆎 `Session`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="24 32 38 47 53" + {!> ../../../docs_src/sql_databases/sql_app/main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="22 30 36 45 51" + {!> ../../../docs_src/sql_databases/sql_app_py39/main.py!} + ``` + +!!! info "📡 ℹ" + 🔢 `db` 🀙 🆎 `SessionLocal`, ✋ 👉 🎓 (✍ ⏮ `sessionmaker()`) "🗳" 🇞🇲 `Session`,, 👚‍🎚 🚫 🀙 💭 ⚫❔ 👩‍🔬 🚚. + + ✋ 📣 🆎 `Session`, 👚‍🎚 🔜 💪 💭 💪 👩‍🔬 (`.add()`, `.query()`, `.commit()`, ♒) & 💪 🚚 👍 🐕‍🊺 (💖 🛠). 🆎 📄 🚫 📉 ☑ 🎚. + +### ✍ 👆 **FastAPI** *➡ 🛠* + +🔜, 😒, 📥 🐩 **FastAPI** *➡ 🛠* 📟. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="23-28 31-34 37-42 45-49 52-55" + {!> ../../../docs_src/sql_databases/sql_app/main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="21-26 29-32 35-40 43-47 50-53" + {!> ../../../docs_src/sql_databases/sql_app_py39/main.py!} + ``` + +👥 🏗 💜 🎉 ⏭ 🔠 📚 🔗 ⏮ `yield`, & ‎ 📪 ⚫ ⏮. + +& ‎ 👥 💪 ✍ 🚚 🔗 *➡ 🛠 🔢*, 🀚 👈 🎉 🔗. + +⏮ 👈, 👥 💪 🀙 `crud.get_user` 🔗 ⚪➡ 🔘 *➡ 🛠 🔢* & ⚙ 👈 🎉. + +!!! tip + 👀 👈 💲 👆 📚 🇞🇲 🏷, ⚖ 📇 🇞🇲 🏷. + + ✋ 🌐 *➡ 🛠* ✔ `response_model` ⏮ Pydantic *🏷* / 🔗 ⚙ `orm_mode`, 💜 📣 👆 Pydantic 🏷 🔜 ⚗ ⚪➡ 👫 & 📚 👩‍💻, ⏮ 🌐 😐 ⛜ & 🔬. + +!!! tip + 👀 👈 📀 `response_models` 👈 ✔ 🐩 🐍 🆎 💖 `List[schemas.Item]`. + + ✋ 🎚/🔢 👈 `List` Pydantic *🏷* ⏮ `orm_mode`, 💜 🔜 🗃 & 📚 👩‍💻 🛎, 🍵 ⚠. + +### 🔃 `def` 🆚 `async def` + +📥 👥 ⚙ 🇞🇲 📟 🔘 *➡ 🛠 🔢* & 🔗, &, 🔄, ⚫ 🔜 🚶 & 🔗 ⏮ 🔢 💜. + +👈 💪 ⚠ 🚚 "⌛". + +✋ 🇞🇲 🚫 ✔ 🔗 ⚙ `await` 🔗, 🔜 ⏮ 🕳 💖: + +```Python +user = await db.query(User).first() +``` + +...& ↩ 👥 ⚙: + +```Python +user = db.query(User).first() +``` + +‎ 👥 🔜 📣 *➡ 🛠 🔢* & 🔗 🍵 `async def`, ⏮ 😐 `def`,: + +```Python hl_lines="2" +@app.get("/users/{user_id}", response_model=schemas.User) +def read_user(user_id: int, db: Session = Depends(get_db)): + db_user = crud.get_user(db, user_id=user_id) + ... +``` + +!!! info + 🚥 👆 💪 🔗 👆 🔗 💜 🔁, 👀 [🔁 🗄 (🔗) 💜](../advanced/async-sql-databases.md){.internal-link target=_blank}. + +!!! note "📶 📡 ℹ" + 🚥 👆 😟 & ✔ ⏬ 📡 💡, 👆 💪 ✅ 📶 📡 ℹ ❔ 👉 `async def` 🆚 `def` 🍵 [🔁](../async.md#very-technical-details){.internal-link target=_blank} 🩺. + +## 🛠 + +↩ 👥 ⚙ 🇞🇲 🔗 & 👥 🚫 🚚 🙆 😇 🔌-⚫ 👷 ⏮ **FastAPI**, 👥 💪 🛠 💜 🛠 ⏮ ⚗ 🔗. + +& 📟 🔗 🇞🇲 & 🇞🇲 🏷 🖖 🎏 🔬 📁, 👆 🔜 💪 🎭 🛠 ⏮ ⚗ 🍵 ✔ ❎ FastAPI, Pydantic, ⚖ 🕳 🙆. + +🎏 🌌, 👆 🔜 💪 ⚙ 🎏 🇞🇲 🏷 & 🚙 🎏 🍕 👆 📟 👈 🚫 🔗 **FastAPI**. + +🖌, 🖥 📋 👚‍🏭 ⏮ 🥒, 🅿, ⚖ 📶. + +## 📄 🌐 📁 + + 💭 👆 🔜 ✔ 📁 📛 `my_super_project` 👈 🔌 🎧-📁 🀙 `sql_app`. + +`sql_app` 🔜 ✔ 📄 📁: + +* `sql_app/__init__.py`: 🛁 📁. + +* `sql_app/database.py`: + +```Python +{!../../../docs_src/sql_databases/sql_app/database.py!} +``` + +* `sql_app/models.py`: + +```Python +{!../../../docs_src/sql_databases/sql_app/models.py!} +``` + +* `sql_app/schemas.py`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python + {!> ../../../docs_src/sql_databases/sql_app/schemas.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python + {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python + {!> ../../../docs_src/sql_databases/sql_app_py310/schemas.py!} + ``` + +* `sql_app/crud.py`: + +```Python +{!../../../docs_src/sql_databases/sql_app/crud.py!} +``` + +* `sql_app/main.py`: + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python + {!> ../../../docs_src/sql_databases/sql_app/main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python + {!> ../../../docs_src/sql_databases/sql_app_py39/main.py!} + ``` + +## ✅ ⚫ + +👆 💪 📁 👉 📟 & ⚙ ⚫. + +!!! info + + 👐, 📟 🎊 📥 🍕 💯. 🌅 📟 👉 🩺. + +‎ 👆 💪 🏃 ⚫ ⏮ Uvicorn: + + +
+ +```console +$ uvicorn sql_app.main:app --reload + +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +``` + +
+ +& ‎, 👆 💪 📂 👆 🖥 http://127.0.0.1:8000/docs. + +& 👆 🔜 💪 🔗 ⏮ 👆 **FastAPI** 🈞, 👂 📊 ⚪➡ 🎰 💜: + + + +## 🔗 ⏮ 💜 🔗 + +🚥 👆 💚 🔬 🗄 💜 (📁) 🔗, ➡ FastAPI, ℹ 🚮 🎚, 🚮 🏓, 🏓, ⏺, 🔀 📊, ♒. 👆 💪 ⚙ 💜 🖥 🗄. + +⚫ 🔜 👀 💖 👉: + + + +👆 💪 ⚙ 💳 🗄 🖥 💖 🗄 📋 ⚖ ExtendsClass. + +## 🎛 💜 🎉 ⏮ 🛠 + +🚥 👆 💪 🚫 ⚙ 🔗 ⏮ `yield` - 🖌, 🚥 👆 🚫 ⚙ **🐍 3⃣.7⃣** & 💪 🚫 ❎ "🐛" 🀔 🔛 **🐍 3⃣.6⃣** - 👆 💪 ⚒ 🆙 🎉 "🛠" 🎏 🌌. + +"🛠" 🌖 🔢 👈 🕧 🛠 🔠 📚, ⏮ 📟 🛠 ⏭, & 📟 🛠 ⏮ 🔗 🔢. + +### ✍ 🛠 + +🛠 👥 🔜 🚮 (🔢) 🔜 ✍ 🆕 🇞🇲 `SessionLocal` 🔠 📚, 🚮 ⚫ 📚 & ‎ 🔐 ⚫ 🕐 📚 🏁. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python hl_lines="14-22" + {!> ../../../docs_src/sql_databases/sql_app/alt_main.py!} + ``` + +=== "🐍 3⃣.9⃣ & 🔛" + + ```Python hl_lines="12-20" + {!> ../../../docs_src/sql_databases/sql_app_py39/alt_main.py!} + ``` + +!!! info + 👥 🚮 🏗 `SessionLocal()` & 🚚 📚 `try` 🍫. + + & ‎ 👥 🔐 ⚫ `finally` 🍫. + + 👉 🌌 👥 ⚒ 💭 💜 🎉 🕧 📪 ⏮ 📚. 🚥 📀 ⚠ ⏪ 🏭 📚. + +### 🔃 `request.state` + +`request.state` 🏠 🔠 `Request` 🎚. ⚫ 📀 🏪 ❌ 🎚 📎 📚 ⚫, 💖 💜 🎉 👉 💌. 👆 💪 ✍ 🌅 🔃 ⚫ 💃 🩺 🔃 `Request` 🇵🇞. + +👥 👉 💌, ⚫ ℹ 👥 🚚 👁 💜 🎉 ⚙ 🔘 🌐 📚, & ‎ 🔐 ⏮ (🛠). + +### 🔗 ⏮ `yield` ⚖ 🛠 + +❎ **🛠** 📥 🎏 ⚫❔ 🔗 ⏮ `yield` 🔚, ⏮ 🔺: + +* ⚫ 🚚 🌖 📟 & 👄 🌅 🏗. +* 🛠 ✔ `async` 🔢. + * 🚥 📀 📟 ⚫ 👈 ✔ "⌛" 🕞, ⚫ 💪 "🍫" 👆 🈞 📀 & 📉 🎭 🍖. + * 👐 ⚫ 🎲 🚫 📶 ⚠ 📥 ⏮ 🌌 `SQLAlchemy` 👷. + * ✋ 🚥 👆 🚮 🌖 📟 🛠 👈 ✔ 📚 👀/🅟 ⌛, ⚫ 💪 ‎ ⚠. +* 🛠 🏃 *🔠* 📚. + * , 🔗 🔜 ✍ 🔠 📚. + * 🕐❔ *➡ 🛠* 👈 🍵 👈 📚 🚫 💪 💜. + +!!! tip + ⚫ 🎲 👍 ⚙ 🔗 ⏮ `yield` 🕐❔ 👫 🥃 ⚙ 💌. + +!!! info + 🔗 ⏮ `yield` 🚮 ⏳ **FastAPI**. + + ⏮ ⏬ 👉 🔰 🕎 ✔ 🖌 ⏮ 🛠 & 📀 🎲 📚 🈞 ⚙ 🛠 💜 🎉 🧟. diff --git a/docs/em/docs/tutorial/static-files.md b/docs/em/docs/tutorial/static-files.md new file mode 100644 index 000000000..6090c5338 --- /dev/null +++ b/docs/em/docs/tutorial/static-files.md @@ -0,0 +1,39 @@ +# 🎻 📁 + +👆 💪 🍊 🎻 📁 🔁 ⚪➡ 📁 ⚙ `StaticFiles`. + +## ⚙ `StaticFiles` + +* 🗄 `StaticFiles`. +* "🗻" `StaticFiles()` 👐 🎯 ➡. + +```Python hl_lines="2 6" +{!../../../docs_src/static_files/tutorial001.py!} +``` + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.staticfiles import StaticFiles`. + + **FastAPI** 🚚 🎏 `starlette.staticfiles` `fastapi.staticfiles` 🏪 👆, 👩‍💻. ✋ ⚫ 🀙 👟 🔗 ⚪➡ 💃. + +### ⚫❔ "🗜" + +"🗜" ⛓ ❎ 🏁 "🔬" 🈞 🎯 ➡, 👈 ‎ ✊ 💅 🚚 🌐 🎧-➡. + +👉 🎏 ⚪➡ ⚙ `APIRouter` 🗻 🈞 🍕 🔬. 🗄 & 🩺 ⚪➡ 👆 👑 🈞 🏆 🚫 🔌 🕳 ⚪➡ 🗻 🈞, ♒. + +👆 💪 ✍ 🌅 🔃 👉 **🏧 👩‍💻 🊮**. + +## ℹ + +🥇 `"/static"` 🔗 🎧-➡ 👉 "🎧-🈞" 🔜 "🗻" 🔛. , 🙆 ➡ 👈 ▶ ⏮ `"/static"` 🔜 🍵 ⚫. + +`directory="static"` 🔗 📛 📁 👈 🔌 👆 🎻 📁. + +`name="static"` 🀝 ⚫ 📛 👈 💪 ⚙ 🔘 **FastAPI**. + +🌐 👫 🔢 💪 🎏 🌘 "`static`", 🔆 👫 ⏮ 💪 & 🎯 ℹ 👆 👍 🈞. + +## 🌅 ℹ + +🌖 ℹ & 🎛 ✅ 💃 🩺 🔃 🎻 📁. diff --git a/docs/em/docs/tutorial/testing.md b/docs/em/docs/tutorial/testing.md new file mode 100644 index 000000000..999d67cd3 --- /dev/null +++ b/docs/em/docs/tutorial/testing.md @@ -0,0 +1,188 @@ +# 🔬 + +👏 💃, 🔬 **FastAPI** 🈞 ⏩ & 😌. + +⚫ ⚓ 🔛 🇞🇲, ❔ 🔄 🏗 ⚓ 🔛 📚, ⚫ 📶 😰 & 🏋. + +⏮ ⚫, 👆 💪 ⚙ ✳ 🔗 ⏮ **FastAPI**. + +## ⚙ `TestClient` + +!!! info + ⚙ `TestClient`, 🥇 ❎ `httpx`. + + 🀶 Ⓜ. `pip install httpx`. + +🗄 `TestClient`. + +✍ `TestClient` 🚶‍♀ 👆 **FastAPI** 🈞 ⚫. + +✍ 🔢 ⏮ 📛 👈 ▶ ⏮ `test_` (👉 🐩 `pytest` 🏛). + +⚙ `TestClient` 🎚 🎏 🌌 👆 ⏮ `httpx`. + +✍ 🙅 `assert` 📄 ⏮ 🐩 🐍 🧬 👈 👆 💪 ✅ (🔄, 🐩 `pytest`). + +```Python hl_lines="2 12 15-18" +{!../../../docs_src/app_testing/tutorial001.py!} +``` + +!!! tip + 👀 👈 🔬 🔢 😐 `def`, 🚫 `async def`. + + & 🀙 👩‍💻 😐 🀙, 🚫 ⚙ `await`. + + 👉 ✔ 👆 ⚙ `pytest` 🔗 🍵 🀢. + +!!! note "📡 ℹ" + 👆 💪 ⚙ `from starlette.testclient import TestClient`. + + **FastAPI** 🚚 🎏 `starlette.testclient` `fastapi.testclient` 🏪 👆, 👩‍💻. ✋ ⚫ 👟 🔗 ⚪➡ 💃. + +!!! tip + 🚥 👆 💚 🀙 `async` 🔢 👆 💯 ↖ ⚪➡ 📚 📚 👆 FastAPI 🈞 (✅ 🔁 💜 🔢), ✔ 👀 [🔁 💯](../advanced/async-tests.md){.internal-link target=_blank} 🏧 🔰. + +## 🎏 💯 + +🎰 🈞, 👆 🎲 🔜 ✔ 👆 💯 🎏 📁. + +& 👆 **FastAPI** 🈞 5⃣📆 ✍ 📚 📁/🕹, ♒. + +### **FastAPI** 📱 📁 + +➡ 💬 👆 ✔ 📁 📊 🔬 [🊏 🈞](./bigger-applications.md){.internal-link target=_blank}: + +``` +. +├── app +│   ├── __init__.py +│   └── main.py +``` + +📁 `main.py` 👆 ✔ 👆 **FastAPI** 📱: + + +```Python +{!../../../docs_src/app_testing/main.py!} +``` + +### 🔬 📁 + +‎ 👆 💪 ✔ 📁 `test_main.py` ⏮ 👆 💯. ⚫ 💪 🖖 🔛 🎏 🐍 📊 (🎏 📁 ⏮ `__init__.py` 📁): + +``` hl_lines="5" +. +├── app +│   ├── __init__.py +│   ├── main.py +│   └── test_main.py +``` + +↩ 👉 📁 🎏 📊, 👆 💪 ⚙ ⚖ 🗄 🗄 🎚 `app` ⚪➡ `main` 🕹 (`main.py`): + +```Python hl_lines="3" +{!../../../docs_src/app_testing/test_main.py!} +``` + +...& ✔ 📟 💯 💖 ⏭. + +## 🔬: ↔ 🖌 + +🔜 ➡ ↔ 👉 🖌 & 🚮 🌖 ℹ 👀 ❔ 💯 🎏 🍕. + +### ↔ **FastAPI** 📱 📁 + +➡ 😣 ⏮ 🎏 📁 📊 ⏭: + +``` +. +├── app +│   ├── __init__.py +│   ├── main.py +│   └── test_main.py +``` + +➡ 💬 👈 🔜 📁 `main.py` ⏮ 👆 **FastAPI** 📱 ✔ 🎏 **➡ 🛠**. + +⚫ ✔ `GET` 🛠 👈 💪 📚 ❌. + +⚫ ✔ `POST` 🛠 👈 💪 📚 📚 ❌. + +👯‍♂ *➡ 🛠* 🚚 `X-Token` 🎚. + +=== "🐍 3⃣.6⃣ & 🔛" + + ```Python + {!> ../../../docs_src/app_testing/app_b/main.py!} + ``` + +=== "🐍 3⃣.1⃣0⃣ & 🔛" + + ```Python + {!> ../../../docs_src/app_testing/app_b_py310/main.py!} + ``` + +### ↔ 🔬 📁 + +👆 💪 ‎ ℹ `test_main.py` ⏮ ↔ 💯: + +```Python +{!> ../../../docs_src/app_testing/app_b/test_main.py!} +``` + +🕐❔ 👆 💪 👩‍💻 🚶‍♀ ℹ 📚 & 👆 🚫 💭 ❔, 👆 💪 🔎 (🇺🇞🔍) ❔ ⚫ `httpx`, ⚖ ❔ ⚫ ⏮ `requests`, 🇞🇲 🔧 ⚓ 🔛 📚' 🔧. + +‎ 👆 🎏 👆 💯. + +🀶 Ⓜ.: + +* 🚶‍♀ *➡* ⚖ *🔢* 🔢, 🚮 ⚫ 📛 ⚫. +* 🚶‍♀ 🎻 💪, 🚶‍♀ 🐍 🎚 (✅ `dict`) 🔢 `json`. +* 🚥 👆 💪 📚 *📚 💜* ↩ 🎻, ⚙ `data` 🔢 ↩. +* 🚶‍♀ *🎚*, ⚙ `dict` `headers` 🔢. +* *🍪*, `dict` `cookies` 🔢. + +🌖 ℹ 🔃 ❔ 🚶‍♀ 💜 👩‍💻 (⚙ `httpx` ⚖ `TestClient`) ✅ 🇞🇲 🧟. + +!!! info + 🗒 👈 `TestClient` 📚 💜 👈 💪 🗜 🎻, 🚫 Pydantic 🏷. + + 🚥 👆 ✔ Pydantic 🏷 👆 💯 & 👆 💚 📚 🚮 💜 🈞 ⏮ 🔬, 👆 💪 ⚙ `jsonable_encoder` 🔬 [🎻 🔗 🔢](encoder.md){.internal-link target=_blank}. + +## 🏃 ⚫ + +⏮ 👈, 👆 💪 ❎ `pytest`: + +
+ +```console +$ pip install pytest + +---> 100% +``` + +
+ +⚫ 🔜 🔍 📁 & 💯 🔁, 🛠 👫, & 📄 🏁 🔙 👆. + +🏃 💯 ⏮: + +
+ +```console +$ pytest + +================ test session starts ================ +platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1 +rootdir: /home/user/code/superawesome-cli/app +plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1 +collected 6 items + +---> 100% + +test_main.py ...... [100%] + +================= 1 passed in 0.03s ================= +``` + +
diff --git a/docs/em/mkdocs.yml b/docs/em/mkdocs.yml new file mode 100644 index 000000000..df21a1093 --- /dev/null +++ b/docs/em/mkdocs.yml @@ -0,0 +1,261 @@ +site_name: FastAPI +site_description: FastAPI framework, high performance, easy to learn, fast to code, ready for production +site_url: https://fastapi.tiangolo.com/em/ +theme: + name: material + custom_dir: overrides + palette: + - media: '(prefers-color-scheme: light)' + scheme: default + primary: teal + accent: amber + toggle: + icon: material/lightbulb + name: Switch to light mode + - media: '(prefers-color-scheme: dark)' + scheme: slate + primary: teal + accent: amber + toggle: + icon: material/lightbulb-outline + name: Switch to dark mode + features: + - search.suggest + - search.highlight + - content.tabs.link + icon: + repo: fontawesome/brands/github-alt + logo: https://fastapi.tiangolo.com/img/icon-white.svg + favicon: https://fastapi.tiangolo.com/img/favicon.png + language: en +repo_name: tiangolo/fastapi +repo_url: https://github.com/tiangolo/fastapi +edit_uri: '' +plugins: +- search +- markdownextradata: + data: data +nav: +- FastAPI: index.md +- Languages: + - en: / + - az: /az/ + - de: /de/ + - em: /em/ + - es: /es/ + - fa: /fa/ + - fr: /fr/ + - he: /he/ + - hy: /hy/ + - id: /id/ + - it: /it/ + - ja: /ja/ + - ko: /ko/ + - nl: /nl/ + - pl: /pl/ + - pt: /pt/ + - ru: /ru/ + - sq: /sq/ + - sv: /sv/ + - ta: /ta/ + - tr: /tr/ + - uk: /uk/ + - zh: /zh/ +- features.md +- fastapi-people.md +- python-types.md +- 🔰 - 👩‍💻 🊮: + - tutorial/index.md + - tutorial/first-steps.md + - tutorial/path-params.md + - tutorial/query-params.md + - tutorial/body.md + - tutorial/query-params-str-validations.md + - tutorial/path-params-numeric-validations.md + - tutorial/body-multiple-params.md + - tutorial/body-fields.md + - tutorial/body-nested-models.md + - tutorial/schema-extra-example.md + - tutorial/extra-data-types.md + - tutorial/cookie-params.md + - tutorial/header-params.md + - tutorial/response-model.md + - tutorial/extra-models.md + - tutorial/response-status-code.md + - tutorial/request-forms.md + - tutorial/request-files.md + - tutorial/request-forms-and-files.md + - tutorial/handling-errors.md + - tutorial/path-operation-configuration.md + - tutorial/encoder.md + - tutorial/body-updates.md + - 🔗: + - tutorial/dependencies/index.md + - tutorial/dependencies/classes-as-dependencies.md + - tutorial/dependencies/sub-dependencies.md + - tutorial/dependencies/dependencies-in-path-operation-decorators.md + - tutorial/dependencies/global-dependencies.md + - tutorial/dependencies/dependencies-with-yield.md + - 💂‍♂: + - tutorial/security/index.md + - tutorial/security/first-steps.md + - tutorial/security/get-current-user.md + - tutorial/security/simple-oauth2.md + - tutorial/security/oauth2-jwt.md + - tutorial/middleware.md + - tutorial/cors.md + - tutorial/sql-databases.md + - tutorial/bigger-applications.md + - tutorial/background-tasks.md + - tutorial/metadata.md + - tutorial/static-files.md + - tutorial/testing.md + - tutorial/debugging.md +- 🏧 👩‍💻 🊮: + - advanced/index.md + - advanced/path-operation-advanced-configuration.md + - advanced/additional-status-codes.md + - advanced/response-directly.md + - advanced/custom-response.md + - advanced/additional-responses.md + - advanced/response-cookies.md + - advanced/response-headers.md + - advanced/response-change-status-code.md + - advanced/advanced-dependencies.md + - 🏧 💂‍♂: + - advanced/security/index.md + - advanced/security/oauth2-scopes.md + - advanced/security/http-basic-auth.md + - advanced/using-request-directly.md + - advanced/dataclasses.md + - advanced/middleware.md + - advanced/sql-databases-peewee.md + - advanced/async-sql-databases.md + - advanced/nosql-databases.md + - advanced/sub-applications.md + - advanced/behind-a-proxy.md + - advanced/templates.md + - advanced/graphql.md + - advanced/websockets.md + - advanced/events.md + - advanced/custom-request-and-route.md + - advanced/testing-websockets.md + - advanced/testing-events.md + - advanced/testing-dependencies.md + - advanced/testing-database.md + - advanced/async-tests.md + - advanced/settings.md + - advanced/conditional-openapi.md + - advanced/extending-openapi.md + - advanced/openapi-callbacks.md + - advanced/wsgi.md + - advanced/generate-clients.md +- async.md +- 🛠: + - deployment/index.md + - deployment/versions.md + - deployment/https.md + - deployment/manually.md + - deployment/concepts.md + - deployment/deta.md + - deployment/server-workers.md + - deployment/docker.md +- project-generation.md +- alternatives.md +- history-design-future.md +- external-links.md +- benchmarks.md +- help-fastapi.md +- contributing.md +- release-notes.md +markdown_extensions: +- toc: + permalink: true +- markdown.extensions.codehilite: + guess_lang: false +- mdx_include: + base_path: docs +- admonition +- codehilite +- extra +- pymdownx.superfences: + custom_fences: + - name: mermaid + class: mermaid + format: !!python/name:pymdownx.superfences.fence_code_format '' +- pymdownx.tabbed: + alternate_style: true +- attr_list +- md_in_html +extra: + analytics: + provider: google + property: G-YNEVN69SC3 + social: + - icon: fontawesome/brands/github-alt + link: https://github.com/tiangolo/fastapi + - icon: fontawesome/brands/discord + link: https://discord.gg/VQjSZaeJmf + - icon: fontawesome/brands/twitter + link: https://twitter.com/fastapi + - icon: fontawesome/brands/linkedin + link: https://www.linkedin.com/in/tiangolo + - icon: fontawesome/brands/dev + link: https://dev.to/tiangolo + - icon: fontawesome/brands/medium + link: https://medium.com/@tiangolo + - icon: fontawesome/solid/globe + link: https://tiangolo.com + alternate: + - link: / + name: en - English + - link: /az/ + name: az + - link: /de/ + name: de + - link: /em/ + name: 😉 + - link: /es/ + name: es - español + - link: /fa/ + name: fa + - link: /fr/ + name: fr - français + - link: /he/ + name: he + - link: /hy/ + name: hy + - link: /id/ + name: id + - link: /it/ + name: it - italiano + - link: /ja/ + name: ja - 日本語 + - link: /ko/ + name: ko - 한국얎 + - link: /nl/ + name: nl + - link: /pl/ + name: pl + - link: /pt/ + name: pt - português + - link: /ru/ + name: ru - русскОй язык + - link: /sq/ + name: sq - shqip + - link: /sv/ + name: sv - svenska + - link: /ta/ + name: ta - ஀மிஎ் + - link: /tr/ + name: tr - TÃŒrkçe + - link: /uk/ + name: uk - україМська ЌПва + - link: /zh/ + name: zh - 汉语 +extra_css: +- https://fastapi.tiangolo.com/css/termynal.css +- https://fastapi.tiangolo.com/css/custom.css +extra_javascript: +- https://fastapi.tiangolo.com/js/termynal.js +- https://fastapi.tiangolo.com/js/custom.js diff --git a/docs/em/overrides/.gitignore b/docs/em/overrides/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/docs/en/mkdocs.yml b/docs/en/mkdocs.yml index a5d77acbf..fc21439ae 100644 --- a/docs/en/mkdocs.yml +++ b/docs/en/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -212,6 +213,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/es/mkdocs.yml b/docs/es/mkdocs.yml index a89aeb21a..485a2dd70 100644 --- a/docs/es/mkdocs.yml +++ b/docs/es/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -115,6 +116,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/fa/mkdocs.yml b/docs/fa/mkdocs.yml index f77f82f69..914b46e1a 100644 --- a/docs/fa/mkdocs.yml +++ b/docs/fa/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/fr/mkdocs.yml b/docs/fr/mkdocs.yml index 19182f381..3774d9d42 100644 --- a/docs/fr/mkdocs.yml +++ b/docs/fr/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -132,6 +133,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/he/mkdocs.yml b/docs/he/mkdocs.yml index c5689395f..094c5d82e 100644 --- a/docs/he/mkdocs.yml +++ b/docs/he/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/hy/mkdocs.yml b/docs/hy/mkdocs.yml index bc64e78f2..ba7c687c1 100644 --- a/docs/hy/mkdocs.yml +++ b/docs/hy/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -56,6 +57,7 @@ nav: - ru: /ru/ - sq: /sq/ - sv: /sv/ + - ta: /ta/ - tr: /tr/ - uk: /uk/ - zh: /zh/ @@ -81,7 +83,7 @@ markdown_extensions: extra: analytics: provider: google - property: UA-133183413-1 + property: G-YNEVN69SC3 social: - icon: fontawesome/brands/github-alt link: https://github.com/tiangolo/fastapi @@ -104,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ @@ -134,6 +138,8 @@ extra: name: sq - shqip - link: /sv/ name: sv - svenska + - link: /ta/ + name: ta - ஀மிஎ் - link: /tr/ name: tr - TÃŒrkçe - link: /uk/ diff --git a/docs/id/mkdocs.yml b/docs/id/mkdocs.yml index 7b7875ef7..ca6e09551 100644 --- a/docs/id/mkdocs.yml +++ b/docs/id/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/it/mkdocs.yml b/docs/it/mkdocs.yml index 9393c3663..4633dd017 100644 --- a/docs/it/mkdocs.yml +++ b/docs/it/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/ja/mkdocs.yml b/docs/ja/mkdocs.yml index 3703398af..9f4342e76 100644 --- a/docs/ja/mkdocs.yml +++ b/docs/ja/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -149,6 +150,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/ko/mkdocs.yml b/docs/ko/mkdocs.yml index 29b684371..7d429478c 100644 --- a/docs/ko/mkdocs.yml +++ b/docs/ko/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -117,6 +118,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/nl/mkdocs.yml b/docs/nl/mkdocs.yml index d9b1bc1b8..e187ee383 100644 --- a/docs/nl/mkdocs.yml +++ b/docs/nl/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/pl/mkdocs.yml b/docs/pl/mkdocs.yml index 8d0d20239..c781f9783 100644 --- a/docs/pl/mkdocs.yml +++ b/docs/pl/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -108,6 +109,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/pt/mkdocs.yml b/docs/pt/mkdocs.yml index 2a8302715..a8ab4cb32 100644 --- a/docs/pt/mkdocs.yml +++ b/docs/pt/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -142,6 +143,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/ru/mkdocs.yml b/docs/ru/mkdocs.yml index 4b9727872..808479198 100644 --- a/docs/ru/mkdocs.yml +++ b/docs/ru/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -119,6 +120,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/sq/mkdocs.yml b/docs/sq/mkdocs.yml index f24c7c503..2766b0adf 100644 --- a/docs/sq/mkdocs.yml +++ b/docs/sq/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/sv/mkdocs.yml b/docs/sv/mkdocs.yml index 574cc5abd..5aa37ece6 100644 --- a/docs/sv/mkdocs.yml +++ b/docs/sv/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/ta/mkdocs.yml b/docs/ta/mkdocs.yml index e31821e4b..884115044 100644 --- a/docs/ta/mkdocs.yml +++ b/docs/ta/mkdocs.yml @@ -41,10 +41,12 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ - he: /he/ + - hy: /hy/ - id: /id/ - it: /it/ - ja: /ja/ @@ -81,7 +83,7 @@ markdown_extensions: extra: analytics: provider: google - property: UA-133183413-1 + property: G-YNEVN69SC3 social: - icon: fontawesome/brands/github-alt link: https://github.com/tiangolo/fastapi @@ -104,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ @@ -112,6 +116,8 @@ extra: name: fr - français - link: /he/ name: he + - link: /hy/ + name: hy - link: /id/ name: id - link: /it/ diff --git a/docs/tr/mkdocs.yml b/docs/tr/mkdocs.yml index 19dcf2099..23d6b9708 100644 --- a/docs/tr/mkdocs.yml +++ b/docs/tr/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -110,6 +111,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/uk/mkdocs.yml b/docs/uk/mkdocs.yml index b8152e821..e9339997f 100644 --- a/docs/uk/mkdocs.yml +++ b/docs/uk/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -105,6 +106,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/ diff --git a/docs/zh/mkdocs.yml b/docs/zh/mkdocs.yml index d25881c43..906fcf1d6 100644 --- a/docs/zh/mkdocs.yml +++ b/docs/zh/mkdocs.yml @@ -41,6 +41,7 @@ nav: - en: / - az: /az/ - de: /de/ + - em: /em/ - es: /es/ - fa: /fa/ - fr: /fr/ @@ -162,6 +163,8 @@ extra: name: az - link: /de/ name: de + - link: /em/ + name: 😉 - link: /es/ name: es - español - link: /fa/