Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for Async (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs_src/vibe/tutorial001_py310.py

    from typing import Any
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.vibe(
        "/vibe/",
        prompt="pls return json of users from database. make no mistakes",
    )
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 204 bytes
    - Click Count (0)
  2. docs/en/mkdocs.yml

              show_symbol_type_heading: true
              show_symbol_type_toc: true
    nav:
    - FastAPI: index.md
    - features.md
    - Learn:
      - learn/index.md
      - python-types.md
      - async.md
      - environment-variables.md
      - virtual-environments.md
      - Tutorial - User Guide:
        - tutorial/index.md
        - tutorial/first-steps.md
        - tutorial/path-params.md
        - tutorial/query-params.md
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  3. docs/en/data/topic_repos.yml

      html_url: https://github.com/atpuxiner/fastapi-scaff
      stars: 1275
      owner_login: atpuxiner
      owner_html_url: https://github.com/atpuxiner
    - name: fastapi-alembic-sqlmodel-async
      html_url: https://github.com/vargasjona/fastapi-alembic-sqlmodel-async
      stars: 1267
      owner_login: vargasjona
      owner_html_url: https://github.com/vargasjona
    - name: restish
      html_url: https://github.com/rest-sh/restish
      stars: 1258
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  4. fastapi/applications.py

                    ```python
                    from fastapi import FastAPI
    
                    app = FastAPI(redirect_slashes=True)  # the default
    
                    @app.get("/items/")
                    async def read_items():
                        return [{"item_id": "Foo"}]
                    ```
    
                    With this app, if a client goes to `/items` (without a trailing slash),
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/projects/SmokeTestProject.kt

            uuid = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stage.stageName.uuid}_SmokeTest"
            name = "Smoke Test"
            description = "Smoke tests against third-party plugins, Gradle build, and IDE sync"
        }) {
        init {
            smokeBuildTypes.forEach(this::buildType)
        }
    
        companion object {
            /**
             * Specific builds shown under the "Smoke Test" subproject in Pull Request Feedback.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

            val suffix = if (flakyTestStrategy == FlakyTestStrategy.ONLY)"_FlakyTestQuarantine" else ""
            id(buildTypeId(model) + suffix)
            name = "Smoke Ide Tests$suffix"
            description = "Tests against IDE sync process"
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
                extraParameters =
                    listOf(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top