- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 850 for tutoriel (0.09 seconds)
-
docs/en/docs/reference/staticfiles.md
# Static Files - `StaticFiles` You can use the `StaticFiles` class to serve static files, like JavaScript, CSS, images, etc. Read more about it in the [FastAPI docs for Static Files](https://fastapi.tiangolo.com/tutorial/static-files/). You can import it directly from `fastapi.staticfiles`: ```python from fastapi.staticfiles import StaticFiles ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Apr 18 19:53:19 GMT 2024 - 391 bytes - Click Count (0) -
docs/es/docs/tutorial/query-param-models.md
## Revisa la Documentación { #check-the-docs } Puedes ver los parámetros query en la UI de documentación en `/docs`: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## Prohibir Parámetros Query Extras { #forbid-extra-query-parameters }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 2.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/debugging.md
* "`Python: Current File (Integrated Terminal)`" seçeneğiyle debugger'ı çalıştırın. Böylece server, **FastAPI** kodunuzla başlar; breakpoint'lerinizde durur vb. Aşağıdaki gibi görünebilir: <img src="/img/tutorial/debugging/image01.png"> --- PyCharm kullanıyorsanız şunları yapabilirsiniz: * "Run" menüsünü açın. * "Debug..." seçeneğini seçin. * Bir context menü açılır.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/json-base64-bytes.md
# 使用 Base64 表示位元組的 JSON { #json-with-bytes-as-base64 } 如果你的應用需要收發 JSON 資料,但其中需要包含二進位資料,你可以將它以 base64 編碼。 ## Base64 與檔案 { #base64-vs-files } 請先考慮是否能用 [請求檔案](../tutorial/request-files.md) 來上傳二進位資料,並用 [自訂回應 - FileResponse](./custom-response.md#fileresponse--fileresponse-) 來傳送二進位資料,而不是把它們編碼進 JSON。 JSON 只能包含 UTF-8 編碼的字串,因此無法直接包含原始位元組。 Base64 可以把二進位資料編碼成字串,但為此會使用比原始二進位資料更多的字元,因此通常比直接使用檔案來得沒那麼有效率。 只有在確實必須把二進位資料包含在 JSON 裡,且無法改用檔案時,才使用 base64。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/zh/docs/tutorial/debugging.md
然后它会使用你的 **FastAPI** 代码开启服务器,停在断点处,等等。 看起来可能是这样: <img src="/img/tutorial/debugging/image01.png"> --- 如果使用 Pycharm,你可以: * 打开「运行」菜单。 * 选中「调试...」。 * 然后出现一个上下文菜单。 * 选择要调试的文件(本例中的 `main.py`)。 然后它会使用你的 **FastAPI** 代码开启服务器,停在断点处,等等。 看起来可能是这样:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/simple-oauth2.md
"Authorize" butonuna tıklayın. Şu bilgileri kullanın: User: `johndoe` Password: `secret` <img src="/img/tutorial/security/image04.png"> Sistemde authenticate olduktan sonra şöyle görürsünüz: <img src="/img/tutorial/security/image05.png"> ### Kendi Kullanıcı Verinizi Alma { #get-your-own-user-data } Şimdi `/users/me` path’inde `GET` operasyonunu kullanın.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/tr/docs/advanced/sub-applications.md
<img src="/img/tutorial/sub-applications/image01.png"> Sonra alt uygulamanın dokümanlarını [http://127.0.0.1:8000/subapi/docs](http://127.0.0.1:8000/subapi/docs) adresinden açın. Alt uygulama için otomatik API dokümanlarını göreceksiniz; yalnızca onun kendi _path operation_’larını içerir ve hepsi doğru alt-path öneki `/subapi` altında yer alır: <img src="/img/tutorial/sub-applications/image02.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/de/docs/tutorial/query-param-models.md
## Die Dokumentation testen { #check-the-docs } Sie können die Query-Parameter in der Dokumentations-Oberfläche unter `/docs` einsehen: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## Zusätzliche Query-Parameter verbieten { #forbid-extra-query-parameters }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/en/docs/tutorial/query-param-models.md
## Check the Docs { #check-the-docs } You can see the query parameters in the docs UI at `/docs`: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## Forbid Extra Query Parameters { #forbid-extra-query-parameters }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 2.2K bytes - Click Count (0) -
docs/uk/docs/tutorial/debugging.md
* Запустіть дебагер з опцією "`Python: Current File (Integrated Terminal)`". Після цього він запустить сервер з вашим кодом **FastAPI**, зупиниться на точках зупину тощо. Ось як це може виглядати: <img src="/img/tutorial/debugging/image01.png"> --- Якщо ви використовуєте PyCharm, ви можете: * Відкрити меню «Run». * Вибрати опцію «Debug...». * Потім з'явиться контекстне меню.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 3.6K bytes - Click Count (0)