Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for app02_py39 (0.05 sec)

  1. docs/ru/docs/advanced/settings.md

    Например, у вас может быть файл `config.py` со следующим содержимым:
    
    {* ../../docs_src/settings/app01_py39/config.py *}
    
    А затем использовать его в файле `main.py`:
    
    {* ../../docs_src/settings/app01_py39/main.py hl[3,11:13] *}
    
    /// tip | Совет
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/settings.md

    Sie könnten beispielsweise eine Datei `config.py` haben mit:
    
    {* ../../docs_src/settings/app01_py39/config.py *}
    
    Und dann verwenden Sie diese in einer Datei `main.py`:
    
    {* ../../docs_src/settings/app01_py39/main.py hl[3,11:13] *}
    
    /// tip | Tipp
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/testing.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    In the file `main.py` you have your **FastAPI** app:
    
    
    {* ../../docs_src/app_testing/app_a_py39/main.py *}
    
    ### Testing file { #testing-file }
    
    Then you could have a file `test_main.py` with your tests. It could live on the same Python package (the same directory with a `__init__.py` file):
    
    ``` hl_lines="5"
    .
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/testing.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    No arquivo `main.py` você tem sua aplicação **FastAPI**:
    
    
    {* ../../docs_src/app_testing/app_a_py39/main.py *}
    
    ### Arquivo de teste { #testing-file }
    
    Então você poderia ter um arquivo `test_main.py` com seus testes. Ele poderia estar no mesmo pacote Python (o mesmo diretório com um arquivo `__init__.py`):
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_async_tests/test_main_a.py

    import pytest
    
    from docs_src.async_tests.app_a_py39.test_main import test_root
    
    
    @pytest.mark.anyio
    async def test_async_testing():
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 154 bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    For example, you could have a file `config.py` with:
    
    {* ../../docs_src/settings/app01_py39/config.py *}
    
    And then use it in a file `main.py`:
    
    {* ../../docs_src/settings/app01_py39/main.py hl[3,11:13] *}
    
    /// tip
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/settings.md

    Por ejemplo, podrías tener un archivo `config.py` con:
    
    {* ../../docs_src/settings/app01_py39/config.py *}
    
    Y luego usarlo en un archivo `main.py`:
    
    {* ../../docs_src/settings/app01_py39/main.py hl[3,11:13] *}
    
    /// tip | Consejo
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/testing.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    En el archivo `main.py` tienes tu aplicación de **FastAPI**:
    
    {* ../../docs_src/app_testing/app_a_py39/main.py *}
    
    ### Archivo de prueba { #testing-file }
    
    Entonces podrías tener un archivo `test_main.py` con tus pruebas. Podría estar en el mismo paquete de Python (el mismo directorio con un archivo `__init__.py`):
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/testing.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    В файле `main.py` находится Ваше приложение **FastAPI**:
    
    
    {* ../../docs_src/app_testing/app_a_py39/main.py *}
    
    ### Файл тестов { #testing-file }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/testing.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    In der Datei `main.py` haben Sie Ihre **FastAPI**-Anwendung:
    
    
    {* ../../docs_src/app_testing/app_a_py39/main.py *}
    
    
    ### Testdatei { #testing-file }
    
    Dann könnten Sie eine Datei `test_main.py` mit Ihren Tests haben. Sie könnte sich im selben Python-Package befinden (dasselbe Verzeichnis mit einer `__init__.py`-Datei):
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top