- Sort Score
- Result 10 results
- Languages All
Results 851 - 860 of 1,094 for ndocs (0.05 sec)
-
.github/DISCUSSION_TEMPLATE/questions.yml
required: true - label: I already searched in Google "How to X in FastAPI" and didn't find any information. required: true - label: I already read and followed all the tutorial in the docs and didn't find an answer. required: true - label: I already checked if it is not related to FastAPI but to [Pydantic](https://github.com/pydantic/pydantic). required: true
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 03 15:59:41 UTC 2023 - 5.8K bytes - Viewed (0) -
docs/ja/docs/tutorial/metadata.md
```Python hl_lines="3" {!../../docs_src/metadata/tutorial002.py!} ``` OpenAPIスキーマを完全に無効にする場合は、`openapi_url=None` を設定できます。これにより、それを使用するドキュメントUIも無効になります。 ## ドキュメントのURL 以下の2つのドキュメントUIを構築できます: * **Swagger UI**: `/docs` で提供されます。 * URL はパラメータ `docs_url` で設定できます。 * `docs_url=None` を設定することで無効にできます。 * ReDoc: `/redoc` で提供されます。 * URL はパラメータ `redoc_url` で設定できます。 * `redoc_url=None` を設定することで無効にできます。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/zh/docs/advanced/websockets.md
# WebSockets 您可以在 **FastAPI** 中使用 [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API)。 ## 安装 `WebSockets` 首先,您需要安装 `WebSockets`: ```console $ pip install websockets ---> 100% ``` ## WebSockets 客户端 ### 在生产环境中 在您的生产系统中,您可能使用现代框架(如React、Vue.js或Angular)创建了一个前端。 要使用 WebSockets 与后端进行通信,您可能会使用前端的工具。 或者,您可能有一个原生移动应用程序,直接使用原生代码与 WebSocket 后端通信。 或者,您可能有其他与 WebSocket 终端通信的方式。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
internal/bucket/replication/replication.go
errRoleArnPresentForMultipleTargets = Errorf("`Role` should be empty in ReplicationConfiguration for multiple targets") ) // Config - replication configuration specified in // https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html type Config struct { XMLName xml.Name `xml:"ReplicationConfiguration" json:"-"` Rules []Rule `xml:"Rule" json:"Rules"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 28 17:44:56 UTC 2024 - 8.9K bytes - Viewed (0) -
docs/fr/docs/deployment/manually.md
/// ## Hypercorn avec Trio Starlette et **FastAPI** sont basés sur <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, qui les rend compatibles avec <a href="https://docs.python.org/3/library/asyncio-task.html" class="external-link" target="_blank">asyncio</a>, de la bibliothèque standard Python et <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">Trio</a>.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 5.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
[Before Upgrading](#before-upgrading). For more information about the release and for the latest documentation, see the [Kubernetes documentation](https://kubernetes.io/docs/home/). [Setup topics]: https://kubernetes.io/docs/setup/pick-right-solution/ [SIGs]: https://github.com/kubernetes/community/blob/master/sig-list.md ## Major Themes
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
### AWS
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
docs/ko/docs/python-types.md
```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ``` 그리고 역시나 모든 에디터 도움을 받게 되겠죠. <img src="/img/python-types/image06.png"> ## Pydantic 모델 <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a>은 데이터 검증(Validation)을 위한 파이썬 라이브러리입니다. 당신은 속성들을 포함한 클래스 형태로 "모양(shape)"을 선언할 수 있습니다. 그리고 각 속성은 타입을 가지고 있습니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/de/docs/deployment/docker.md
```JSON {"item_id": 5, "q": "somequery"} ``` ## Interaktive API-Dokumentation Jetzt können Sie auf <a href="http://192.168.99.100/docs" class="external-link" target="_blank">http://192.168.99.100/docs</a> oder <a href="http://127.0.0.1/docs" class="external-link" target="_blank">http://127.0.0.1/docs</a> gehen (oder ähnlich, unter Verwendung Ihres Docker-Hosts).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 39K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableCollection.java
* powerful advantage. Although Java offers certain immutable collection factory methods, such as * {@link Collections#singleton(Object)} and <a * href="https://docs.oracle.com/javase/9/docs/api/java/util/Set.html#immutable">{@code Set.of}</a>, * we recommend using <i>these</i> classes instead for this reason (as well as for consistency). * * <h4>Creation</h4> *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 12 16:59:15 UTC 2024 - 18.8K bytes - Viewed (0)