- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 1,976 for Fastapi (0.08 sec)
-
docs/en/docs/tutorial/security/first-steps.md
/// info The <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a> package is automatically installed with **FastAPI** when you run the `pip install "fastapi[standard]"` command. However, if you use the `pip install fastapi` command, the `python-multipart` package is not included by default.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.2K bytes - Viewed (0) -
docs/it/docs/index.md
<a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a> </p> <p align="center"> FastAPI framework, alte prestazioni, facile da imparare, rapido da implementare, pronto per il rilascio in produzione </p> <p align="center"> <a href="https://travis-ci.com/fastapi/fastapi" target="_blank">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 19.2K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/dependencies-with-yield.md
โ๏ธ ๐ซ ๐ ๐ข โฎ๏ธ ๐ `yield`. ๐ โซ๏ธโ **FastAPI** โ๏ธ ๐ ๐ โฎ๏ธ `yield`. โ๏ธ ๐ ๐ซ โ๏ธ โ๏ธ ๐จโ๐จ FastAPI ๐ (& ๐ ๐ซ๐ ๐ซ). FastAPI ๐ โซ๏ธ ๐ ๐.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/en/overrides/main.html
<a class="announce-link" href="https://twitter.com/fastapi" target="_blank"> <span class="twemoji twitter"> {% include ".icons/fontawesome/brands/twitter.svg" %} </span> Follow <strong>@fastapi</strong> on <strong>Twitter</strong> to stay updated </a> </div> <div class="item"> <a class="announce-link" href="https://fastapi.tiangolo.com/newsletter/"> <span class="twemoji">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 09:13:26 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/zh/docs/advanced/dataclasses.md
6. ่ฟ่กไปฃ็ ่ฟๅ็ๆฏๅ ๅซ `items` ็ๅญๅ ธ๏ผ`items` ๆฏๆฐๆฎ็ฑปๅ่กจ๏ผ FastAPI ไป่ฝๆๆฐๆฎ<abbr title="ๆๆฐๆฎ่ฝฌๆขไธบๅฏไปฅไผ ่พ็ๆ ผๅผ">ๅบๅๅ</abbr>ไธบ JSON๏ผ 7. ่ฟ่กไปฃ็ ไธญ๏ผ`response_model` ็็ฑปๅๆณจ่งฃๆฏ `Author` ๆฐๆฎ็ฑปๅ่กจ๏ผ ๅไธๆฌก๏ผๅฏไปฅๆ `dataclasses` ไธๆ ๅ็ฑปๅๆณจ่งฃไธ่ตทไฝฟ็จ๏ผ 8. ๆณจๆ๏ผ*่ทฏๅพๆไฝๅฝๆฐ*ไฝฟ็จ็ๆฏๆฎ้ๅฝๆฐ๏ผไธๆฏๅผๆญฅๅฝๆฐ๏ผ ไธๅพๅธธไธๆ ท๏ผๅจ FastAPI ไธญ๏ผๅฏไปฅๆ้็ปๅๆฎ้ๅฝๆฐไธๅผๆญฅๅฝๆฐ๏ผ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.7K bytes - Viewed (0) -
tests/test_repeated_cookie_headers.py
from fastapi import Depends, FastAPI, Response from fastapi.testclient import TestClient app = FastAPI() def set_cookie(*, response: Response): response.set_cookie("cookie-name", "cookie-value") return {} def set_indirect_cookie(*, dep: str = Depends(set_cookie)): return dep @app.get("/directCookie") def get_direct_cookie(dep: str = Depends(set_cookie)): return {"dep": dep}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Jun 13 12:44:51 UTC 2020 - 792 bytes - Viewed (0) -
docs/pt/docs/deployment/cloud.md
# Implantar FastAPI em provedores de nuvem Vocรช pode usar praticamente **qualquer provedor de nuvem** para implantar seu aplicativo FastAPI. Na maioria dos casos, os principais provedores de nuvem tรชm guias para implantar o FastAPI com eles. ## Provedores de Nuvem - Patrocinadores
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Sep 21 21:37:48 UTC 2024 - 1.3K bytes - Viewed (0) -
tests/test_generic_parameterless_depends.py
from typing import TypeVar from fastapi import Depends, FastAPI from fastapi.testclient import TestClient from typing_extensions import Annotated app = FastAPI() T = TypeVar("T") Dep = Annotated[T, Depends()] class A: pass class B: pass @app.get("/a") async def a(dep: Dep[A]): return {"cls": dep.__class__.__name__} @app.get("/b") async def b(dep: Dep[B]):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 02 02:52:56 UTC 2024 - 1.8K bytes - Viewed (0) -
tests/test_openapi_servers.py
from dirty_equals import IsOneOf from fastapi import FastAPI from fastapi.testclient import TestClient app = FastAPI( servers=[ {"url": "/", "description": "Default, relative server"}, { "url": "http://staging.localhost.tiangolo.com:8000", "description": "Staging but actually localhost still", }, {"url": "https://prod.example.com"}, ] ) @app.get("/foo") def foo():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 2K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
๐ฅ โ ๐ข ๐จ ๐ `BaseUser`, โ๏ธ ๐ฅ ๐ค ๐ฌ `UserIn` ๐. ๐จโ๐จ, โ, & ๐ ๐งฐ ๐ ๐ซ ๐ญ ๐ ๐ โฉ๏ธ, โจ โ, `UserIn` ๐ฟ `BaseUser`, โ โ โซ๏ธ *โ* ๐ ๐โ โซ๏ธโ โ ๐ณ ๐ `BaseUser`. ### FastAPI ๐ฝ ๐ฅ ๐, FastAPI, โซ๏ธ ๐ ๐ ๐จ ๐ & โ ๐ญ ๐ โซ๏ธโ ๐ ๐จ ๐ **๐ด** ๐ ๐ ๐ฃ ๐. FastAPI ๐จ ๐ ๐ ๐ โฎ๏ธ Pydantic โ ๐ญ ๐ ๐ ๐ ๐ซ ๐ ๐งฌ ๐ซ โ๏ธ ๐จ ๐ฝ ๐ฅ, โช ๐ ๐ช ๐ ๐ ๐ฌ ๐ ๐ ๐ฝ ๐ โซ๏ธโ ๐ ๐. ๐ ๐, ๐ ๐ช ๐ค ๐ ๐ฏโโ๏ธ ๐: ๐ โ โฎ๏ธ **๐ญ ๐โ๐ฆบ** & **๐ฝ ๐ฅ**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.8K bytes - Viewed (0)