- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 890 for docs_src (0.19 sec)
-
docs/ru/docs/contributing.md
В большинстве случаев эти блоки кода представляют собой вполне законченные приложения, которые можно запускать как есть. На самом деле, эти блоки кода не написаны внутри Markdown, это Python файлы в директории `./docs_src/`. И эти Python файлы включаются/вводятся в документацию при создании сайта. ### Тестирование документации Фактически, большинство тестов запускаются с примерами исходных файлов в документации.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.5K bytes - Viewed (0) -
docs/em/docs/contributing.md
/// tip 👆 🚫 💪 👀 📟 `./scripts/docs.py`, 👆 ⚙️ ⚫️ 📋 ⏸. /// 🌐 🧾 ✍ 📁 📁 `./docs/en/`. 📚 🔰 ✔️ 🍫 📟. 🌅 💼, 👫 🍫 📟 ☑ 🏁 🈸 👈 💪 🏃. 👐, 👈 🍫 📟 🚫 ✍ 🔘 ✍, 👫 🐍 📁 `./docs_src/` 📁. & 👈 🐍 📁 🔌/💉 🧾 🕐❔ 🏭 🕸. ### 🩺 💯 🏆 💯 🤙 🏃 🛡 🖼 ℹ 📁 🧾. 👉 ℹ ⚒ 💭 👈: * 🧾 🆙 📅. * 🧾 🖼 💪 🏃. * 🌅 ⚒ 📔 🧾, 🚚 💯 💰.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.4K bytes - Viewed (0) -
docs/fr/docs/contributing.md
En fait, ces blocs de code ne sont pas écrits à l'intérieur du Markdown, ce sont des fichiers Python dans le répertoire `./docs_src/`. Et ces fichiers Python sont inclus/injectés dans la documentation lors de la génération du site. ### Documentation pour les tests
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.2K bytes - Viewed (0) -
docs/zh/docs/contributing.md
/// tip 你不需要去了解 `./scripts/docs.py` 中的代码,只需在命令行中使用它即可。 /// 所有文档均在 `./docs/en/` 目录中以 Markdown 文件格式保存。 许多的教程中都有一些代码块,大多数情况下,这些代码是可以直接运行的,因为这些代码不是写在 Markdown 文件里的,而是写在 `./docs_src/` 目录中的 Python 文件里。 在生成站点的时候,这些 Python 文件会被打包进文档中。 ### 测试文档 大多数的测试实际上都是针对文档中的示例源文件运行的。 这有助于确保: * 文档始终是最新的。 * 文档示例可以直接运行。 * 绝大多数特性既在文档中得以阐述,又通过测试覆盖进行保障。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12.8K bytes - Viewed (0) -
docs/ja/docs/contributing.md
/// すべてのドキュメントが、Markdown形式で`./docs/en/`ディレクトリにあります。 多くのチュートリアルには、コードブロックがあります。 ほとんどの場合、これらのコードブロックは、実際にそのまま実行できる完全なアプリケーションです。 実際、これらのコードブロックはMarkdown内には記述されておらず、`./docs_src/`ディレクトリのPythonファイルです。 そして、これらのPythonファイルは、サイトの生成時にドキュメントに含まれるか/挿入されます。 ### ドキュメントのテスト ほとんどのテストは、実際にドキュメント内のサンプルソースファイルに対して実行されます。 これにより、次のことが確認できます: * ドキュメントが最新であること。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.6K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* 📝 Fix async test example not to trigger DeprecationWarning. PR [#12084](https://github.com/fastapi/fastapi/pull/12084) by [@marcinsulikowski](https://github.com/marcinsulikowski). * 📝 Update `docs_src/path_params_numeric_validations/tutorial006.py`. PR [#11478](https://github.com/fastapi/fastapi/pull/11478) by [@MuhammadAshiqAmeer](https://github.com/MuhammadAshiqAmeer).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:25:57 UTC 2024 - 460.3K bytes - Viewed (0) -
docs_src/metadata/tutorial003.py
from fastapi import FastAPI app = FastAPI(docs_url="/documentation", redoc_url=None) @app.get("/items/") async def read_items():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 02 04:55:20 UTC 2020 - 161 bytes - Viewed (0) -
docs_src/custom_docs_ui/tutorial001.py
from fastapi import FastAPI from fastapi.openapi.docs import ( get_redoc_html, get_swagger_ui_html, get_swagger_ui_oauth2_redirect_html, ) app = FastAPI(docs_url=None, redoc_url=None) @app.get("/docs", include_in_schema=False) async def custom_swagger_ui_html(): return get_swagger_ui_html( openapi_url=app.openapi_url, title=app.title + " - Swagger UI",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 23 22:59:02 UTC 2024 - 1.1K bytes - Viewed (0) -
docs_src/custom_docs_ui/tutorial002.py
from fastapi import FastAPI from fastapi.openapi.docs import ( get_redoc_html, get_swagger_ui_html, get_swagger_ui_oauth2_redirect_html, ) from fastapi.staticfiles import StaticFiles app = FastAPI(docs_url=None, redoc_url=None) app.mount("/static", StaticFiles(directory="static"), name="static") @app.get("/docs", include_in_schema=False) async def custom_swagger_ui_html(): return get_swagger_ui_html(
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 19 19:54:04 UTC 2023 - 1.1K bytes - Viewed (0) -
fastapi/applications.py
self.license_info = license_info self.openapi_url = openapi_url self.openapi_tags = openapi_tags self.root_path_in_servers = root_path_in_servers self.docs_url = docs_url self.redoc_url = redoc_url self.swagger_ui_oauth2_redirect_url = swagger_ui_oauth2_redirect_url self.swagger_ui_init_oauth = swagger_ui_init_oauth
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:52:31 UTC 2024 - 172.2K bytes - Viewed (0)