Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Round (0.16 sec)

  1. docs/en/docs/fastapi-people.md

    * [Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
    
    A round of applause to them. ๐Ÿ‘ ๐Ÿ™‡
    
    ## FastAPI Experts
    
    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. ๐Ÿ™‡
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 16 23:54:24 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  2. docs/en/docs/alternatives.md

    Right before deciding to build **FastAPI** I found **APIStar** server. It had almost everything I was looking for and had a great design.
    
    It was one of the first implementations of a framework using Python type hints to declare parameters and requests that I ever saw (before NestJS and Molten). I found it more or less at the same time as Hug. But APIStar used the OpenAPI standard.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/handling-errors.md

    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    ใ—ใ‹ใ—ใ€ใ‚ฏใƒฉใ‚คใ‚ขใƒณใƒˆใŒ`http://example.com/items/bar`๏ผˆๅญ˜ๅœจใ—ใชใ„`item_id` `"bar"`๏ผ‰ใ‚’ใƒชใ‚ฏใ‚จใ‚นใƒˆใ—ใŸๅ ดๅˆใ€HTTPใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰404๏ผˆ"not found"ใ‚จใƒฉใƒผ๏ผ‰ใจไปฅไธ‹ใฎJSONใƒฌใ‚นใƒใƒณใ‚นใŒ่ฟ”ใ•ใ‚Œใพใ™:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    !!! tip "่ฑ†็Ÿฅ่ญ˜"
        `HTTPException`ใ‚’็™บ็”Ÿใ•ใ›ใ‚‹้š›ใซใฏใ€`str`ใ ใ‘ใงใชใใ€JSONใซๅค‰ๆ›ใงใใ‚‹ไปปๆ„ใฎๅ€คใ‚’`detail`ใƒ‘ใƒฉใƒกใƒผใ‚ฟใจใ—ใฆๆธกใ™ใ“ใจใŒใงใใพใ™ใ€‚
    
        `dist`ใ‚„`list`ใชใฉใ‚’ๆธกใ™ใ“ใจใŒใงใใพใ™ใ€‚
    
    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/zh/docs/tutorial/handling-errors.md

    - ๅฎขๆˆท็ซฏๆฒกๆœ‰ๆ‰ง่กŒๆ“ไฝœ็š„ๆƒ้™
    - ๅฎขๆˆท็ซฏๆฒกๆœ‰่ฎฟ้—ฎ่ต„ๆบ็š„ๆƒ้™
    - ๅฎขๆˆท็ซฏ่ฆ่ฎฟ้—ฎ็š„้กน็›ฎไธๅญ˜ๅœจ
    - ็ญ‰็ญ‰ ...
    
    ้‡ๅˆฐ่ฟ™ไบ›ๆƒ…ๅ†ตๆ—ถ๏ผŒ้€šๅธธ่ฆ่ฟ”ๅ›ž **4XX**๏ผˆ400 ่‡ณ 499๏ผ‰**HTTP ็Šถๆ€็ **ใ€‚
    
    **4XX** ็Šถๆ€็ ไธŽ่กจ็คบ่ฏทๆฑ‚ๆˆๅŠŸ็š„ **2XX**๏ผˆ200 ่‡ณ 299๏ผ‰ HTTP ็Šถๆ€็ ็ฑปไผผใ€‚
    
    ๅชไธ่ฟ‡๏ผŒ**4XX** ็Šถๆ€็ ่กจ็คบๅฎขๆˆท็ซฏๅ‘็”Ÿ็š„้”™่ฏฏใ€‚
    
    ๅคงๅฎถ้ƒฝ็Ÿฅ้“**ใ€Œ404 Not Foundใ€**้”™่ฏฏ๏ผŒ่ฟ˜ๆœ‰่ฐƒไพƒ่ฟ™ไธช้”™่ฏฏ็š„็ฌ‘่ฏๅง๏ผŸ
    
    ## ไฝฟ็”จ `HTTPException`
    
    ๅ‘ๅฎขๆˆท็ซฏ่ฟ”ๅ›ž HTTP ้”™่ฏฏๅ“ๅบ”๏ผŒๅฏไปฅไฝฟ็”จ `HTTPException`ใ€‚
    
    ### ๅฏผๅ…ฅ `HTTPException`
    
    ```Python hl_lines="1"
    {!../../../docs_src/handling_errors/tutorial001.py!}
    
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/manually.md

     โ”‚  ๐Ÿ main.py          โ”‚
     โ”‚                      โ”‚
     โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     โ•ญโ”€ <font color="#8AE234"><b>Importable FastAPI app</b></font> โ”€โ•ฎ
     โ”‚                          โ”‚
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/handling-errors.md

    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    โœ‹๏ธ ๐Ÿšฅ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“จ `http://example.com/items/bar` (๐Ÿšซ-๐Ÿšซ `item_id` `"bar"`), ๐Ÿ‘ˆ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ”œ ๐Ÿ“จ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘” ๐Ÿ“Ÿ 4๏ธโƒฃ0๏ธโƒฃ4๏ธโƒฃ ("๐Ÿšซ ๐Ÿ”Ž" โŒ), &amp; ๐ŸŽป ๐Ÿ“จ:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    !!! tip
        ๐Ÿ•โ” ๐Ÿ™‹โ€โ™€ `HTTPException`, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ™† ๐Ÿ’ฒ ๐Ÿ‘ˆ ๐Ÿ’ช ๐Ÿ—œ ๐ŸŽป ๐Ÿ”ข `detail`, ๐Ÿšซ ๐Ÿ•ด `str`.
    
        ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ `dict`, `list`, โ™’๏ธ.
    
        ๐Ÿ‘ซ ๐Ÿต ๐Ÿ” **FastAPI** &amp; ๐Ÿ—œ ๐ŸŽป.
    
    ## ๐Ÿšฎ ๐Ÿ›ƒ ๐ŸŽš
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/first-steps.md

     โ”‚  ๐Ÿ main.py          โ”‚
     โ”‚                      โ”‚
     โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     โ•ญโ”€ <font color="#8AE234"><b>Importable FastAPI app</b></font> โ”€โ•ฎ
     โ”‚                          โ”‚
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 12K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/conditional-openapi.md

    ```
    
    </div>
    
    Then if you go to the URLs at `/openapi.json`, `/docs`, or `/redoc` you will just get a `404 Not Found` error like:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Aug 19 19:54:04 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. docs/fr/docs/async.md

    Le temps d'exรฉcution รฉtant consommรฉ majoritairement par l'attente d'opรฉrations <abbr title="Input/Output ou Entrรฉes et Sorties ">I/O</abbr> on appelle ceci des opรฉrations <a href="https://fr.wikipedia.org/wiki/I/O_bound" class="external-link" target="_blank">"I/O bound"</a>.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 24K bytes
    - Viewed (0)
  10. docs/en/docs/python-types.md

        * Generating **automatic errors** returned to the client when the data is invalid.
    * **Document** the API using OpenAPI:
        * which is then used by the automatic interactive documentation user interfaces.
    
    This might all sound abstract. Don't worry. You'll see all this in action in the [Tutorial - User Guide](tutorial/index.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17K bytes
    - Viewed (0)
Back to top