Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,942 for termy (0.04 sec)

  1. docs/em/docs/tutorial/sql-databases.md

        โ””โ”€โ”€ schemas.py
    ```
    
    ๐Ÿ“ `__init__.py` ๐Ÿ› ๐Ÿ“, โœ‹๏ธ โšซ๏ธ ๐Ÿ’ฌ ๐Ÿ ๐Ÿ‘ˆ `sql_app` โฎ๏ธ ๐ŸŒ ๐Ÿšฎ ๐Ÿ•น (๐Ÿ ๐Ÿ“) ๐Ÿ“ฆ.
    
    ๐Ÿ”œ โžก๏ธ ๐Ÿ‘€ โšซ๏ธโ” ๐Ÿ”  ๐Ÿ“/๐Ÿ•น ๐Ÿ”จ.
    
    ## โŽ `SQLAlchemy`
    
    ๐Ÿฅ‡ ๐Ÿ‘† ๐Ÿ’ช โŽ `SQLAlchemy`:
    
    <div class="termy">
    
    ```console
    $ pip install sqlalchemy
    
    ---> 100%
    ```
    
    </div>
    
    ## โœ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ•
    
    โžก๏ธ ๐Ÿ”— ๐Ÿ“ `sql_app/database.py`.
    
    ### ๐Ÿ—„ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ•
    
    ```Python hl_lines="1-3"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/first-steps.md

    # First Steps
    
    The simplest FastAPI file could look like this:
    
    {* ../../docs_src/first_steps/tutorial001.py *}
    
    Copy that to a file `main.py`.
    
    Run the live server:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:single">main.py</u>
    <font color="#3465A4">INFO    </font> Using path <font color="#3465A4">main.py</font>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 26 11:48:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. README.md

    ## Installation
    
    Create and activate a <a href="https://fastapi.tiangolo.com/virtual-environments/" class="external-link" target="_blank">virtual environment</a> and then install FastAPI:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    **Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals.
    
    ## Example
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 09:13:26 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/docker.md

    ```
    fastapi>=0.68.0,<0.69.0
    pydantic>=1.8.0,<2.0.0
    uvicorn>=0.15.0,<0.16.0
    ```
    
    Und normalerweise wรผrden Sie diese Paketabhรคngigkeiten mit `pip` installieren, zum Beispiel:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    ---> 100%
    Successfully installed fastapi pydantic uvicorn
    ```
    
    </div>
    
    /// info
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/bigger-applications.md

    ///
    
    ## Check the automatic API docs
    
    Now, run your app:
    
    <div class="termy">
    
    ```console
    $ fastapi dev app/main.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. docs/zh/docs/deployment/docker.md

    * ๆž„ๅปบไฝ ็š„ FastAPI ้•œๅƒ๏ผš
    
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    
    /// tip
    
    ๆณจๆ„ๆœ€ๅŽ็š„ `.`๏ผŒๅฎƒ็›ธๅฝ“ไบŽ`./`๏ผŒๅฎƒๅ‘Š่ฏ‰ Docker ็”จไบŽๆž„ๅปบๅฎนๅ™จ้•œๅƒ็š„็›ฎๅฝ•ใ€‚
    
    ๅœจๆœฌไพ‹ไธญ๏ผŒๅฎƒๆ˜ฏ็›ธๅŒ็š„ๅฝ“ๅ‰็›ฎๅฝ•๏ผˆ`.`๏ผ‰ใ€‚
    
    ///
    
    ### ๅฏๅŠจ Docker ๅฎนๅ™จ
    
    * ๆ นๆฎไฝ ็š„้•œๅƒ่ฟ่กŒๅฎนๅ™จ๏ผš
    
    <div class="termy">
    
    ```console
    $ docker run -d --name mycontainer -p 80:80 myimage
    ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/security/first-steps.md

    ไพ‹ใˆใฐใ€`pip install python-multipart`ใ€‚
    
    ใ“ใ‚Œใฏใ€**OAuth2**ใŒ `ใƒฆใƒผใ‚ถใƒผๅ` ใ‚„ `ใƒ‘ใ‚นใƒฏใƒผใƒ‰` ใ‚’้€ไฟกใ™ใ‚‹ใŸใ‚ใซใ€ใ€Œใƒ•ใ‚ฉใƒผใƒ ใƒ‡ใƒผใ‚ฟใ€ใ‚’ไฝฟใ†ใ‹ใ‚‰ใงใ™ใ€‚
    
    ///
    
    ไพ‹ใ‚’ๅฎŸ่กŒใ—ใพใ™:
    
    <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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    ///
    
    ## Es in der automatischen API-Dokumentation ansehen
    
    Fรผhren Sie nun `uvicorn` aus, indem Sie das Modul `app.main` und die Variable `app` verwenden:
    
    <div class="termy">
    
    ```console
    $ uvicorn app.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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/sql-databases.md

        โ”œโ”€โ”€ main.py
        โ”œโ”€โ”€ models.py
        โ””โ”€โ”€ schemas.py
    ```
    
    ่ฏฅๆ–‡ไปถ`__init__.py`ๅชๆ˜ฏไธ€ไธช็ฉบๆ–‡ไปถ๏ผŒไฝ†ๅฎƒๅ‘Š่ฏ‰ Python `sql_app` ๆ˜ฏไธ€ไธชๅŒ…ใ€‚
    
    ็Žฐๅœจ่ฎฉๆˆ‘ไปฌ็œ‹็œ‹ๆฏไธชๆ–‡ไปถ/ๆจกๅ—็š„ไฝœ็”จใ€‚
    
    ## ๅฎ‰่ฃ… SQLAlchemy
    
    ้ฆ–ๅ…ˆไฝ ้œ€่ฆๅฎ‰่ฃ…`SQLAlchemy`:
    
    <div class="termy">
    
    ```console
    $ pip install sqlalchemy
    
    ---> 100%
    ```
    
    </div>
    
    ## ๅˆ›ๅปบ SQLAlchemy ้ƒจไปถ
    
    ่ฎฉๆˆ‘ไปฌ่ฝฌๅˆฐๆ–‡ไปถ`sql_app/database.py`ใ€‚
    
    ### ๅฏผๅ…ฅ SQLAlchemy ้ƒจไปถ
    
    ```Python hl_lines="1-3"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. docs/ko/docs/deployment/docker.md

    * FastAPI ์ด๋ฏธ์ง€๋ฅผ ๋นŒ๋“œํ•ฉ๋‹ˆ๋‹ค:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | "ํŒ"
    
    ๋งจ ๋์— ์žˆ๋Š” `.` ์— ์ฃผ๋ชฉํ•ฉ์‹œ๋‹ค. ์ด๋Š” `./`์™€ ๋™๋“ฑํ•˜๋ฉฐ, ๋„์ปค์—๊ฒŒ ์ปจํ…Œ์ด๋„ˆ ์ด๋ฏธ์ง€๋ฅผ ๋นŒ๋“œํ•˜๊ธฐ ์œ„ํ•œ ๋””๋ ‰ํ„ฐ๋ฆฌ๋ฅผ ์•Œ๋ ค์ค๋‹ˆ๋‹ค.
    
    ์ด ๊ฒฝ์šฐ์—๋Š” ํ˜„์žฌ ๋””๋ ‰ํ„ฐ๋ฆฌ(`.`)์™€ ๊ฐ™์Šต๋‹ˆ๋‹ค.
    
    ///
    
    ### ๋„์ปค ์ปจํ…Œ์ด๋„ˆ ์‹œ์ž‘ํ•˜๊ธฐ
    
    * ์—ฌ๋Ÿฌ๋ถ„์˜ ์ด๋ฏธ์ง€์— ๊ธฐ๋ฐ˜ํ•˜์—ฌ ์ปจํ…Œ์ด๋„ˆ๋ฅผ ์‹คํ–‰ํ•ฉ๋‹ˆ๋‹ค:
    
    <div class="termy">
    
    ```console
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top