Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 513 for lives (0.12 sec)

  1. docs/em/docs/tutorial/first-steps.md

    ### ๐Ÿ” 1๏ธโƒฃ: ๐Ÿ—„ `FastAPI`
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI` ๐Ÿ ๐ŸŽ“ ๐Ÿ‘ˆ ๐Ÿšš ๐ŸŒ ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿ› ๏ธ.
    
    !!! note "๐Ÿ“ก โ„น"
        `FastAPI` ๐ŸŽ“ ๐Ÿ‘ˆ ๐Ÿ˜– ๐Ÿ”— โšช๏ธโžก๏ธ `Starlette`.
    
        ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐ŸŒ <a href="https://www.starlette.io/" class="external-link" target="_blank">๐Ÿ’ƒ</a> ๐Ÿ› ๏ธ โฎ๏ธ `FastAPI` ๐Ÿ’โ€โ™‚๏ธ.
    
    ### ๐Ÿ” 2๏ธโƒฃ: โœ `FastAPI` "๐Ÿ‘"
    
    ```Python hl_lines="3"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/metadata.md

    โœ ๐Ÿ—ƒ ๐Ÿ‘† ๐Ÿ”– &amp; ๐Ÿšถโ€โ™€๏ธ โšซ๏ธ `openapi_tags` ๐Ÿ”ข:
    
    ```Python hl_lines="3-16  18"
    {!../../../docs_src/metadata/tutorial004.py!}
    ```
    
    ๐Ÿ‘€ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ โœ ๐Ÿ”˜ ๐Ÿ“›, ๐Ÿ–ผ "๐Ÿ’ณ" ๐Ÿ”œ ๐ŸŽฆ ๐Ÿฆ (**๐Ÿ’ณ**) &amp; "๐ŸŽ€" ๐Ÿ”œ ๐ŸŽฆ โ• (_๐ŸŽ€_).
    
    !!! tip
        ๐Ÿ‘† ๐Ÿšซ โœ”๏ธ ๐Ÿšฎ ๐Ÿ—ƒ ๐ŸŒ ๐Ÿ”– ๐Ÿ‘ˆ ๐Ÿ‘† โš™๏ธ.
    
    ### โš™๏ธ ๐Ÿ‘† ๐Ÿ”–
    
    โš™๏ธ `tags` ๐Ÿ”ข โฎ๏ธ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ* (&amp; `APIRouter`โ“‚) ๐Ÿ› ๏ธ ๐Ÿ‘ซ ๐ŸŽ ๐Ÿ”–:
    
    ```Python hl_lines="21  26"
    {!../../../docs_src/metadata/tutorial004.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/handling-errors.md

    ใ‚ขใƒ—ใƒช้–‹็™บไธญใซๆœฌไฝ“ใฎใƒญใ‚ฐใ‚’ๅ–ใฃใฆใƒ‡ใƒใƒƒใ‚ฐใ—ใŸใ‚Šใ€ใƒฆใƒผใ‚ถใƒผใซ่ฟ”ใ—ใŸใ‚Šใชใฉใซไฝฟ็”จใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    ```Python hl_lines="14"
    {!../../../docs_src/handling_errors/tutorial005.py!}
    ```
    
    ใ“ใ“ใงใ€ไปฅไธ‹ใฎใ‚ˆใ†ใช็„กๅŠนใช้ …็›ฎใ‚’้€ไฟกใ—ใฆใฟใฆใใ ใ•ใ„:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    ๅ—ไฟกใ—ใŸใƒœใƒ‡ใ‚ฃใ‚’ๅซใ‚€ใƒ‡ใƒผใ‚ฟใŒ็„กๅŠนใงใ‚ใ‚‹ใ“ใจใ‚’็คบใ™ใƒฌใ‚นใƒใƒณใ‚นใŒ่กจ็คบใ•ใ‚Œใพใ™:
    
    ```JSON hl_lines="12 13 14 15"
    {
      "detail": [
        {
          "loc": [
            "body",
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  4. docs/ja/docs/tutorial/first-steps.md

    ### Step 1: `FastAPI`ใ‚’ใ‚คใƒณใƒใƒผใƒˆ
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI`ใฏใ€APIใฎใ™ในใฆใฎๆฉŸ่ƒฝใ‚’ๆไพ›ใ™ใ‚‹Pythonใ‚ฏใƒฉใ‚นใงใ™ใ€‚
    
    !!! note "ๆŠ€่ก“่ฉณ็ดฐ"
        `FastAPI`ใฏ`Starlette`ใ‚’็›ดๆŽฅ็ถ™ๆ‰ฟใ™ใ‚‹ใ‚ฏใƒฉใ‚นใงใ™ใ€‚
    
        `FastAPI`ใงใ‚‚<a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a>ใฎใ™ในใฆใฎๆฉŸ่ƒฝใ‚’ๅˆฉ็”จๅฏ่ƒฝใงใ™ใ€‚
    
    ### Step 2: `FastAPI`ใฎใ€Œใ‚คใƒณใ‚นใ‚ฟใƒณใ‚นใ€ใ‚’็”Ÿๆˆ
    
    ```Python hl_lines="3"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/dataclasses.md

    But FastAPI also supports using <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a> the same way:
    
    ```Python hl_lines="1  7-12  19-20"
    {!../../../docs_src/dataclasses/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/middleware.md

    Any incoming requests to `http` or `ws` will be redirected to the secure scheme instead.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/advanced_middleware/tutorial001.py!}
    ```
    
    ## `TrustedHostMiddleware`
    
    Enforces that all incoming requests have a correctly set `Host` header, in order to guard against HTTP Host Header attacks.
    
    ```Python hl_lines="2  6-8"
    {!../../../docs_src/advanced_middleware/tutorial002.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 10 18:27:10 GMT 2023
    - 4K bytes
    - Viewed (0)
  7. docs/em/docs/advanced/security/oauth2-scopes.md

    ```Python hl_lines="2  4  8  12  46  64  105  107-115  121-124  128-134  139  155"
    {!../../../docs_src/security/tutorial005.py!}
    ```
    
    ๐Ÿ”œ โžก๏ธ ๐Ÿ“„ ๐Ÿ‘ˆ ๐Ÿ”€ ๐Ÿ” ๐Ÿ”.
    
    ## Oauth2๏ธโƒฃ ๐Ÿ’‚โ€โ™‚ โš–
    
    ๐Ÿฅ‡ ๐Ÿ”€ ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ‘ฅ ๐Ÿ“ฃ Oauth2๏ธโƒฃ ๐Ÿ’‚โ€โ™‚ โš– โฎ๏ธ 2๏ธโƒฃ ๐Ÿ’ช โ†”, `me` &amp; `items`.
    
    `scopes` ๐Ÿ”ข ๐Ÿ“จ `dict` โฎ๏ธ ๐Ÿ”  โ†” ๐Ÿ”‘ &amp; ๐Ÿ“› ๐Ÿ’ฒ:
    
    ```Python hl_lines="62-65"
    {!../../../docs_src/security/tutorial005.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/response-status-code.md

    ## โŒจ ๐Ÿ’ญ ๐Ÿ“›
    
    โžก๏ธ ๐Ÿ‘€ โฎ๏ธ ๐Ÿ–ผ ๐Ÿ”„:
    
    ```Python hl_lines="6"
    {!../../../docs_src/response_status_code/tutorial001.py!}
    ```
    
    `201` ๐Ÿ‘” ๐Ÿ“Ÿ "โœ".
    
    โœ‹๏ธ ๐Ÿ‘† ๐Ÿšซ โœ”๏ธ โœ โšซ๏ธโ” ๐Ÿ”  ๐Ÿ‘‰ ๐Ÿ“Ÿ โ›“.
    
    ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿช ๐Ÿ”ข โšช๏ธโžก๏ธ `fastapi.status`.
    
    ```Python hl_lines="1  6"
    {!../../../docs_src/response_status_code/tutorial002.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/openapi-callbacks.md

    Dieser Teil ist ziemlich normal, der grรถรŸte Teil des Codes ist Ihnen wahrscheinlich bereits bekannt:
    
    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_callbacks/tutorial001.py!}
    ```
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:23 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/background-tasks.md

    ใ“ใ“ใงใ€ใ‚ฟใ‚นใ‚ฏ้–ขๆ•ฐใฏใƒ•ใ‚กใ‚คใƒซๆ›ธใ่พผใฟใ‚’ๅฎŸ่กŒใ—ใพใ™ (ใƒกใƒผใƒซ้€ไฟกใฎใ‚ทใƒŸใƒฅใƒฌใƒผใ‚ทใƒงใƒณ)ใ€‚
    
    ใพใŸใ€ๆ›ธใ่พผใฟๆ“ไฝœใงใฏ `async` ใจ `await` ใ‚’ไฝฟ็”จใ—ใชใ„ใŸใ‚ใ€้€šๅธธใฎ `def` ใง้–ขๆ•ฐใ‚’ๅฎš็พฉใ—ใพใ™ใ€‚
    
    ```Python hl_lines="6-9"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    ## ใƒใƒƒใ‚ฏใ‚ฐใƒฉใ‚ฆใƒณใƒ‰ใ‚ฟใ‚นใ‚ฏใฎ่ฟฝๅŠ 
    
    *path operations ้–ขๆ•ฐ* ๅ†…ใงใ€`.add_task()` ใƒกใ‚ฝใƒƒใƒ‰ใ‚’ไฝฟ็”จใ—ใฆใ‚ฟใ‚นใ‚ฏ้–ขๆ•ฐใ‚’ *background tasks* ใ‚ชใƒ–ใ‚ธใ‚งใ‚ฏใƒˆใซๆธกใ—ใพใ™ใ€‚
    
    ```Python hl_lines="14"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    `.add_task()` ใฏไปฅไธ‹ใฎๅผ•ๆ•ฐใ‚’ๅ—ใ‘ๅ–ใ‚Šใพใ™:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 15 16:12:39 GMT 2024
    - 6.1K bytes
    - Viewed (0)
Back to top