Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,620 for termy (0.02 sec)

  1. docs/en/docs/tutorial/testing.md

    <div class="termy">
    
    ```console
    $ pip install pytest
    
    ---> 100%
    ```
    
    </div>
    
    It will detect the files and tests automatically, execute them, and report the results back to you.
    
    Run the tests with:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ================ test session starts ================
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/generate-clients.md

    &amp; ๐Ÿ‘ˆ ๐ŸŽ โ„น โšช๏ธโžก๏ธ ๐Ÿท ๐Ÿ‘ˆ ๐Ÿ”Œ ๐Ÿ—„ โšซ๏ธโ” ๐Ÿ’ช โš™๏ธ **๐Ÿ— ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“Ÿ**.
    
    ### ๐Ÿ— ๐Ÿ“• ๐Ÿ‘ฉโ€๐Ÿ’ป
    
    ๐Ÿ”œ ๐Ÿ‘ˆ ๐Ÿ‘ฅ โœ”๏ธ ๐Ÿ“ฑ โฎ๏ธ ๐Ÿท, ๐Ÿ‘ฅ ๐Ÿ’ช ๐Ÿ— ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“Ÿ ๐Ÿ•ธ.
    
    #### โŽ `openapi-ts`
    
    ๐Ÿ‘† ๐Ÿ’ช โŽ `openapi-ts` ๐Ÿ‘† ๐Ÿ•ธ ๐Ÿ“Ÿ โฎ๏ธ:
    
    <div class="termy">
    
    ```console
    $ npm install @hey-api/openapi-ts --save-dev
    
    ---> 100%
    ```
    
    </div>
    
    #### ๐Ÿ— ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“Ÿ
    
    ๐Ÿ— ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“Ÿ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿ“‹ โธ ๐Ÿˆธ `openapi-ts` ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ”œ โŽ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/settings.md

    <div class="termy">
    
    ```console
    $ pip install pydantic-settings
    ---> 100%
    ```
    
    </div>
    
    Tambiรฉn viene incluido cuando instalas los extras `all` con:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    /// info | Informaciรณn
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/security/oauth2-jwt.md

    Certifique-se de criar um [ambiente virtual](../../virtual-environments.md){.internal-link target=_blank}, ativรก-lo e entรฃo instalar o `pyjwt`:
    
    <div class="termy">
    
    ```console
    $ pip install pyjwt
    
    ---> 100%
    ```
    
    </div>
    
    /// info | Informaรงรฃo
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. docs/pt/docs/how-to/conditional-openapi.md

    E entรฃo o usamos ao criar o aplicativo `FastAPI`.
    
    Entรฃo vocรช pode desabilitar o OpenAPI (incluindo os documentos da interface do usuรกrio) definindo a variรกvel de ambiente `OPENAPI_URL` como uma string vazia, como:
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/js/custom.js

                lineDelay: 500
            });
        });
        const progressLiteralStart = "---> 100%";
        const promptLiteralStart = "$ ";
        const customPromptLiteralStart = "# ";
        const termynalActivateClass = "termy";
        let termynals = [];
    
        function createTermynals() {
            document
                .querySelectorAll(`.${termynalActivateClass} .highlight code`)
                .forEach(node => {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 02 20:44:50 UTC 2025
    - 5.4K bytes
    - Viewed (2)
  7. docs/ko/docs/tutorial/testing.md

    [virtual environment](../virtual-environments.md){.internal-link target=_blank} ๋ฅผ ๋งŒ๋“ค๊ณ , ํ™œ์„ฑํ™” ์‹œํ‚จ ๋’ค์— ์„ค์น˜ํ•˜์„ธ์š”. ์˜ˆ์‹œ:
    
    <div class="termy">
    
    ```console
    $ pip install pytest
    
    ---> 100%
    ```
    
    </div>
    
    `pytest` ํŒŒ์ผ๊ณผ ํ…Œ์ŠคํŠธ๋ฅผ ์ž๋™์œผ๋กœ ๊ฐ์ง€ํ•˜๊ณ  ์‹คํ–‰ํ•œ ๋‹ค์Œ, ๊ฒฐ๊ณผ๋ฅผ ๋ณด๊ณ ํ•  ๊ฒƒ์ž…๋‹ˆ๋‹ค.
    
    ํ…Œ์ŠคํŠธ๋ฅผ ๋‹ค์Œ ๋ช…๋ น์–ด๋กœ ์‹คํ–‰ํ•˜์„ธ์š”.
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ================ test session starts ================
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:24:48 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/testing.md

    ///
    
    ## ๅฎŸ่กŒ
    
    ๅพŒใฏใ€`pytest` ใ‚’ใ‚คใƒณใ‚นใƒˆใƒผใƒซใ™ใ‚‹ใ ใ‘ใงใ™:
    
    <div class="termy">
    
    ```console
    $ pip install pytest
    
    ---> 100%
    ```
    
    </div>
    
    ใƒ•ใ‚กใ‚คใƒซใ‚’ๆคœ็Ÿฅใ—ใ€่‡ชๅ‹•ใƒ†ใ‚นใƒˆใ‚’ๅฎŸ่กŒใ—ใ€็ตๆžœใฎใƒฌใƒใƒผใƒˆใ‚’่ฟ”ใ—ใพใ™ใ€‚
    
    ไปฅไธ‹ใงใƒ†ใ‚นใƒˆใ‚’ๅฎŸ่กŒใ—ใพใ™:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ================ test session starts ================
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. docs/vi/docs/index.md

    ## Cร i ฤ‘แบทt
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Bแบกn cลฉng sแบฝ cแบงn mแป™t ASGI server cho production nhฦฐ <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a> hoแบทc <a href="https://github.com/pgjones/hypercorn" class="external-link" target="_blank">Hypercorn</a>.
    
    <div class="termy">
    
    ```console
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  10. docs/em/docs/advanced/sub-applications.md

    ๐Ÿ‘‰ ๐Ÿ’ผ, โšซ๏ธ ๐Ÿ”œ ๐Ÿ“Œ โžก `/subapi`:
    
    {* ../../docs_src/sub_applications/tutorial001.py hl[11,19] *}
    
    ### โœ… ๐Ÿง ๐Ÿ› ๏ธ ๐Ÿฉบ
    
    ๐Ÿ”œ, ๐Ÿƒ `uvicorn` โฎ๏ธ ๐Ÿ‘‘ ๐Ÿ“ฑ, ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ“ `main.py`, โšซ๏ธ ๐Ÿ”œ:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top