Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for get_flat_params (0.12 sec)

  1. fastapi/openapi/utils.py

    )
    from fastapi.datastructures import DefaultPlaceholder
    from fastapi.dependencies.models import Dependant
    from fastapi.dependencies.utils import (
        _get_flat_fields_from_params,
        get_flat_dependant,
        get_flat_params,
    )
    from fastapi.encoders import jsonable_encoder
    from fastapi.openapi.constants import METHODS_WITH_BODY, REF_PREFIX, REF_TEMPLATE
    from fastapi.openapi.models import OpenAPI
    from fastapi.params import Body, ParamTypes
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. fastapi/dependencies/utils.py

        if len(fields) == 1 and lenient_issubclass(first_field.type_, BaseModel):
            fields_to_extract = get_cached_model_fields(first_field.type_)
            return fields_to_extract
        return fields
    
    
    def get_flat_params(dependant: Dependant) -> List[ModelField]:
        flat_dependant = get_flat_dependant(dependant, skip_repeats=True)
        path_params = _get_flat_fields_from_params(flat_dependant.path_params)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 21:46:26 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top