Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for plumbus (0.07 sec)

  1. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial002_py310.py

        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_py310
    @needs_pydanticv2
    def test_openapi_schema(client: TestClient) -> None:
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_generate_clients/test_tutorial003.py

    
    def test_get_items():
        response = client.get("/items/")
        assert response.status_code == 200, response.text
        assert response.json() == [
            {"name": "Plumbus", "price": 3},
            {"name": "Portal Gun", "price": 9001},
        ]
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001.py

        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_pydanticv2
    def test_openapi_schema(client: TestClient) -> None:
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py39.py

        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_py39
    @needs_pydanticv2
    def test_openapi_schema(client: TestClient) -> None:
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_header_param_models/test_tutorial001.py

                    )
                ]
            }
        )
    
    
    def test_header_param_model_extra(client: TestClient):
        response = client.get(
            "/items/", headers=[("save-data", "true"), ("tool", "plumbus")]
        )
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "host": "testserver",
                "save_data": True,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_dependencies/test_tutorial012_an.py

                "X-Key": "fake-super-secret-key",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == [{"item": "Portal Gun"}, {"item": "Plumbus"}]
    
    
    def test_get_valid_headers_users():
        response = client.get(
            "/users/",
            headers={
                "X-Token": "fake-super-secret-token",
                "X-Key": "fake-super-secret-key",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.py

                "X-Key": "fake-super-secret-key",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == [{"item": "Portal Gun"}, {"item": "Plumbus"}]
    
    
    @needs_py39
    def test_get_valid_headers_users(client: TestClient):
        response = client.get(
            "/users/",
            headers={
                "X-Token": "fake-super-secret-token",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_query_param_models/test_tutorial001.py

        response = client.get(
            "/items/",
            params={
                "limit": 10,
                "offset": 5,
                "order_by": "updated_at",
                "tags": ["tag1", "tag2"],
                "tool": "plumbus",
            },
        )
        assert response.status_code == 200
        assert response.json() == {
            "limit": 10,
            "offset": 5,
            "order_by": "updated_at",
            "tags": ["tag1", "tag2"],
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/generate-clients.md

    * `ItemsService`
    * `UsersService`
    
    ### Client Method Names
    
    Right now the generated method names like `createItemItemsPost` don't look very clean:
    
    ```TypeScript
    ItemsService.createItemItemsPost({name: "Plumbus", price: 5})
    ```
    
    ...that's because the client generator uses the OpenAPI internal **operation ID** for each *path operation*.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. docs/em/docs/advanced/generate-clients.md

    πŸ‘‰ πŸ’Ό πŸ‘† βœ”οΈ:
    
    * `ItemsService`
    * `UsersService`
    
    ### πŸ‘©β€πŸ’» πŸ‘©β€πŸ”¬ πŸ“›
    
    ▢️️ πŸ”œ πŸ— πŸ‘©β€πŸ”¬ πŸ“› πŸ’– `createItemItemsPost` 🚫 πŸ‘€ πŸ“Ά 🧹:
    
    ```TypeScript
    ItemsService.createItemItemsPost({name: "Plumbus", price: 5})
    ```
    
    ...πŸ‘ˆ ↩️ πŸ‘©β€πŸ’» πŸš‚ βš™οΈ πŸ—„ πŸ”— **πŸ› οΈ πŸ†”** πŸ”  *➑ πŸ› οΈ*.
    
    πŸ—„ 🚚 πŸ‘ˆ πŸ”  πŸ› οΈ πŸ†” 😍 🀭 🌐 *➑ πŸ› οΈ*, FastAPI βš™οΈ **πŸ”’ πŸ“›**, **➑**, & **πŸ‡ΊπŸ‡ΈπŸ” πŸ‘©β€πŸ”¬/πŸ› οΈ** πŸ— πŸ‘ˆ πŸ› οΈ πŸ†”, ↩️ πŸ‘ˆ 🌌 ⚫️ πŸ’ͺ βš’ πŸ’­ πŸ‘ˆ πŸ› οΈ πŸ†” 😍.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top