Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Group (0.14 sec)

  1. docs/en/docs/tutorial/dependencies/global-dependencies.md

    how to structure bigger applications ([Bigger Applications - Multiple Files](../../tutorial/bigger-applications.md){.internal-link target=_blank}), possibly with multiple files, you will learn how to declare a single `dependencies` parameter for a group of *path operations*....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/general.md

    ## Documentation Tags - OpenAPI
    
    To add tags to your *path operations*, and group them in the docs UI, read the docs for [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank}.
    
    ## Documentation Summary and Description - OpenAPI
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 19 19:54:04 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. tests/test_tuples.py

    class ItemGroup(BaseModel):
        items: List[Tuple[str, str]]
    
    
    class Coordinate(BaseModel):
        x: float
        y: float
    
    
    @app.post("/model-with-tuple/")
    def post_model_with_tuple(item_group: ItemGroup):
        return item_group
    
    
    @app.post("/tuple-of-models/")
    def post_tuple_of_models(square: Tuple[Coordinate, Coordinate]):
        return square
    
    
    @app.post("/tuple-form/")
    def hello(values: Tuple[int, int] = Form()):
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. docs/ru/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Индивидуальные спонсоры
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  5. .github/actions/people/app/main.py

        keys.sort(reverse=True)
        sponsors = []
        for key in keys:
            sponsor_group = []
            for login, sponsor in tiers[key].items():
                sponsor_group.append(
                    {"login": login, "avatarUrl": sponsor.avatarUrl, "url": sponsor.url}
                )
            sponsors.append(sponsor_group)
    
        people = {
            "maintainers": maintainers,
            "experts": experts,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  6. docs/en/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Individual Sponsors
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 16 23:54:24 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  7. docs/ja/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Individual Sponsors
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7K bytes
    - Viewed (0)
  8. docs/az/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Fərdi Sponsorlar
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  9. docs/tr/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Bireysel Sponsorlar
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 16 23:54:24 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/metadata.md

    For example:
    
    ```Python hl_lines="31"
    {!../../../docs_src/metadata/tutorial001_1.py!}
    ```
    
    ## Metadata for tags
    
    You can also add additional metadata for the different tags used to group your path operations with the parameter `openapi_tags`.
    
    It takes a list containing one dictionary for each tag.
    
    Each dictionary can contain:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top