Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 481 for biggest (0.04 seconds)

  1. docs/ru/docs/tutorial/bigger-applications.md

    # Большие приложения — несколько файлов { #bigger-applications-multiple-files }
    
    При построении приложения или веб-API нам редко удается поместить всё в один файл.
    
    **FastAPI** предоставляет удобный инструментарий, который позволяет нам структурировать приложение, сохраняя при этом всю необходимую гибкость.
    
    /// info | Примечание
    
    Если вы раньше использовали Flask, то это аналог шаблонов Flask (Flask's Blueprints).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/bigger-applications.md

    # Daha Büyük Uygulamalar - Birden Fazla Dosya { #bigger-applications-multiple-files }
    
    Bir uygulama veya web API geliştirirken, her şeyi tek bir dosyaya sığdırabilmek nadirdir.
    
    **FastAPI**, tüm esnekliği korurken uygulamanızı yapılandırmanıza yardımcı olan pratik bir araç sunar.
    
    /// info | Bilgi
    
    Flask'ten geliyorsanız, bu yapı Flask'in Blueprints'ine denk gelir.
    
    ///
    
    ## Örnek Bir Dosya Yapısı { #an-example-file-structure }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  3. docs/de/docs/tutorial/bigger-applications.md

    # Größere Anwendungen – mehrere Dateien { #bigger-applications-multiple-files }
    
    Wenn Sie eine Anwendung oder eine Web-API erstellen, ist es selten der Fall, dass Sie alles in einer einzigen Datei unterbringen können.
    
    **FastAPI** bietet ein praktisches Werkzeug zur Strukturierung Ihrer Anwendung bei gleichzeitiger Wahrung der Flexibilität.
    
    /// info | Info
    
    Wenn Sie von Flask kommen, wäre dies das Äquivalent zu Flasks Blueprints.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.9K bytes
    - Click Count (0)
  4. docs/fr/docs/tutorial/bigger-applications.md

    # Créer des applications plus grandes - Plusieurs fichiers { #bigger-applications-multiple-files }
    
    Si vous créez une application ou une API web, il est rare que vous puissiez tout mettre dans un seul fichier.
    
    **FastAPI** fournit un outil pratique pour structurer votre application tout en conservant toute la flexibilité.
    
    /// info
    
    Si vous venez de Flask, cela équivaut aux Blueprints de Flask.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/bigger-applications.md

    # Aplicaciones más grandes - Múltiples archivos { #bigger-applications-multiple-files }
    
    Si estás construyendo una aplicación o una API web, rara vez podrás poner todo en un solo archivo.
    
    **FastAPI** proporciona una herramienta conveniente para estructurar tu aplicación manteniendo toda la flexibilidad.
    
    /// info | Información
    
    Si vienes de Flask, esto sería el equivalente a los Blueprints de Flask.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/bigger-applications.md

    # Aplicações Maiores - Múltiplos Arquivos { #bigger-applications-multiple-files }
    
    Se você está construindo uma aplicação ou uma API web, é raro que você possa colocar tudo em um único arquivo.
    
    **FastAPI** oferece uma ferramenta conveniente para estruturar sua aplicação, mantendo toda a flexibilidade.
    
    /// info | Informação
    
    Se você vem do Flask, isso seria o equivalente aos Blueprints do Flask.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/bigger-applications.md

    # 더 큰 애플리케이션 - 여러 파일 { #bigger-applications-multiple-files }
    
    애플리케이션이나 웹 API를 만들 때, 모든 것을 하나의 파일에 담을 수 있는 경우는 드뭅니다.
    
    **FastAPI**는 모든 유연성을 유지하면서도 애플리케이션을 구조화할 수 있게 해주는 편리한 도구를 제공합니다.
    
    /// info | 정보
    
    Flask를 사용해 보셨다면, 이는 Flask의 Blueprints에 해당하는 개념입니다.
    
    ///
    
    ## 예시 파일 구조 { #an-example-file-structure }
    
    다음과 같은 파일 구조가 있다고 해봅시다:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.5K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/bigger-applications.md

    # 更大的应用 - 多个文件 { #bigger-applications-multiple-files }
    
    如果你正在开发一个应用程序或 Web API,很少会将所有的内容都放在一个文件中。
    
    **FastAPI** 提供了一个方便的工具,可以在保持所有灵活性的同时构建你的应用程序。
    
    /// info | 信息
    
    如果你来自 Flask,那这将相当于 Flask 的 Blueprints。
    
    ///
    
    ## 一个文件结构示例 { #an-example-file-structure }
    
    假设你的文件结构如下:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 19.5K bytes
    - Click Count (0)
  9. src/test/resources/plugin/repo3/index.html

    <a href="fess-ingest-logger/" title="fess-ingest-logger/">fess-ingest-logger/</a>                                              -         -      
    <a href="fess-ingest-ndjson/" title="fess-ingest-ndjson/">fess-ingest-ndjson/</a>                                              -         -      
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jun 17 13:30:41 GMT 2024
    - 6.2K bytes
    - Click Count (0)
  10. docs/ja/docs/tutorial/bigger-applications.md

    # 大規模アプリケーション - 複数ファイル { #bigger-applications-multiple-files }
    
    アプリケーションや Web API を作る場合、すべてを1つのファイルに収められることはほとんどありません。
    
    **FastAPI** は、柔軟性を保ったままアプリケーションを構造化できる便利なツールを提供します。
    
    /// info | 情報
    
    Flask 出身であれば、Flask の Blueprint に相当します。
    
    ///
    
    ## 例のファイル構成 { #an-example-file-structure }
    
    次のようなファイル構成があるとします:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 22.8K bytes
    - Click Count (0)
Back to Top