- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 860 for Pythona (0.08 sec)
-
docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md
//// tab | Python 3.9+ ```Python hl_lines="18-19 26-27" {!> ../../docs_src/dependencies/tutorial008_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="17-18 25-26" {!> ../../docs_src/dependencies/tutorial008_an.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | 提示 如果可以,请尽量使用 `Annotated` 版本。
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.3K bytes - Viewed (0) -
docs/pt/docs/index.md
Você faz com tipos padrão do Python moderno. Você não terá que aprender uma nova sintaxe, métodos ou classes de uma biblioteca específica etc. Apenas **Python** padrão. Por exemplo, para um `int`: ```Python item_id: int ``` ou para um modelo mais complexo, `Item`: ```Python item: Item ``` ...e com essa única declaração você tem:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 18.6K bytes - Viewed (0) -
docs/em/docs/tutorial/encoder.md
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.5K bytes - Viewed (0) -
docs/nl/docs/index.md
Dat doe je met standaard moderne Python types. Je hoeft geen nieuwe syntax te leren, de methods of klassen van een specifieke bibliotheek, etc. Gewoon standaard **Python**. Bijvoorbeeld, voor een `int`: ```Python item_id: int ``` of voor een complexer `Item` model: ```Python item: Item ``` ...en met die ene verklaring krijg je:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 21.2K bytes - Viewed (0) -
docs/pt/docs/features.md
### Apenas Python moderno Tudo é baseado no padrão das declarações de **tipos do Python 3.8** (graças ao Pydantic). Nenhuma sintaxe nova para aprender. Apenas o padrão moderno do Python. Se você precisa refrescar a memória rapidamente sobre como usar tipos do Python (mesmo que você não use o FastAPI), confira esse rápido tutorial: [Tipos do Python](python-types.md){.internal-link target=_blank}.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.3K bytes - Viewed (0) -
docs/zh-hant/docs/index.md
### 總結 總結來說, 你就像宣告函式的參數型別一樣,只宣告了一次請求參數和請求主體參數等型別。 你使用 Python 標準型別來完成聲明。 你不需要學習新的語法、類別、方法或函式庫等等。 只需要使用 **Python 以上的版本**。 舉個範例,比如宣告 int 的型別: ```Python item_id: int ``` 或是一個更複雜的 `Item` 模型: ```Python item: Item ``` 在進行一次宣告後,你將獲得: - 編輯器支援: - 自動補全 - 型別檢查 - 資料驗證:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 18.8K bytes - Viewed (0) -
README.md
You do that with standard modern Python types. You don't have to learn a new syntax, the methods or classes of a specific library, etc. Just standard **Python**. For example, for an `int`: ```Python item_id: int ``` or for a more complex `Item` model: ```Python item: Item ``` ...and with that single declaration you get:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 23.4K bytes - Viewed (0) -
docs/ru/docs/tutorial/request-forms.md
Чтобы использовать формы, сначала установите <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>. Например, выполните команду `pip install python-multipart`. /// ## Импорт `Form` Импортируйте `Form` из `fastapi`: //// tab | Python 3.9+ ```Python hl_lines="3" {!> ../../docs_src/request_forms/tutorial001_an_py39.py!} ``` ////
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5K bytes - Viewed (0) -
tensorflow/api_template.__init__.py
from tensorflow.python import pywrap_tensorflow as _pywrap_tensorflow # pylint: disable=unused-import from tensorflow.python.tools import module_util as _module_util from tensorflow.python.util.lazy_loader import KerasLazyLoader as _KerasLazyLoader # Make sure code inside the TensorFlow codebase can use tf2.enabled() at import. _os.environ["TF2_BEHAVIOR"] = "1" from tensorflow.python import tf2 as _tf2 _tf2.enable()
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 6.8K bytes - Viewed (2) -
docs/en/docs/alternatives.md
That's why, as said in the official website: > Requests is one of the most downloaded Python packages of all time The way you use it is very simple. For example, to do a `GET` request, you would write: ```Python response = requests.get("http://example.com/some/url") ``` The FastAPI counterpart API *path operation* could look like: ```Python hl_lines="1" @app.get("/some/url") def read_url():
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 23.2K bytes - Viewed (0)