- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 2,042 for external (0.04 sec)
-
docs/nl/docs/environment-variables.md
Deze informatie is handig wanneer je meer wilt weten over [virtuele omgevingen](virtual-environments.md){.internal-link target=_blank}. ## Conclusion Hiermee heb je basiskennis van wat **omgevingsvariabelen** zijn en hoe je ze in Python kunt gebruiken. Je kunt er ook meer over lezen op de <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">Wikipedia over omgevingsvariabelen</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 20 11:13:32 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/em/docs/tutorial/background-tasks.md
๐ ๐ช ๐ ๐ โน <a href="https://www.starlette.io/background/" class="external-link" target="_blank">๐ ๐ ๐ฉบ ๐ฅ ๐</a>. ## โ ๐ฅ ๐ ๐ช ๐ญ ๐๏ธ ๐ฅ ๐ & ๐ ๐ซ ๐ฏ ๐ช โซ๏ธ ๐ ๐ ๐ ๏ธ (๐ผ, ๐ ๐ซ ๐ช ๐ฐ ๐พ, ๐ข, โ๏ธ), ๐ ๐ช ๐ฐ โช๏ธโก๏ธ โ๏ธ ๐ ๐ฆ ๐งฐ ๐ <a href="https://docs.celeryq.dev" class="external-link" target="_blank">๐ฅ</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
You can achieve that using <a href="https://docs.pydantic.dev/latest/concepts/validators/#field-after-validator" class="external-link" target="_blank">Pydantic's `AfterValidator`</a> inside of `Annotated`. /// tip Pydantic also has <a href="https://docs.pydantic.dev/latest/concepts/validators/#field-before-validator" class="external-link" target="_blank">`BeforeValidator`</a> and others. ๐ค ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0) -
docs/ja/docs/tutorial/testing.md
# ใในใ <a href="https://www.starlette.io/testclient/" class="external-link" target="_blank">Starlette</a> ใฎใใใใงใ**FastAPI** ใขใใชใฑใผใทใงใณใฎใในใใฏ็ฐกๅใงๆฅฝใใใใฎใซใชใฃใฆใใพใใ <a href="https://www.python-httpx.org" class="external-link" target="_blank">HTTPX</a> ใใใผในใชใฎใงใ้ๅธธใซไฝฟใใใใ็ดๆ็ใงใใ ใใใไฝฟ็จใใใจใ**FastAPI** ใจๅ ฑใซ <a href="https://docs.pytest.org/" class="external-link" target="_blank">pytest</a> ใ็ดๆฅๅฉ็จใงใใพใใ ## `TestClient` ใไฝฟ็จ `TestClient` ใใคใณใใผใใใพใใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-data-types.md
* Pydantic also allows representing it as a "ISO 8601 time diff encoding", <a href="https://docs.pydantic.dev/latest/concepts/serialization/#custom-serializers" class="external-link" target="_blank">see the docs for more info</a>. * `frozenset`: * In requests and responses, treated the same as a `set`: * In requests, a list will be read, eliminating duplicates and converting it to a `set`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/es/docs/how-to/configure-swagger-ui.md
# Configurar Swagger UI Puedes configurar algunos <a href="https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/" class="external-link" target="_blank">parรกmetros adicionales de Swagger UI</a>. Para configurarlos, pasa el argumento `swagger_ui_parameters` al crear el objeto de la app `FastAPI()` o a la funciรณn `get_swagger_ui_html()`. `swagger_ui_parameters` recibe un diccionario con las configuraciones pasadas directamente a Swagger UI.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 3K bytes - Viewed (0) -
docs/es/docs/tutorial/extra-data-types.md
* Pydantic tambiรฉn permite representarlo como una "codificaciรณn de diferencia horaria ISO 8601", <a href="https://docs.pydantic.dev/latest/concepts/serialization/#custom-serializers" class="external-link" target="_blank">consulta la documentaciรณn para mรกs informaciรณn</a>. * `frozenset`: * En requests y responses, tratado igual que un `set`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.8K bytes - Viewed (0) -
docs/en/docs/how-to/configure-swagger-ui.md
# Configure Swagger UI { #configure-swagger-ui } You can configure some extra <a href="https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/" class="external-link" target="_blank">Swagger UI parameters</a>. To configure them, pass the `swagger_ui_parameters` argument when creating the `FastAPI()` app object or to the `get_swagger_ui_html()` function. `swagger_ui_parameters` receives a dictionary with the configurations passed to Swagger UI directly.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.9K bytes - Viewed (0) -
docs/de/docs/how-to/custom-request-and-route.md
/// ## Anwendungsfรคlle Einige Anwendungsfรคlle sind: * Konvertieren von Nicht-JSON-Requestbodys nach JSON (z. B. <a href="https://msgpack.org/index.html" class="external-link" target="_blank">`msgpack`</a>). * Dekomprimierung gzip-komprimierter Requestbodys. * Automatisches Loggen aller Requestbodys. ## Handhaben von benutzerdefinierten Requestbody-Kodierungen
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.1K bytes - Viewed (0) -
docs/ko/docs/tutorial/middleware.md
/// tip | ํ ์ฌ์ฉ์ ์ ์ ํค๋๋ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers" class="external-link" target="_blank">'X-' ์ ๋์ฌ๋ฅผ ์ฌ์ฉ</a>ํ์ฌ ์ถ๊ฐํ ์ ์์ต๋๋ค. ๊ทธ๋ฌ๋ ๋ง์ฝ ํด๋ผ์ด์ธํธ์ ๋ธ๋ผ์ฐ์ ์์ ๋ณผ ์ ์๋ ์ฌ์ฉ์ ์ ์ ํค๋๋ฅผ ๊ฐ์ง๊ณ ์๋ค๋ฉด, ๊ทธ๊ฒ๋ค์ CORS ์ค์ ([CORS (Cross-Origin Resource Sharing)](cors.md){.internal-link target=_blank})์ <a href="https://www.starlette.io/middleware/#corsmiddleware" class="external-link" target="_blank">Starlette CORS ๋ฌธ์</a>์ ๋ช ์๋ `expose_headers` ๋งค๊ฐ๋ณ์๋ฅผ ์ด์ฉํ์ฌ ํค๋๋ค์ ์ถ๊ฐํ์ฌ์ผํฉ๋๋ค. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0)