Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 241 for Editors (0.42 seconds)

  1. docs/uk/docs/tutorial/body-nested-models.md

    ```Python
    images: list[Image]
    ```
    
    наприклад:
    
    {* ../../docs_src/body_nested_models/tutorial008_py310.py hl[13] *}
    
    ## Підтримка в редакторі всюди { #editor-support-everywhere }
    
    Ви отримаєте підтримку в редакторі всюди.
    
    Навіть для елементів у списках:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  2. docs/de/docs/fastapi-cli.md

    ```console
    $ fastapi dev main.py
    ```
    
    Aber Sie müssten sich merken, bei jedem Aufruf des `fastapi`-Befehls den korrekten Pfad zu übergeben.
    
    Zusätzlich könnten andere Tools sie nicht finden, z. B. die [VS Code Extension](editor-support.md) oder [FastAPI Cloud](https://fastapicloud.com), daher wird empfohlen, den `entrypoint` in `pyproject.toml` zu verwenden.
    
    ## `fastapi dev` { #fastapi-dev }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. docs/en/docs/fastapi-cli.md

    $ fastapi dev main.py
    ```
    
    But you would have to remember to pass the correct path every time you call the `fastapi` command.
    
    Additionally, other tools might not be able to find it, for example the [VS Code Extension](editor-support.md) or [FastAPI Cloud](https://fastapicloud.com), so it is recommended to use the `entrypoint` in `pyproject.toml`.
    
    ## `fastapi dev` { #fastapi-dev }
    
    Running `fastapi dev` initiates development mode.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  4. docs/pt/docs/fastapi-cli.md

    ```
    
    Mas você teria que lembrar de passar o caminho correto toda vez que chamar o comando `fastapi`.
    
    Além disso, outras ferramentas podem não conseguir encontrá-la, por exemplo a [Extensão do VS Code](editor-support.md) ou a [FastAPI Cloud](https://fastapicloud.com), então é recomendado usar o `entrypoint` em `pyproject.toml`.
    
    ## `fastapi dev` { #fastapi-dev }
    
    Executar `fastapi dev` inicia o modo de desenvolvimento.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  5. docs/ru/docs/tutorial/body-nested-models.md

    ```Python
    images: list[Image]
    ```
    
    например так:
    
    {* ../../docs_src/body_nested_models/tutorial008_py310.py hl[13] *}
    
    ## Поддержка редактора кода везде { #editor-support-everywhere }
    
    И вы получаете поддержку редактора кода везде.
    
    Даже для элементов внутри списков:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 11.5K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/sql-databases.md

    If we had declared `-> HeroPublic`, your editor and linter would complain (rightfully so) that you are returning a `Hero` instead of a `HeroPublic`.
    
    By declaring it in `response_model` we are telling **FastAPI** to do its thing, without interfering with the type annotations and the help from your editor and other tools.
    
    ///
    
    ### Read Heroes with `HeroPublic` { #read-heroes-with-heropublic }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/sql-databases.md

    Wenn wir `-> HeroPublic` deklariert hätten, würden Ihr Editor und Linter (zu Recht) reklamieren, dass Sie ein `Hero` anstelle eines `HeroPublic` zurückgeben.
    
    Durch die Deklaration in `response_model` sagen wir **FastAPI**, dass es seine Aufgabe erledigen soll, ohne die Typannotationen und die Hilfe von Ihrem Editor und anderen Tools zu beeinträchtigen.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  8. docs/es/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ python main.py
    
    Hello World
    ```
    
    </div>
    
    ## Configura Tu Editor { #configure-your-editor }
    
    Probablemente usarías un editor, asegúrate de configurarlo para que use el mismo entorno virtual que creaste (probablemente lo autodetectará) para que puedas obtener autocompletado y errores en línea.
    
    Por ejemplo:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  9. docs/zh/docs/fastapi-cli.md

    你也可以把文件路径传给 `fastapi dev` 命令,它会猜测要使用的 FastAPI 应用对象:
    
    ```console
    $ fastapi dev main.py
    ```
    
    但每次运行 `fastapi` 命令都需要记得传入正确的路径。
    
    另外,其他工具可能找不到它,例如 [VS Code 扩展](editor-support.md) 或 [FastAPI Cloud](https://fastapicloud.com),因此推荐在 `pyproject.toml` 中使用 `entrypoint`。
    
    ## `fastapi dev` { #fastapi-dev }
    
    当你运行 `fastapi dev` 时,它将以开发模式运行。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  10. docs/de/docs/advanced/stream-data.md

    Sie müssen den Rückgabetyp für das Streamen von Binärdaten nicht wirklich annotieren.
    
    Da FastAPI die Daten nicht mit Pydantic in JSON umzuwandeln oder sie anderweitig zu serialisieren versucht, ist die Typannotation hier nur für Ihren Editor und Tools relevant, sie wird von FastAPI nicht verwendet.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[32:35] hl[33] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 6K bytes
    - Click Count (0)
Back to Top