- Sort Score
- Result 10 results
- Languages All
Results 951 - 960 of 1,962 for fastapi (0.09 sec)
-
docs/em/docs/how-to/extending-openapi.md
๐ ๐ ๐ ๐ ๐ โ. ## ๐ ๐ ๏ธ ๐ (๐ข) ๐ ๏ธ, โฉ. `FastAPI` ๐ธ (๐) โ๏ธ `.openapi()` ๐ฉโ๐ฌ ๐ ๐ ๐จ ๐ ๐. ๐ ๐ธ ๐ ๐, *โก ๐ ๏ธ* `/openapi.json` (โ๏ธ โซ๏ธโ ๐ โ ๐ `openapi_url`) ยฎ. โซ๏ธ ๐จ ๐ป ๐จ โฎ๏ธ ๐ ๐ธ `.openapi()` ๐ฉโ๐ฌ. ๐ข, โซ๏ธโ ๐ฉโ๐ฌ `.openapi()` ๐จ โ ๐ `.openapi_schema` ๐ ๐ฅ โซ๏ธ โ๏ธ ๐ & ๐จ ๐ซ. ๐ฅ โซ๏ธ ๐ซ, โซ๏ธ ๐ ๐ซ โ๏ธ ๐ ๐ข `fastapi.openapi.utils.get_openapi`. & ๐ ๐ข `get_openapi()` ๐จ ๐ข:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params-numeric-validations.md
``` //// /// info FastAPI added support for `Annotated` (and started recommending it) in version 0.95.0. If you have an older version, you would get errors when trying to use `Annotated`. Make sure you [Upgrade the FastAPI version](../deployment/versions.md#upgrading-the-fastapi-versions){.internal-link target=_blank} to at least 0.95.1 before using `Annotated`. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
* ๐ฆ `client_secret` (๐ฅ ๐ซ ๐ช โซ๏ธ ๐ ๐ผ). /// info `OAuth2PasswordRequestForm` ๐ซ ๐ ๐ **FastAPI** `OAuth2PasswordBearer`. `OAuth2PasswordBearer` โ **FastAPI** ๐ญ ๐ โซ๏ธ ๐โโ โ. โซ๏ธ ๐ฎ ๐ ๐ ๐. โ๏ธ `OAuth2PasswordRequestForm` ๐ ๐ ๐ ๐ ๐ช โ๏ธ โ ๐, โ๏ธ ๐ ๐ช โ๏ธ ๐ฃ `Form` ๐ข ๐. โ๏ธ โซ๏ธ โ โ๏ธ ๐ผ, โซ๏ธ ๐ **FastAPI** ๐, โ โซ๏ธ โฉ. /// ### โ๏ธ ๐จ ๐ฝ /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0) -
docs_src/body_multiple_params/tutorial003_an_py39.py
from typing import Annotated, Union from fastapi import Body, FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: Union[str, None] = None price: float tax: Union[float, None] = None class User(BaseModel): username: str full_name: Union[str, None] = None @app.put("/items/{item_id}") async def update_item(
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 575 bytes - Viewed (0) -
docs_src/extra_data_types/tutorial001_an_py39.py
from datetime import datetime, time, timedelta from typing import Annotated, Union from uuid import UUID from fastapi import Body, FastAPI app = FastAPI() @app.put("/items/{item_id}") async def read_items( item_id: UUID, start_datetime: Annotated[datetime, Body()], end_datetime: Annotated[datetime, Body()], process_after: Annotated[timedelta, Body()], repeat_at: Annotated[Union[time, None], Body()] = None, ):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Apr 19 00:11:40 UTC 2024 - 801 bytes - Viewed (0) -
docs_src/openapi_webhooks/tutorial001.py
from datetime import datetime from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Subscription(BaseModel): username: str monthly_fee: float start_date: datetime @app.webhooks.post("new-subscription") def new_subscription(body: Subscription): """ When a new user subscribes to your service we'll send you a POST request with this
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 20 09:00:44 UTC 2023 - 550 bytes - Viewed (0) -
docs/en/docs/advanced/index.md
Or it might be the case that you just prefer to take other courses because they adapt better to your learning style. Some course providers โจ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} โจ, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/de/docs/tutorial/request-files.md
Wenn Sie die `async`-Methoden verwenden, fรผhrt **FastAPI** die Datei-Methoden in einem <abbr title="Mehrere unabhรคngige Kindprozesse">Threadpool</abbr> aus und erwartet sie. /// /// note | "Technische Details zu Starlette" **FastAPI**s `UploadFile` erbt direkt von **Starlette**s `UploadFile`, fรผgt aber ein paar notwendige Teile hinzu, um es kompatibel mit **Pydantic** und anderen Teilen von FastAPI zu machen. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/path-params.md
/// check | "ๆฃๆฅ" **FastAPI** ไฝฟ็จ Python ็ฑปๅๅฃฐๆๅฎ็ฐไบๆฐๆฎๆ ก้ชใ ๆณจๆ๏ผไธ้ข็้่ฏฏๆธ ๆฐๅฐๆๅบไบๆช้่ฟๆ ก้ช็ๅ ทไฝๅๅ ใ ่ฟๅจๅผๅ่ฐ่ฏไธ API ไบคไบ็ไปฃ็ ๆถ้ๅธธๆ็จใ /// ## ๆฅ็ๆๆกฃ ่ฎฟ้ฎ <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>๏ผๆฅ็่ชๅจ็ๆ็ API ๆๆกฃ๏ผ <img src="/img/tutorial/path-params/image01.png"> /// check | "ๆฃๆฅ" ่ฟๆฏไฝฟ็จ Python ็ฑปๅๅฃฐๆ๏ผ**FastAPI** ๆไพไบ๏ผ้ๆ Swagger UI ็๏ผAPI ๆๆกฃใ ๆณจๆ๏ผ่ทฏๅพๅๆฐ็็ฑปๅๆฏๆดๆฐใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.6K bytes - Viewed (0) -
docs/de/docs/advanced/openapi-webhooks.md
## Webhooks mit **FastAPI** und OpenAPI dokumentieren
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.3K bytes - Viewed (0)