From 1755abd63444ad5ae4c29b398a8f02f090ee0005 Mon Sep 17 00:00:00 2001 From: davidkadaria Date: Fri, 26 Jul 2024 11:37:34 +0400 Subject: [PATCH] Translate Dependencies section --- docs/ka/docs/index.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/ka/docs/index.md b/docs/ka/docs/index.md index 21e6e60e1..684d6947c 100644 --- a/docs/ka/docs/index.md +++ b/docs/ka/docs/index.md @@ -582,48 +582,68 @@ To understand more about it, see the section წარმადობის ტესტები (Benchmarks). ## Dependencies +## პაკეტები Used by Pydantic: +Pydantic-ის მიერ გამოიყენება: * email_validator - for email validation. +* email_validator - მეილის ვალიდაციისათვის. * pydantic-settings - for settings management. +* pydantic-settings - პარამეტრების სამართავად. * pydantic-extra-types - for extra types to be used with Pydantic. +* pydantic-extra-types - Pydantic-თან ერთად გამოყენებადი დამატებითი ტიპებისათვის. Used by Starlette: +Starlette-ის მიერ გამოიყენება: * httpx - Required if you want to use the `TestClient`. +* httpx - სავალდებულოა, თუკი გსურთ, რომ გამოიყენოთ `TestClient`-ი . * jinja2 - Required if you want to use the default template configuration. +* jinja2 - სავალდებულოა, თუკი გსურთ, რომ გამოიყენოთ შაბლონის ნაგულისხმევი კონფიგურაცია. * python-multipart - Required if you want to support form "parsing", with `request.form()`. +* python-multipart - სავალდებულოა, თუკი გსურთ, რომ გქონდეთ ფორმების „პარსინგის“ შესაძლებლობა `request.form()`-ის გამოყენებით. Used by FastAPI / Starlette: +FastAPI / Starlette-ის მიერ გამოიყენება: * uvicorn - for the server that loads and serves your application. +* uvicorn - სერვერისთვის, რომელიც ემსახურება თქვენი აპლიკაციის ჩატვირთვას და მუშაობას. * `fastapi-cli` - to provide the `fastapi` command. +* `fastapi-cli` - უზრუნველყოფს `fastapi` ბრძანების ხელმისაწვდომობას. When you install `fastapi` it comes these standard dependencies. +`fastapi`-ის ინსტალირებისას, მასთან ერთად ინსტალირდება ზემოთ ჩამოთვლილი სტანდარტული პაკეტებიც. Additional optional dependencies: +დამატებითი არასავალდებულო პაკეტები: * orjson - Required if you want to use `ORJSONResponse`. +* orjson - სავალდებულოა, თუკი გსურთ, რომ გამოიყენოთ `ORJSONResponse`-ი. * ujson - Required if you want to use `UJSONResponse`. +* ujson - სავალდებულოა, თუკი გსურთ, რომ გამოიყენოთ `UJSONResponse`-ი. ## `fastapi-slim` If you don't want the extra standard optional dependencies, install `fastapi-slim` instead. +თუ არ გჭირდებათ დამატებითი არასავალდებულო სტანდარტული პაკეტები, `fastapi`-ის ნაცვლად დააინსტალირეთ `fastapi-slim`-ი. When you install with: +როდესაც ინსტალაციას ახორციელებთ შემდეგი ბრძანებით: ```bash pip install fastapi ``` ...it includes the same code and dependencies as: +...ინსტალირდება იგივე კოდი და პაკეტები, რაც დაინსტალირდებოდა შემდეგი ბრძანების გამოყენების შემთხვევაში: ```bash pip install "fastapi-slim[standard]" ``` The standard extra dependencies are the ones mentioned above. +არასავალდებულო სტანდარტული პაკეტები გახლავთ ზემოთ ნახსენები პაკეტები. ## License