Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 539 for unicos (0.04 sec)

  1. docs/em/docs/python-types.md

    ```
    
    ////
    
    #### ⚙ī¸ `Union` ⚖ī¸ `Optional`
    
    đŸšĨ 👆 ⚙ī¸ 🐍 âŦ 🔛 3ī¸âƒŖ.1ī¸âƒŖ0ī¸âƒŖ, đŸ“Ĩ 💁‍♂ âšĒī¸âžĄī¸ 👇 đŸ“ļ **🤔** ☝ 🎑:
    
    * đŸ‘ļ ❎ ⚙ī¸ `Optional[SomeType]`
    * ↩ī¸ đŸ‘ļ **⚙ī¸ `Union[SomeType, None]`** đŸ‘ļ.
    
    đŸ‘¯â€â™‚ī¸ 🌓 & 🔘 đŸ‘Ģ 🎏, ✋ī¸ 👤 🔜 👍 `Union` ↩ī¸ `Optional` ↩ī¸ 🔤 "**đŸ“Ļ**" 🔜 😑 🔑 👈 💲 đŸ“Ļ, & âšĢī¸ 🤙 ⛓ "âšĢī¸ đŸ’Ē `None`", đŸšĨ âšĢī¸ đŸšĢ đŸ“Ļ & ✔.
    
    👤 💭 `Union[SomeType, None]` 🌖 🔑 🔃 âšĢī¸â” âšĢī¸ ⛓.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/query-params-str-validations.md

    ```Python hl_lines="7"
    {!> ../../docs_src/query_params_str_validations/tutorial001_py310.py!}
    ```
    
    ////
    
    đŸ”ĸ đŸ”ĸ `q` 🆎 `Union[str, None]` (⚖ī¸ `str | None` 🐍 3ī¸âƒŖ.1ī¸âƒŖ0ī¸âƒŖ), 👈 ⛓ 👈 âšĢī¸ 🆎 `str` ✋ī¸ đŸ’Ē `None`, & 👐, đŸ”ĸ 💲 `None`, FastAPI 🔜 💭 âšĢī¸ đŸšĢ ✔.
    
    /// note
    
    FastAPI 🔜 💭 👈 💲 `q` đŸšĢ ✔ ↩ī¸ đŸ”ĸ 💲 `= None`.
    
     `Union` `Union[str, None]` 🔜 ✔ 👆 👨‍🎨 🤝 👆 👍 🐕‍đŸĻē & 🔍 ❌.
    
    ///
    
    ## 🌖 đŸ”Ŧ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. docs_src/body_fields/tutorial001.py

    from typing import Union
    
    from fastapi import Body, FastAPI
    from pydantic import BaseModel, Field
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        description: Union[str, None] = Field(
            default=None, title="The description of the item", max_length=300
        )
        price: float = Field(gt=0, description="The price must be greater than zero")
        tax: Union[float, None] = None
    
    
    @app.put("/items/{item_id}")
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 561 bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/extra-models.md

    ```
    
    ////
    
    ## `Union` ⚖ī¸ `anyOf`
    
    👆 đŸ’Ē đŸ“Ŗ 📨 `Union` 2ī¸âƒŖ 🆎, 👈 ⛓, 👈 📨 🔜 🙆 2ī¸âƒŖ.
    
    âšĢī¸ 🔜 đŸ”Ŧ 🗄 ⏎ī¸ `anyOf`.
    
    👈, ⚙ī¸ 🐩 🐍 🆎 🔑 <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    /// note
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. docs_src/schema_extra_example/tutorial004_an_py39.py

    from typing import Annotated, Union
    
    from fastapi import Body, FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        tax: Union[float, None] = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(
        *,
        item_id: int,
        item: Annotated[
            Item,
            Body(
                examples=[
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Jul 01 16:43:29 UTC 2023
    - 936 bytes
    - Viewed (0)
  6. docs_src/additional_status_codes/tutorial001_an_py39.py

    from typing import Annotated, Union
    
    from fastapi import Body, FastAPI, status
    from fastapi.responses import JSONResponse
    
    app = FastAPI()
    
    items = {"foo": {"name": "Fighters", "size": 6}, "bar": {"name": "Tenders", "size": 3}}
    
    
    @app.put("/items/{item_id}")
    async def upsert_item(
        item_id: str,
        name: Annotated[Union[str, None], Body()] = None,
        size: Annotated[Union[int, None], Body()] = None,
    ):
        if item_id in items:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 705 bytes
    - Viewed (0)
  7. docs_src/body_fields/tutorial001_an.py

    from typing import Union
    
    from fastapi import Body, FastAPI
    from pydantic import BaseModel, Field
    from typing_extensions import Annotated
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        description: Union[str, None] = Field(
            default=None, title="The description of the item", max_length=300
        )
        price: float = Field(gt=0, description="The price must be greater than zero")
        tax: Union[float, None] = None
    
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 611 bytes
    - Viewed (0)
  8. docs_src/additional_status_codes/tutorial001_an.py

    from typing import Union
    
    from fastapi import Body, FastAPI, status
    from fastapi.responses import JSONResponse
    from typing_extensions import Annotated
    
    app = FastAPI()
    
    items = {"foo": {"name": "Fighters", "size": 6}, "bar": {"name": "Tenders", "size": 3}}
    
    
    @app.put("/items/{item_id}")
    async def upsert_item(
        item_id: str,
        name: Annotated[Union[str, None], Body()] = None,
        size: Annotated[Union[int, None], Body()] = None,
    ):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 734 bytes
    - Viewed (0)
  9. docs_src/python_types/tutorial009b.py

    from typing import Union
    
    
    def say_hi(name: Union[str, None] = None):
        if name is not None:
            print(f"Hey {name}!")
        else:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 164 bytes
    - Viewed (0)
  10. docs_src/header_params/tutorial002.py

    from typing import Union
    
    from fastapi import FastAPI, Header
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        strange_header: Union[str, None] = Header(default=None, convert_underscores=False),
    ):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 260 bytes
    - Viewed (0)
Back to top