mirror of
https://github.com/anomalyco/opencode-sdk-python.git
synced 2026-04-28 12:39:54 +00:00
feat(api): api update
This commit is contained in:
parent
c9d0f6daa1
commit
98315648f7
8 changed files with 260 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
configured_endpoints: 22
|
configured_endpoints: 23
|
||||||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-69b99aaffe10dd5247638b6a34d6c0b3c1cf5300853d12c947151fd946e7fcdb.yml
|
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-69b99aaffe10dd5247638b6a34d6c0b3c1cf5300853d12c947151fd946e7fcdb.yml
|
||||||
openapi_spec_hash: e2c746cf689d71f04c6e9b1bd92e6356
|
openapi_spec_hash: e2c746cf689d71f04c6e9b1bd92e6356
|
||||||
config_hash: e64b350ea4abbb4d56d49b0adebacb02
|
config_hash: d779331eb3dabf2d99f2a20be154d1c9
|
||||||
|
|
|
||||||
12
api.md
12
api.md
|
|
@ -134,3 +134,15 @@ Methods:
|
||||||
- <code title="post /session/{id}/share">client.session.<a href="./src/opencode_ai/resources/session.py">share</a>(id) -> <a href="./src/opencode_ai/types/session.py">Session</a></code>
|
- <code title="post /session/{id}/share">client.session.<a href="./src/opencode_ai/resources/session.py">share</a>(id) -> <a href="./src/opencode_ai/types/session.py">Session</a></code>
|
||||||
- <code title="post /session/{id}/summarize">client.session.<a href="./src/opencode_ai/resources/session.py">summarize</a>(id, \*\*<a href="src/opencode_ai/types/session_summarize_params.py">params</a>) -> <a href="./src/opencode_ai/types/session_summarize_response.py">SessionSummarizeResponse</a></code>
|
- <code title="post /session/{id}/summarize">client.session.<a href="./src/opencode_ai/resources/session.py">summarize</a>(id, \*\*<a href="src/opencode_ai/types/session_summarize_params.py">params</a>) -> <a href="./src/opencode_ai/types/session_summarize_response.py">SessionSummarizeResponse</a></code>
|
||||||
- <code title="delete /session/{id}/share">client.session.<a href="./src/opencode_ai/resources/session.py">unshare</a>(id) -> <a href="./src/opencode_ai/types/session.py">Session</a></code>
|
- <code title="delete /session/{id}/share">client.session.<a href="./src/opencode_ai/resources/session.py">unshare</a>(id) -> <a href="./src/opencode_ai/types/session.py">Session</a></code>
|
||||||
|
|
||||||
|
# Tui
|
||||||
|
|
||||||
|
Types:
|
||||||
|
|
||||||
|
```python
|
||||||
|
from opencode_ai.types import TuiPromptResponse
|
||||||
|
```
|
||||||
|
|
||||||
|
Methods:
|
||||||
|
|
||||||
|
- <code title="post /tui/prompt">client.tui.<a href="./src/opencode_ai/resources/tui.py">prompt</a>() -> <a href="./src/opencode_ai/types/tui_prompt_response.py">TuiPromptResponse</a></code>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ from ._types import (
|
||||||
)
|
)
|
||||||
from ._utils import is_given, get_async_library
|
from ._utils import is_given, get_async_library
|
||||||
from ._version import __version__
|
from ._version import __version__
|
||||||
from .resources import app, file, find, event, config, session
|
from .resources import app, tui, file, find, event, config, session
|
||||||
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
||||||
from ._exceptions import APIStatusError
|
from ._exceptions import APIStatusError
|
||||||
from ._base_client import (
|
from ._base_client import (
|
||||||
|
|
@ -49,6 +49,7 @@ class Opencode(SyncAPIClient):
|
||||||
file: file.FileResource
|
file: file.FileResource
|
||||||
config: config.ConfigResource
|
config: config.ConfigResource
|
||||||
session: session.SessionResource
|
session: session.SessionResource
|
||||||
|
tui: tui.TuiResource
|
||||||
with_raw_response: OpencodeWithRawResponse
|
with_raw_response: OpencodeWithRawResponse
|
||||||
with_streaming_response: OpencodeWithStreamedResponse
|
with_streaming_response: OpencodeWithStreamedResponse
|
||||||
|
|
||||||
|
|
@ -101,6 +102,7 @@ class Opencode(SyncAPIClient):
|
||||||
self.file = file.FileResource(self)
|
self.file = file.FileResource(self)
|
||||||
self.config = config.ConfigResource(self)
|
self.config = config.ConfigResource(self)
|
||||||
self.session = session.SessionResource(self)
|
self.session = session.SessionResource(self)
|
||||||
|
self.tui = tui.TuiResource(self)
|
||||||
self.with_raw_response = OpencodeWithRawResponse(self)
|
self.with_raw_response = OpencodeWithRawResponse(self)
|
||||||
self.with_streaming_response = OpencodeWithStreamedResponse(self)
|
self.with_streaming_response = OpencodeWithStreamedResponse(self)
|
||||||
|
|
||||||
|
|
@ -208,6 +210,7 @@ class AsyncOpencode(AsyncAPIClient):
|
||||||
file: file.AsyncFileResource
|
file: file.AsyncFileResource
|
||||||
config: config.AsyncConfigResource
|
config: config.AsyncConfigResource
|
||||||
session: session.AsyncSessionResource
|
session: session.AsyncSessionResource
|
||||||
|
tui: tui.AsyncTuiResource
|
||||||
with_raw_response: AsyncOpencodeWithRawResponse
|
with_raw_response: AsyncOpencodeWithRawResponse
|
||||||
with_streaming_response: AsyncOpencodeWithStreamedResponse
|
with_streaming_response: AsyncOpencodeWithStreamedResponse
|
||||||
|
|
||||||
|
|
@ -260,6 +263,7 @@ class AsyncOpencode(AsyncAPIClient):
|
||||||
self.file = file.AsyncFileResource(self)
|
self.file = file.AsyncFileResource(self)
|
||||||
self.config = config.AsyncConfigResource(self)
|
self.config = config.AsyncConfigResource(self)
|
||||||
self.session = session.AsyncSessionResource(self)
|
self.session = session.AsyncSessionResource(self)
|
||||||
|
self.tui = tui.AsyncTuiResource(self)
|
||||||
self.with_raw_response = AsyncOpencodeWithRawResponse(self)
|
self.with_raw_response = AsyncOpencodeWithRawResponse(self)
|
||||||
self.with_streaming_response = AsyncOpencodeWithStreamedResponse(self)
|
self.with_streaming_response = AsyncOpencodeWithStreamedResponse(self)
|
||||||
|
|
||||||
|
|
@ -368,6 +372,7 @@ class OpencodeWithRawResponse:
|
||||||
self.file = file.FileResourceWithRawResponse(client.file)
|
self.file = file.FileResourceWithRawResponse(client.file)
|
||||||
self.config = config.ConfigResourceWithRawResponse(client.config)
|
self.config = config.ConfigResourceWithRawResponse(client.config)
|
||||||
self.session = session.SessionResourceWithRawResponse(client.session)
|
self.session = session.SessionResourceWithRawResponse(client.session)
|
||||||
|
self.tui = tui.TuiResourceWithRawResponse(client.tui)
|
||||||
|
|
||||||
|
|
||||||
class AsyncOpencodeWithRawResponse:
|
class AsyncOpencodeWithRawResponse:
|
||||||
|
|
@ -378,6 +383,7 @@ class AsyncOpencodeWithRawResponse:
|
||||||
self.file = file.AsyncFileResourceWithRawResponse(client.file)
|
self.file = file.AsyncFileResourceWithRawResponse(client.file)
|
||||||
self.config = config.AsyncConfigResourceWithRawResponse(client.config)
|
self.config = config.AsyncConfigResourceWithRawResponse(client.config)
|
||||||
self.session = session.AsyncSessionResourceWithRawResponse(client.session)
|
self.session = session.AsyncSessionResourceWithRawResponse(client.session)
|
||||||
|
self.tui = tui.AsyncTuiResourceWithRawResponse(client.tui)
|
||||||
|
|
||||||
|
|
||||||
class OpencodeWithStreamedResponse:
|
class OpencodeWithStreamedResponse:
|
||||||
|
|
@ -388,6 +394,7 @@ class OpencodeWithStreamedResponse:
|
||||||
self.file = file.FileResourceWithStreamingResponse(client.file)
|
self.file = file.FileResourceWithStreamingResponse(client.file)
|
||||||
self.config = config.ConfigResourceWithStreamingResponse(client.config)
|
self.config = config.ConfigResourceWithStreamingResponse(client.config)
|
||||||
self.session = session.SessionResourceWithStreamingResponse(client.session)
|
self.session = session.SessionResourceWithStreamingResponse(client.session)
|
||||||
|
self.tui = tui.TuiResourceWithStreamingResponse(client.tui)
|
||||||
|
|
||||||
|
|
||||||
class AsyncOpencodeWithStreamedResponse:
|
class AsyncOpencodeWithStreamedResponse:
|
||||||
|
|
@ -398,6 +405,7 @@ class AsyncOpencodeWithStreamedResponse:
|
||||||
self.file = file.AsyncFileResourceWithStreamingResponse(client.file)
|
self.file = file.AsyncFileResourceWithStreamingResponse(client.file)
|
||||||
self.config = config.AsyncConfigResourceWithStreamingResponse(client.config)
|
self.config = config.AsyncConfigResourceWithStreamingResponse(client.config)
|
||||||
self.session = session.AsyncSessionResourceWithStreamingResponse(client.session)
|
self.session = session.AsyncSessionResourceWithStreamingResponse(client.session)
|
||||||
|
self.tui = tui.AsyncTuiResourceWithStreamingResponse(client.tui)
|
||||||
|
|
||||||
|
|
||||||
Client = Opencode
|
Client = Opencode
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,14 @@ from .app import (
|
||||||
AppResourceWithStreamingResponse,
|
AppResourceWithStreamingResponse,
|
||||||
AsyncAppResourceWithStreamingResponse,
|
AsyncAppResourceWithStreamingResponse,
|
||||||
)
|
)
|
||||||
|
from .tui import (
|
||||||
|
TuiResource,
|
||||||
|
AsyncTuiResource,
|
||||||
|
TuiResourceWithRawResponse,
|
||||||
|
AsyncTuiResourceWithRawResponse,
|
||||||
|
TuiResourceWithStreamingResponse,
|
||||||
|
AsyncTuiResourceWithStreamingResponse,
|
||||||
|
)
|
||||||
from .file import (
|
from .file import (
|
||||||
FileResource,
|
FileResource,
|
||||||
AsyncFileResource,
|
AsyncFileResource,
|
||||||
|
|
@ -86,4 +94,10 @@ __all__ = [
|
||||||
"AsyncSessionResourceWithRawResponse",
|
"AsyncSessionResourceWithRawResponse",
|
||||||
"SessionResourceWithStreamingResponse",
|
"SessionResourceWithStreamingResponse",
|
||||||
"AsyncSessionResourceWithStreamingResponse",
|
"AsyncSessionResourceWithStreamingResponse",
|
||||||
|
"TuiResource",
|
||||||
|
"AsyncTuiResource",
|
||||||
|
"TuiResourceWithRawResponse",
|
||||||
|
"AsyncTuiResourceWithRawResponse",
|
||||||
|
"TuiResourceWithStreamingResponse",
|
||||||
|
"AsyncTuiResourceWithStreamingResponse",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
135
src/opencode_ai/resources/tui.py
Normal file
135
src/opencode_ai/resources/tui.py
Normal file
|
|
@ -0,0 +1,135 @@
|
||||||
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import httpx
|
||||||
|
|
||||||
|
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
||||||
|
from .._compat import cached_property
|
||||||
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
||||||
|
from .._response import (
|
||||||
|
to_raw_response_wrapper,
|
||||||
|
to_streamed_response_wrapper,
|
||||||
|
async_to_raw_response_wrapper,
|
||||||
|
async_to_streamed_response_wrapper,
|
||||||
|
)
|
||||||
|
from .._base_client import make_request_options
|
||||||
|
from ..types.tui_prompt_response import TuiPromptResponse
|
||||||
|
|
||||||
|
__all__ = ["TuiResource", "AsyncTuiResource"]
|
||||||
|
|
||||||
|
|
||||||
|
class TuiResource(SyncAPIResource):
|
||||||
|
@cached_property
|
||||||
|
def with_raw_response(self) -> TuiResourceWithRawResponse:
|
||||||
|
"""
|
||||||
|
This property can be used as a prefix for any HTTP method call to return
|
||||||
|
the raw response object instead of the parsed content.
|
||||||
|
|
||||||
|
For more information, see https://www.github.com/sst/opencode-sdk-python#accessing-raw-response-data-eg-headers
|
||||||
|
"""
|
||||||
|
return TuiResourceWithRawResponse(self)
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def with_streaming_response(self) -> TuiResourceWithStreamingResponse:
|
||||||
|
"""
|
||||||
|
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
||||||
|
|
||||||
|
For more information, see https://www.github.com/sst/opencode-sdk-python#with_streaming_response
|
||||||
|
"""
|
||||||
|
return TuiResourceWithStreamingResponse(self)
|
||||||
|
|
||||||
|
def prompt(
|
||||||
|
self,
|
||||||
|
*,
|
||||||
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||||
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||||
|
extra_headers: Headers | None = None,
|
||||||
|
extra_query: Query | None = None,
|
||||||
|
extra_body: Body | None = None,
|
||||||
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
||||||
|
) -> TuiPromptResponse:
|
||||||
|
"""Send a prompt to the TUI"""
|
||||||
|
return self._post(
|
||||||
|
"/tui/prompt",
|
||||||
|
options=make_request_options(
|
||||||
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||||
|
),
|
||||||
|
cast_to=TuiPromptResponse,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class AsyncTuiResource(AsyncAPIResource):
|
||||||
|
@cached_property
|
||||||
|
def with_raw_response(self) -> AsyncTuiResourceWithRawResponse:
|
||||||
|
"""
|
||||||
|
This property can be used as a prefix for any HTTP method call to return
|
||||||
|
the raw response object instead of the parsed content.
|
||||||
|
|
||||||
|
For more information, see https://www.github.com/sst/opencode-sdk-python#accessing-raw-response-data-eg-headers
|
||||||
|
"""
|
||||||
|
return AsyncTuiResourceWithRawResponse(self)
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def with_streaming_response(self) -> AsyncTuiResourceWithStreamingResponse:
|
||||||
|
"""
|
||||||
|
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
||||||
|
|
||||||
|
For more information, see https://www.github.com/sst/opencode-sdk-python#with_streaming_response
|
||||||
|
"""
|
||||||
|
return AsyncTuiResourceWithStreamingResponse(self)
|
||||||
|
|
||||||
|
async def prompt(
|
||||||
|
self,
|
||||||
|
*,
|
||||||
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||||
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||||
|
extra_headers: Headers | None = None,
|
||||||
|
extra_query: Query | None = None,
|
||||||
|
extra_body: Body | None = None,
|
||||||
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
||||||
|
) -> TuiPromptResponse:
|
||||||
|
"""Send a prompt to the TUI"""
|
||||||
|
return await self._post(
|
||||||
|
"/tui/prompt",
|
||||||
|
options=make_request_options(
|
||||||
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||||
|
),
|
||||||
|
cast_to=TuiPromptResponse,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TuiResourceWithRawResponse:
|
||||||
|
def __init__(self, tui: TuiResource) -> None:
|
||||||
|
self._tui = tui
|
||||||
|
|
||||||
|
self.prompt = to_raw_response_wrapper(
|
||||||
|
tui.prompt,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class AsyncTuiResourceWithRawResponse:
|
||||||
|
def __init__(self, tui: AsyncTuiResource) -> None:
|
||||||
|
self._tui = tui
|
||||||
|
|
||||||
|
self.prompt = async_to_raw_response_wrapper(
|
||||||
|
tui.prompt,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TuiResourceWithStreamingResponse:
|
||||||
|
def __init__(self, tui: TuiResource) -> None:
|
||||||
|
self._tui = tui
|
||||||
|
|
||||||
|
self.prompt = to_streamed_response_wrapper(
|
||||||
|
tui.prompt,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class AsyncTuiResourceWithStreamingResponse:
|
||||||
|
def __init__(self, tui: AsyncTuiResource) -> None:
|
||||||
|
self._tui = tui
|
||||||
|
|
||||||
|
self.prompt = async_to_streamed_response_wrapper(
|
||||||
|
tui.prompt,
|
||||||
|
)
|
||||||
|
|
@ -52,6 +52,7 @@ from .find_symbols_params import FindSymbolsParams as FindSymbolsParams
|
||||||
from .session_chat_params import SessionChatParams as SessionChatParams
|
from .session_chat_params import SessionChatParams as SessionChatParams
|
||||||
from .session_init_params import SessionInitParams as SessionInitParams
|
from .session_init_params import SessionInitParams as SessionInitParams
|
||||||
from .symbol_source_param import SymbolSourceParam as SymbolSourceParam
|
from .symbol_source_param import SymbolSourceParam as SymbolSourceParam
|
||||||
|
from .tui_prompt_response import TuiPromptResponse as TuiPromptResponse
|
||||||
from .file_status_response import FileStatusResponse as FileStatusResponse
|
from .file_status_response import FileStatusResponse as FileStatusResponse
|
||||||
from .tool_state_completed import ToolStateCompleted as ToolStateCompleted
|
from .tool_state_completed import ToolStateCompleted as ToolStateCompleted
|
||||||
from .file_part_input_param import FilePartInputParam as FilePartInputParam
|
from .file_part_input_param import FilePartInputParam as FilePartInputParam
|
||||||
|
|
|
||||||
7
src/opencode_ai/types/tui_prompt_response.py
Normal file
7
src/opencode_ai/types/tui_prompt_response.py
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||||
|
|
||||||
|
from typing_extensions import TypeAlias
|
||||||
|
|
||||||
|
__all__ = ["TuiPromptResponse"]
|
||||||
|
|
||||||
|
TuiPromptResponse: TypeAlias = bool
|
||||||
80
tests/api_resources/test_tui.py
Normal file
80
tests/api_resources/test_tui.py
Normal file
|
|
@ -0,0 +1,80 @@
|
||||||
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import os
|
||||||
|
from typing import Any, cast
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from opencode_ai import Opencode, AsyncOpencode
|
||||||
|
from tests.utils import assert_matches_type
|
||||||
|
from opencode_ai.types import TuiPromptResponse
|
||||||
|
|
||||||
|
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
|
||||||
|
|
||||||
|
|
||||||
|
class TestTui:
|
||||||
|
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
def test_method_prompt(self, client: Opencode) -> None:
|
||||||
|
tui = client.tui.prompt()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
def test_raw_response_prompt(self, client: Opencode) -> None:
|
||||||
|
response = client.tui.with_raw_response.prompt()
|
||||||
|
|
||||||
|
assert response.is_closed is True
|
||||||
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||||
|
tui = response.parse()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
def test_streaming_response_prompt(self, client: Opencode) -> None:
|
||||||
|
with client.tui.with_streaming_response.prompt() as response:
|
||||||
|
assert not response.is_closed
|
||||||
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||||
|
|
||||||
|
tui = response.parse()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
assert cast(Any, response.is_closed) is True
|
||||||
|
|
||||||
|
|
||||||
|
class TestAsyncTui:
|
||||||
|
parametrize = pytest.mark.parametrize(
|
||||||
|
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
|
||||||
|
)
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
async def test_method_prompt(self, async_client: AsyncOpencode) -> None:
|
||||||
|
tui = await async_client.tui.prompt()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
async def test_raw_response_prompt(self, async_client: AsyncOpencode) -> None:
|
||||||
|
response = await async_client.tui.with_raw_response.prompt()
|
||||||
|
|
||||||
|
assert response.is_closed is True
|
||||||
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||||
|
tui = await response.parse()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
@pytest.mark.skip()
|
||||||
|
@parametrize
|
||||||
|
async def test_streaming_response_prompt(self, async_client: AsyncOpencode) -> None:
|
||||||
|
async with async_client.tui.with_streaming_response.prompt() as response:
|
||||||
|
assert not response.is_closed
|
||||||
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||||
|
|
||||||
|
tui = await response.parse()
|
||||||
|
assert_matches_type(TuiPromptResponse, tui, path=["response"])
|
||||||
|
|
||||||
|
assert cast(Any, response.is_closed) is True
|
||||||
Loading…
Add table
Add a link
Reference in a new issue