Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1051 - 1060 of 1,669 for py$ (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/pt/docs/how-to/custom-docs-ui-assets.md

    Vamos supor que a estrutura de arquivos do seu projeto se pareça com isso:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    ```
    
    Agora crie um diretório para armazenar esses arquivos estáticos.
    
    Sua nova estrutura de arquivos poderia se parecer com isso:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    └── static/
    ```
    
    ### Baixe os arquivos { #download-the-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/sql-databases.md

    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[48:55] hl[51:52,54] *}
    
    ### Lire un héros { #read-one-hero }
    
    Nous pouvons **lire** un seul `Hero`.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[58:63] hl[60] *}
    
    ### Supprimer un héros { #delete-a-hero }
    
    Nous pouvons aussi **supprimer** un `Hero`.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[66:73] hl[71] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  3. docs/fr/docs/advanced/settings.md

    Par exemple, vous pourriez avoir un fichier `config.py` avec :
    
    {* ../../docs_src/settings/app01_py310/config.py *}
    
    Puis l'utiliser dans un fichier `main.py` :
    
    {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *}
    
    /// tip | Astuce
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  4. docs/uk/docs/tutorial/sql-databases.md

    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[48:55] hl[51:52,54] *}
    
    ### Читання одного героя { #read-one-hero }
    
    Ми можемо **прочитати** одного `Hero`.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[58:63] hl[60] *}
    
    ### Видалення героя { #delete-a-hero }
    
    Ми також можемо **видалити** `Hero`.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[66:73] hl[71] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/query-params-str-validations.md

    ## Додавання регулярних виразів { #add-regular-expressions }
    
    Ви можете визначити <dfn title="Регулярний вираз, regex або regexp — це послідовність символів, яка визначає шаблон для пошуку в рядках.">регулярний вираз</dfn> `pattern`, якому має відповідати параметр:
    
    {* ../../docs_src/query_params_str_validations/tutorial004_an_py310.py hl[11] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 25.9K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/path-params-numeric-validations.md

    {* ../../docs_src/path_params_numeric_validations/tutorial002_py310.py hl[7] *}
    
    Aber bedenken Sie, dass Sie dieses Problem nicht haben, wenn Sie `Annotated` verwenden, da es nicht darauf ankommt, dass Sie keine Funktionsparameter-Defaultwerte für `Query()` oder `Path()` verwenden.
    
    {* ../../docs_src/path_params_numeric_validations/tutorial002_an_py310.py *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/path-params-numeric-validations.md

    {* ../../docs_src/path_params_numeric_validations/tutorial002_py310.py hl[7] *}
    
    Pero ten en cuenta que si usas `Annotated`, no tendrás este problema, no importará ya que no estás usando los valores por defecto de los parámetros de la función para `Query()` o `Path()`.
    
    {* ../../docs_src/path_params_numeric_validations/tutorial002_an_py310.py *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/path-operation-configuration.md

    **FastAPI**는 일반 문자열과 동일한 방식으로 이를 지원합니다:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## 요약과 설명 { #summary-and-description }
    
    `summary`와 `description`을 추가할 수 있습니다:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## 독스트링으로 만든 설명 { #description-from-docstring }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/body-nested-models.md

    Örneğin bir `Image` modeli tanımlayabiliriz:
    
    {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *}
    
    ### Alt modeli tip olarak kullanın { #use-the-submodel-as-a-type }
    
    Ardından bunu bir attribute’un tipi olarak kullanabiliriz:
    
    {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[18] *}
    
    Bu da **FastAPI**’nin aşağıdakine benzer bir body bekleyeceği anlamına gelir:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/path-operation-configuration.md

    FastAPI підтримує це так само, як і зі звичайними строками:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## Короткий опис і опис { #summary-and-description }
    
    Ви можете додати `summary` і `description`:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## Опис зі строки документації { #description-from-docstring }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6K bytes
    - Click Count (0)
Back to Top