Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for Borg (0.16 sec)

  1. docs/em/docs/tutorial/request-files.md

    * ๐Ÿ‘‰ โ›“ ๐Ÿ‘ˆ โšซ๏ธ ๐Ÿ”œ ๐Ÿ‘ท ๐Ÿ‘ โญ• ๐Ÿ“ ๐Ÿ’– ๐Ÿ–ผ, ๐Ÿ“น, โญ• ๐Ÿ’ฑ, โ™’๏ธ. ๐Ÿต ๐Ÿ˜ฉ ๐ŸŒ ๐Ÿ’พ.
    * ๐Ÿ‘† ๐Ÿ’ช ๐Ÿคš ๐Ÿ—ƒ โšช๏ธโžก๏ธ ๐Ÿ“‚ ๐Ÿ“.
    * โšซ๏ธ โœ”๏ธ <a href="https://docs.python.org/3/glossary.html#term-file-like-object" class="external-link" target="_blank">๐Ÿ“-๐Ÿ’–</a> `async` ๐Ÿ”ข.
    * โšซ๏ธ ๐ŸŽฆ โ˜‘ ๐Ÿ <a href="https://docs.python.org/3/library/tempfile.html#tempfile.SpooledTemporaryFile" class="external-link" target="_blank">`SpooledTemporaryFile`</a> ๐ŸŽš ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ”— ๐ŸŽ ๐Ÿ—ƒ ๐Ÿ‘ˆ โŒ› ๐Ÿ“-๐Ÿ’– ๐ŸŽš.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/request-files.md

    * ๋”ฐ๋ผ์„œ ์ด๋ฏธ์ง€, ๋™์˜์ƒ, ํฐ ์ด์ง„์ฝ”๋“œ์™€ ๊ฐ™์€ ๋Œ€์šฉ๋Ÿ‰ ํŒŒ์ผ๋“ค์„ ๋งŽ์€ ๋ฉ”๋ชจ๋ฆฌ๋ฅผ ์†Œ๋ชจํ•˜์ง€ ์•Š๊ณ  ์ฒ˜๋ฆฌํ•˜๊ธฐ์— ์ ํ•ฉํ•ฉ๋‹ˆ๋‹ค.
    * ์—…๋กœ๋“œ ๋œ ํŒŒ์ผ์˜ ๋ฉ”ํƒ€๋ฐ์ดํ„ฐ๋ฅผ ์–ป์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    * <a href="https://docs.python.org/3/glossary.html#term-file-like-object" class="external-link" target="_blank">file-like</a>  `async` ์ธํ„ฐํŽ˜์ด์Šค๋ฅผ ๊ฐ–๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
    * file-like object๋ฅผ ํ•„์š”๋กœํ•˜๋Š” ๋‹ค๋ฅธ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์— ์ง์ ‘์ ์œผ๋กœ ์ „๋‹ฌํ•  ์ˆ˜ ์žˆ๋Š” ํŒŒ์ด์ฌ <a href="https://docs.python.org/3/library/tempfile.html#tempfile.SpooledTemporaryFile" class="external-link" target="_blank">`SpooledTemporaryFile`</a> ๊ฐ์ฒด๋ฅผ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/testing.md

    It is based on <a href="https://www.python-httpx.org" class="external-link" target="_blank">HTTPX</a>, which in turn is designed based on Requests, so it's very familiar and intuitive.
    
    With it, you can use <a href="https://docs.pytest.org/" class="external-link" target="_blank">pytest</a> directly with **FastAPI**.
    
    ## Using `TestClient`
    
    !!! info
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/openapi-callbacks.md

    https://yourapi.com/invoices/?callback_url=https://www.external.org/events
    ```
    
    mit einem JSON-Kรถrper:
    
    ```JSON
    {
        "id": "2expen51ve",
        "customer": "Mr. Richie Rich",
        "total": "9999"
    }
    ```
    
    dann verarbeitet *Ihre API* die Rechnung und sendet irgendwann spรคter einen Callback-Request an die `callback_url` (die *externe API*):
    
    ```
    https://www.external.org/events/invoices/2expen51ve
    ```
    
    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)
  5. docs/em/docs/advanced/openapi-callbacks.md

    ```
    https://yourapi.com/invoices/?callback_url=https://www.external.org/events
    ```
    
    โฎ๏ธ ๐ŸŽป ๐Ÿ’ช:
    
    ```JSON
    {
        "id": "2expen51ve",
        "customer": "Mr. Richie Rich",
        "total": "9999"
    }
    ```
    
    โคด๏ธ *๐Ÿ‘† ๐Ÿ› ๏ธ* ๐Ÿ”œ ๐Ÿ› ๏ธ ๐Ÿงพ, &amp; โ˜ โช, ๐Ÿ“จ โฒ ๐Ÿ“จ `callback_url` ( *๐Ÿ”ข ๐Ÿ› ๏ธ*):
    
    ```
    https://www.external.org/events/invoices/2expen51ve
    ```
    
    โฎ๏ธ ๐ŸŽป ๐Ÿ’ช โš— ๐Ÿ•ณ ๐Ÿ’–:
    
    ```JSON
    {
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/body-updates.md

    # ่ฏทๆฑ‚ไฝ“ - ๆ›ดๆ–ฐๆ•ฐๆฎ
    
    ## ็”จ `PUT` ๆ›ดๆ–ฐๆ•ฐๆฎ
    
    ๆ›ดๆ–ฐๆ•ฐๆฎ่ฏท็”จ <a href="https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/PUT" class="external-link" target="_blank">HTTP `PUT`</a> ๆ“ไฝœใ€‚
    
    ๆŠŠ่พ“ๅ…ฅๆ•ฐๆฎ่ฝฌๆขไธบไปฅ JSON ๆ ผๅผๅญ˜ๅ‚จ็š„ๆ•ฐๆฎ๏ผˆๆฏ”ๅฆ‚๏ผŒไฝฟ็”จ NoSQL ๆ•ฐๆฎๅบ“ๆ—ถ๏ผ‰๏ผŒๅฏไปฅไฝฟ็”จ `jsonable_encoder`ใ€‚ไพ‹ๅฆ‚๏ผŒๆŠŠ `datetime` ่ฝฌๆขไธบ `str`ใ€‚
    
    ```Python hl_lines="30-35"
    {!../../../docs_src/body_updates/tutorial001.py!}
    ```
    
    `PUT` ็”จไบŽๆŽฅๆ”ถๆ›ฟๆข็Žฐๆœ‰ๆ•ฐๆฎ็š„ๆ•ฐๆฎใ€‚
    
    ### ๅ…ณไบŽๆ›ดๆ–ฐๆ•ฐๆฎ็š„่ญฆๅ‘Š
    
    ็”จ `PUT` ๆŠŠๆ•ฐๆฎ้กน `bar` ๆ›ดๆ–ฐไธบไปฅไธ‹ๅ†…ๅฎนๆ—ถ๏ผš
    
    ```Python
    {
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/manually.md

    There are several alternatives, including:
    
    * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a>: a high performance ASGI server.
    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)
  8. docs/ko/docs/tutorial/debugging.md

    ๋”ฐ๋ผ์„œ ๋‹ค์Œ ํ–‰
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    ์€ ์‹คํ–‰๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    
    !!! info "์ •๋ณด"
        ์ž์„ธํ•œ ๋‚ด์šฉ์€ <a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">๊ณต์‹ Python ๋ฌธ์„œ</a>๋ฅผ ํ™•์ธํ•˜์„ธ์š”
    
    ## ๋””๋ฒ„๊ฑฐ๋กœ ์ฝ”๋“œ ์‹คํ–‰
    
    ์ฝ”๋“œ์—์„œ ์ง์ ‘ Uvicorn ์„œ๋ฒ„๋ฅผ ์‹คํ–‰ํ•˜๊ณ  ์žˆ๊ธฐ ๋•Œ๋ฌธ์— ๋””๋ฒ„๊ฑฐ์—์„œ ์ง์ ‘ Python ํ”„๋กœ๊ทธ๋žจ(FastAPI ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜)์„ ํ˜ธ์ถœํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ---
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 04:18:08 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/dataclasses.md

    # Using Dataclasses
    
    FastAPI is built on top of **Pydantic**, and I have been showing you how to use Pydantic models to declare requests and responses.
    
    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)
  10. docs/zh/docs/advanced/custom-request-and-route.md

    ๆœ‰ๆ—ถ๏ผŒๆˆ‘ไปฌ่ฆ่ฆ†็›– `Request` ไธŽ `APIRoute` ็ฑปไฝฟ็”จ็š„้€ป่พ‘ใ€‚
    
    ๅฐคๅ…ถๆ˜ฏไธญ้—ดไปถ้‡Œ็š„้€ป่พ‘ใ€‚
    
    ไพ‹ๅฆ‚๏ผŒๅœจๅบ”็”จๅค„็†่ฏทๆฑ‚ไฝ“ๅ‰๏ผŒ้ข„ๅ…ˆ่ฏปๅ–ๆˆ–ๆ“ๆŽง่ฏทๆฑ‚ไฝ“ใ€‚
    
    !!! danger "ๅฑ้™ฉ"
    
        ๆœฌ็ซ ๅ†…ๅฎน**่พƒ้šพ**ใ€‚
    
        **FastAPI** ๆ–ฐๆ‰‹ๅฏ่ทณ่ฟ‡ๆœฌ็ซ ใ€‚
    
    ## ็”จไพ‹
    
    ๅธธ่ง็”จไพ‹ๅฆ‚ไธ‹๏ผš
    
    * ๆŠŠ <a href="https://msgpack.org/index.html" class="external-link" target="_blank">`msgpack`</a> ็ญ‰้ž JSON ่ฏทๆฑ‚ไฝ“่ฝฌๆขไธบ JSON
    * ่งฃๅŽ‹ gzip ๅŽ‹็ผฉ็š„่ฏทๆฑ‚ไฝ“
    * ่‡ชๅŠจ่ฎฐๅฝ•ๆ‰€ๆœ‰่ฏทๆฑ‚ไฝ“็š„ๆ—ฅๅฟ—
    
    ## ๅค„็†่‡ชๅฎšไน‰่ฏทๆฑ‚ไฝ“็ผ–็ 
    
    ไธ‹้ขๅญฆไน ๅฆ‚ไฝ•ไฝฟ็”จ่‡ชๅฎšไน‰ `Request` ๅญ็ฑปๅŽ‹็ผฉ gizp ่ฏทๆฑ‚ใ€‚
    
    ๅนถๅœจ่‡ชๅฎšไน‰่ฏทๆฑ‚็š„็ฑปไธญไฝฟ็”จ `APIRoute` ๅญ็ฑปใ€‚
    
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Mar 30 22:45:40 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top