Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for work (0.16 sec)

  1. docs/en/docs/tutorial/body.md

    <img src="/img/tutorial/body/image04.png">
    
    This is not by chance, the whole framework was built around that design.
    
    And it was thoroughly tested at the design phase, before any implementation, to ensure it would work with all the editors.
    
    There were even some changes to Pydantic itself to support this.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/index.md

    Each section gradually builds on the previous ones, but it's structured to separate topics, so that you can go directly to any specific one to solve your specific API needs.
    
    It is also built to work as a future reference.
    
    So you can come back and see exactly what you need.
    
    ## Run the code
    
    All the code blocks can be copied and used directly (they are actually tested Python files).
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/sql-databases.md

    And the ORM will do all the work to get the information from the corresponding table *owners* when you try to access it from your pet object.
    
    Common ORMs are for example: Django-ORM (part of the Django framework), SQLAlchemy ORM (part of SQLAlchemy, independent of framework) and Peewee (independent of framework), among others.
    
    Here we will see how to work with **SQLAlchemy ORM**.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    ## Replication - Number of Processes
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 34K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/schema-extra-example.md

        You can consider this a brief OpenAPI and JSON Schema **history lesson**. πŸ€“
    
    !!! warning
        These are very technical details about the standards **JSON Schema** and **OpenAPI**.
    
        If the ideas above already work for you, that might be enough, and you probably don't need these details, feel free to skip them.
    
    Before OpenAPI 3.1.0, OpenAPI used an older and modified version of **JSON Schema**.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  6. README.md

        * Check that it has a required attribute `price` that has to be a `float`.
        * Check that it has an optional attribute `is_offer`, that should be a `bool`, if present.
        * All this would also work for deeply nested JSON objects.
    * Convert from and to JSON automatically.
    * Document everything with OpenAPI, that can be used by:
        * Interactive documentation systems.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  7. docs/ko/docs/async.md

    ```
    
    `async def`λ₯Ό μ‚¬μš©ν•˜λ©΄, νŒŒμ΄μ¬μ€ ν•΄λ‹Ή ν•¨μˆ˜ λ‚΄μ—μ„œ `await` ν‘œν˜„μ— μ£Όμ˜ν•΄μ•Όν•œλ‹€λŠ” 사싀과, ν•΄λ‹Ή ν•¨μˆ˜μ˜ 싀행을 "μΌμ‹œμ •μ§€"βΈν•˜κ³  λ‹€μ‹œ λŒμ•„μ˜€κΈ° μ „κΉŒμ§€ λ‹€λ₯Έ μž‘μ—…μ„ μˆ˜ν–‰πŸ”€ν•  수 μžˆλ‹€λŠ” 것을 μ•Œκ²Œλ©λ‹ˆλ‹€.
    
    `async def`f ν•¨μˆ˜λ₯Ό ν˜ΈμΆœν•˜κ³ μž ν•  λ•Œ, "λŒ€κΈ°"ν•΄μ•Όν•©λ‹ˆλ‹€. λ”°λΌμ„œ, μ•„λž˜λŠ” λ™μž‘ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.
    
    ```Python
    # This won't work, because get_burgers was defined with: async def
    burgers = get_burgers(2)
    ```
    
    ---
    
    λ”°λΌμ„œ, `await`fλ₯Ό μ‚¬μš©ν•΄μ„œ ν˜ΈμΆœν•  수 μžˆλŠ” 라이브러리λ₯Ό μ‚¬μš©ν•œλ‹€λ©΄, λ‹€μŒκ³Ό 같이 `async def`λ₯Ό μ‚¬μš©ν•˜λŠ” *경둜 μž‘λ™ ν•¨μˆ˜*λ₯Ό 생성해야 ν•©λ‹ˆλ‹€:
    
    ```Python hl_lines="2-3"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 26.7K bytes
    - Viewed (0)
  8. fastapi/_compat.py

            or hasattr(origin, "__get_pydantic_core_schema__")
        )
    
    
    def field_annotation_is_scalar(annotation: Any) -> bool:
        # handle Ellipsis here to make tuple[int, ...] work nicely
        return annotation is Ellipsis or not field_annotation_is_complex(annotation)
    
    
    def field_annotation_is_scalar_sequence(annotation: Union[Type[Any], None]) -> bool:
        origin = get_origin(annotation)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    !!! tip
        For this to work, you need to `pip install python-dotenv`.
    
    ### The `.env` file
    
    You could have a `.env` file with:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    APP_NAME="ChimichangApp"
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  10. docs/en/docs/index.md

        * Check that it has a required attribute `price` that has to be a `float`.
        * Check that it has an optional attribute `is_offer`, that should be a `bool`, if present.
        * All this would also work for deeply nested JSON objects.
    * Convert from and to JSON automatically.
    * Document everything with OpenAPI, that can be used by:
        * Interactive documentation systems.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 19.8K bytes
    - Viewed (0)
Back to top