Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Potvin (0.19 sec)

  1. docs/en/docs/how-to/async-sql-encode-databases.md

    ```Python hl_lines="25-28"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## Create models
    
    Create Pydantic models for:
    
    * Notes to be created (`NoteIn`).
    * Notes to be returned (`Note`).
    
    ```Python hl_lines="31-33  36-39"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * ⬆ Bump dawidd6/action-download-artifact from 2.24.0 to 2.24.1. PR [#5603](https://github.com/tiangolo/fastapi/pull/5603) by [@dependabot[bot]](https://github.com/apps/dependabot).
    * 📝 Update coverage badge to use Samuel Colvin's Smokeshow. PR [#5585](https://github.com/tiangolo/fastapi/pull/5585) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.86.0
    
    ### Features
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  3. tests/test_tutorial/test_async_sql_databases/test_tutorial001.py

                                    }
                                },
                                "required": True,
                            },
                        },
                    }
                },
                "components": {
                    "schemas": {
                        "NoteIn": {
                            "title": "NoteIn",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Oct 18 12:36:40 GMT 2023
    - 6K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/async-sql-databases.md

    本例在启动 **FastAPI** 应用前,直接执行这些操作。
    
    * 创建 `engine`
    * 使用 `metadata` 对象创建所有表
    
    ```Python hl_lines="25-28"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## 创建模型
    
    创建以下 Pydantic 模型:
    
    * 创建笔记的模型(`NoteIn`)
    * 返回笔记的模型(`Note`)
    
    ```Python hl_lines="31-33  36-39"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    这两个 Pydantic 模型都可以辅助验证、序列化(转换)并注释(存档)输入的数据。
    
    因此,API 文档会显示这些数据。
    
    ## 连接与断开
    
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Mar 30 22:44:40 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  5. docs/pt/docs/help-fastapi.md

    Como você viu na documentação, o FastAPI se apoia em nos gigantes, Starlette e Pydantic.
    
    Patrocine também:
    
    * <a href="https://github.com/sponsors/samuelcolvin" class="external-link" target="_blank">Samuel Colvin (Pydantic)</a>
    * <a href="https://github.com/sponsors/encode" class="external-link" target="_blank">Encode (Starlette, Uvicorn)</a>
    
    ---
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. docs/ja/docs/help-fastapi.md

    ## FastAPIを強化するツールのスポンサーになる
    
    ドキュメントで見たように、FastAPIはStarletteとPydanticという巨人の肩に乗っています。
    
    以下のスポンサーになることもできます:
    
    * <a href="https://github.com/sponsors/samuelcolvin" class="external-link" target="_blank">Samuel Colvin (Pydantic)</a>
    * <a href="https://github.com/sponsors/encode" class="external-link" target="_blank">Encode (Starlette, Uvicorn)</a>
    
    ---
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Oct 20 08:39:03 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  7. docs/pl/docs/help-fastapi.md

    Jak widziałeś w dokumentacji, FastAPI stoi na ramionach gigantów, Starlette i Pydantic.
    
    Możesz również wesprzeć:
    
    * <a href="https://github.com/sponsors/samuelcolvin" class="external-link" target="_blank">Samuel Colvin (Pydantic)</a>
    * <a href="https://github.com/sponsors/encode" class="external-link" target="_blank">Encode (Starlette, Uvicorn)</a>
    
    ---
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  8. docs_src/async_sql_databases/tutorial001.py

        sqlalchemy.Column("completed", sqlalchemy.Boolean),
    )
    
    
    engine = sqlalchemy.create_engine(
        DATABASE_URL, connect_args={"check_same_thread": False}
    )
    metadata.create_all(engine)
    
    
    class NoteIn(BaseModel):
        text: str
        completed: bool
    
    
    class Note(BaseModel):
        id: int
        text: str
        completed: bool
    
    
    app = FastAPI()
    
    
    @app.on_event("startup")
    async def startup():
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  9. docs/em/docs/advanced/async-sql-databases.md

    * ✍ `engine`.
    * ✍ 🌐 🏓 ⚪️➡️ `metadata` 🎚.
    
    ```Python hl_lines="25-28"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## ✍ 🏷
    
    ✍ Pydantic 🏷:
    
    * 🗒 ✍ (`NoteIn`).
    * 🗒 📨 (`Note`).
    
    ```Python hl_lines="31-33  36-39"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    🏗 👫 Pydantic 🏷, 🔢 💽 🔜 ✔, 🎻 (🗜), &amp; ✍ (📄).
    
    , 👆 🔜 💪 👀 ⚫️ 🌐 🎓 🛠️ 🩺.
    
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 4K bytes
    - Viewed (0)
  10. docs/ko/docs/help-fastapi.md

      또한 FastAPI의 실버 또는 골드 스폰서가 될 수 있습니다. 🏅🎉
    
      ## FastAPI를 강화하는 도구의 스폰서가 되십시오
    
      문서에서 보았듯이, FastAPI는 Starlette과 Pydantic 라는 거인의 어깨에 타고 있습니다.
    
      다음의 스폰서가 될 수 있습니다
    
      - [Samuel Colvin (Pydantic)](https://github.com/sponsors/samuelcolvin)
      - [Encode (Starlette, Uvicorn)](https://github.com/sponsors/encode)
    
      ------
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 22:36:57 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top