- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 128 for imported2 (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/fr/docs/tutorial/request-forms.md
Assurez-vous de créer un [environnement virtuel](../virtual-environments.md), de l'activer, puis installez-le, par exemple : ```console $ pip install python-multipart ``` /// ## Importer `Form` { #import-form } Importez `Form` depuis `fastapi` : {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *} ## Définir les paramètres `Form` { #define-form-parameters }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/request-files.md
```console $ pip install python-multipart ``` C'est parce que les fichiers téléversés sont envoyés en « données de formulaire ». /// ## Importer `File` { #import-file } Importez `File` et `UploadFile` depuis `fastapi` : {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *} ## Définir des paramètres `File` { #define-file-parameters }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/background-tasks.md
## Detalhes técnicos { #technical-details } A classe `BackgroundTasks` vem diretamente de [`starlette.background`](https://www.starlette.dev/background/). Ela é importada/incluída diretamente no FastAPI para que você possa importá-la de `fastapi` e evitar importar acidentalmente a alternativa `BackgroundTask` (sem o `s` no final) de `starlette.background`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/handling-errors.md
## Utiliser `HTTPException` { #use-httpexception } Pour renvoyer au client des réponses HTTP avec des erreurs, vous utilisez `HTTPException`. ### Importer `HTTPException` { #import-httpexception } {* ../../docs_src/handling_errors/tutorial001_py310.py hl[1] *} ### Lever une `HTTPException` dans votre code { #raise-an-httpexception-in-your-code }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10K bytes - Click Count (0) -
docs/en/docs/reference/middleware.md
::: fastapi.middleware.cors.CORSMiddleware It can be imported from `fastapi`: ```python from fastapi.middleware.cors import CORSMiddleware ``` ::: fastapi.middleware.gzip.GZipMiddleware It can be imported from `fastapi`: ```python from fastapi.middleware.gzip import GZipMiddleware ``` ::: fastapi.middleware.httpsredirect.HTTPSRedirectMiddleware It can be imported from `fastapi`: ```python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 11:54:23 GMT 2026 - 845 bytes - Click Count (0) -
docs/pt/docs/tutorial/bigger-applications.md
### Importe o `FastAPI` { #import-fastapi } Você importa e cria uma classe `FastAPI` normalmente. E podemos até declarar [dependências globais](dependencies/global-dependencies.md) que serão combinadas com as dependências para cada `APIRouter`: {* ../../docs_src/bigger_applications/app_an_py310/main.py hl[1,3,7] title["app/main.py"] *} ### Importe o `APIRouter` { #import-the-apirouter }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 20.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/testing.md
Vous devez créer un [environnement virtuel](../virtual-environments.md), l’activer, puis y installer le paquet, par exemple : ```console $ pip install httpx ``` /// Importez `TestClient`. Créez un `TestClient` en lui passant votre application **FastAPI**. Créez des fonctions dont le nom commence par `test_` (c’est la convention standard de `pytest`).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 6.5K bytes - Click Count (0) -
src/README.vendor
Use caution when passing '-u' to 'go get'. The '-u' flag updates modules providing all transitively imported packages, not only the module providing the target package. Note that 'go mod vendor' only copies packages that are transitively imported by packages in the current module. If a new package is needed, it should be imported before running 'go mod vendor'. Go release cycle considerations ===============================
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Jan 26 20:37:19 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/distributed/iam-import-with-openid.sh
fi pkill minio docker rm -f $(docker ps -aq) rm -rf /tmp/openid{1..4} export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:22000" # The service account used below is already present in iam configuration getting imported export MC_HOST_myminio1="http://dillon-service-2:dillon-service-2@localhost:22000" # Start MinIO instance export CI=true if [ ! -f ./mc ]; thenCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Sep 17 16:45:46 GMT 2024 - 2.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/first-steps.md
Vous pouvez configurer l’emplacement de votre application dans un fichier `pyproject.toml` comme : ```toml [tool.fastapi] entrypoint = "main:app" ``` Ce `entrypoint` indiquera à la commande `fastapi` qu’elle doit importer l’application comme : ```python from main import app ``` Si votre code est structuré comme : ``` . ├── backend │ ├── main.py │ ├── __init__.py ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 15.1K bytes - Click Count (0)