anchorbrowser 0.1.0a3__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anchorbrowser/__init__.py +3 -1
- anchorbrowser/_base_client.py +16 -13
- anchorbrowser/_client.py +21 -9
- anchorbrowser/_compat.py +48 -48
- anchorbrowser/_files.py +4 -4
- anchorbrowser/_models.py +51 -45
- anchorbrowser/_qs.py +7 -7
- anchorbrowser/_types.py +53 -12
- anchorbrowser/_utils/__init__.py +9 -2
- anchorbrowser/_utils/_compat.py +45 -0
- anchorbrowser/_utils/_datetime_parse.py +136 -0
- anchorbrowser/_utils/_transform.py +13 -3
- anchorbrowser/_utils/_typing.py +6 -1
- anchorbrowser/_utils/_utils.py +4 -5
- anchorbrowser/_version.py +1 -1
- anchorbrowser/lib/browser.py +1 -1
- anchorbrowser/resources/__init__.py +14 -0
- anchorbrowser/resources/events.py +270 -0
- anchorbrowser/resources/extensions.py +9 -9
- anchorbrowser/resources/profiles.py +31 -43
- anchorbrowser/resources/sessions/all.py +5 -5
- anchorbrowser/resources/sessions/clipboard.py +5 -5
- anchorbrowser/resources/sessions/keyboard.py +11 -13
- anchorbrowser/resources/sessions/mouse.py +19 -19
- anchorbrowser/resources/sessions/recordings/primary.py +3 -3
- anchorbrowser/resources/sessions/recordings/recordings.py +7 -7
- anchorbrowser/resources/sessions/sessions.py +307 -30
- anchorbrowser/resources/tools.py +107 -37
- anchorbrowser/types/__init__.py +7 -0
- anchorbrowser/types/event_signal_params.py +13 -0
- anchorbrowser/types/event_wait_for_params.py +14 -0
- anchorbrowser/types/event_wait_for_response.py +12 -0
- anchorbrowser/types/extension_manifest.py +6 -1
- anchorbrowser/types/profile_create_params.py +3 -6
- anchorbrowser/types/profile_list_response.py +0 -3
- anchorbrowser/types/profile_retrieve_response.py +0 -3
- anchorbrowser/types/profile_update_params.py +0 -6
- anchorbrowser/types/session_create_params.py +262 -26
- anchorbrowser/types/session_list_pages_response.py +25 -0
- anchorbrowser/types/session_retrieve_response.py +46 -0
- anchorbrowser/types/session_scroll_params.py +3 -0
- anchorbrowser/types/session_upload_file_params.py +14 -0
- anchorbrowser/types/session_upload_file_response.py +17 -0
- anchorbrowser/types/sessions/keyboard_shortcut_params.py +2 -2
- anchorbrowser/types/sessions/recording_list_response.py +4 -8
- anchorbrowser/types/tool_fetch_webpage_params.py +15 -0
- anchorbrowser/types/tool_perform_web_task_params.py +17 -1
- anchorbrowser/types/tool_perform_web_task_response.py +3 -3
- {anchorbrowser-0.1.0a3.dist-info → anchorbrowser-0.1.1.dist-info}/METADATA +8 -9
- {anchorbrowser-0.1.0a3.dist-info → anchorbrowser-0.1.1.dist-info}/RECORD +52 -42
- {anchorbrowser-0.1.0a3.dist-info → anchorbrowser-0.1.1.dist-info}/WHEEL +0 -0
- {anchorbrowser-0.1.0a3.dist-info → anchorbrowser-0.1.1.dist-info}/licenses/LICENSE +0 -0
anchorbrowser/__init__.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import typing as _t
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
|
-
from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
|
|
6
|
+
from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes, omit, not_given
|
|
7
7
|
from ._utils import file_from_path
|
|
8
8
|
from ._client import (
|
|
9
9
|
Client,
|
|
@@ -48,7 +48,9 @@ __all__ = [
|
|
|
48
48
|
"ProxiesTypes",
|
|
49
49
|
"NotGiven",
|
|
50
50
|
"NOT_GIVEN",
|
|
51
|
+
"not_given",
|
|
51
52
|
"Omit",
|
|
53
|
+
"omit",
|
|
52
54
|
"AnchorbrowserError",
|
|
53
55
|
"APIError",
|
|
54
56
|
"APIStatusError",
|
anchorbrowser/_base_client.py
CHANGED
|
@@ -42,7 +42,6 @@ from . import _exceptions
|
|
|
42
42
|
from ._qs import Querystring
|
|
43
43
|
from ._files import to_httpx_files, async_to_httpx_files
|
|
44
44
|
from ._types import (
|
|
45
|
-
NOT_GIVEN,
|
|
46
45
|
Body,
|
|
47
46
|
Omit,
|
|
48
47
|
Query,
|
|
@@ -57,9 +56,10 @@ from ._types import (
|
|
|
57
56
|
RequestOptions,
|
|
58
57
|
HttpxRequestFiles,
|
|
59
58
|
ModelBuilderProtocol,
|
|
59
|
+
not_given,
|
|
60
60
|
)
|
|
61
61
|
from ._utils import is_dict, is_list, asyncify, is_given, lru_cache, is_mapping
|
|
62
|
-
from ._compat import
|
|
62
|
+
from ._compat import PYDANTIC_V1, model_copy, model_dump
|
|
63
63
|
from ._models import GenericModel, FinalRequestOptions, validate_type, construct_type
|
|
64
64
|
from ._response import (
|
|
65
65
|
APIResponse,
|
|
@@ -145,9 +145,9 @@ class PageInfo:
|
|
|
145
145
|
def __init__(
|
|
146
146
|
self,
|
|
147
147
|
*,
|
|
148
|
-
url: URL | NotGiven =
|
|
149
|
-
json: Body | NotGiven =
|
|
150
|
-
params: Query | NotGiven =
|
|
148
|
+
url: URL | NotGiven = not_given,
|
|
149
|
+
json: Body | NotGiven = not_given,
|
|
150
|
+
params: Query | NotGiven = not_given,
|
|
151
151
|
) -> None:
|
|
152
152
|
self.url = url
|
|
153
153
|
self.json = json
|
|
@@ -232,7 +232,7 @@ class BaseSyncPage(BasePage[_T], Generic[_T]):
|
|
|
232
232
|
model: Type[_T],
|
|
233
233
|
options: FinalRequestOptions,
|
|
234
234
|
) -> None:
|
|
235
|
-
if
|
|
235
|
+
if (not PYDANTIC_V1) and getattr(self, "__pydantic_private__", None) is None:
|
|
236
236
|
self.__pydantic_private__ = {}
|
|
237
237
|
|
|
238
238
|
self._model = model
|
|
@@ -320,7 +320,7 @@ class BaseAsyncPage(BasePage[_T], Generic[_T]):
|
|
|
320
320
|
client: AsyncAPIClient,
|
|
321
321
|
options: FinalRequestOptions,
|
|
322
322
|
) -> None:
|
|
323
|
-
if
|
|
323
|
+
if (not PYDANTIC_V1) and getattr(self, "__pydantic_private__", None) is None:
|
|
324
324
|
self.__pydantic_private__ = {}
|
|
325
325
|
|
|
326
326
|
self._model = model
|
|
@@ -532,7 +532,10 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
|
|
532
532
|
is_body_allowed = options.method.lower() != "get"
|
|
533
533
|
|
|
534
534
|
if is_body_allowed:
|
|
535
|
-
|
|
535
|
+
if isinstance(json_data, bytes):
|
|
536
|
+
kwargs["content"] = json_data
|
|
537
|
+
else:
|
|
538
|
+
kwargs["json"] = json_data if is_given(json_data) else None
|
|
536
539
|
kwargs["files"] = files
|
|
537
540
|
else:
|
|
538
541
|
headers.pop("Content-Type", None)
|
|
@@ -592,7 +595,7 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
|
|
592
595
|
# we internally support defining a temporary header to override the
|
|
593
596
|
# default `cast_to` type for use with `.with_raw_response` and `.with_streaming_response`
|
|
594
597
|
# see _response.py for implementation details
|
|
595
|
-
override_cast_to = headers.pop(OVERRIDE_CAST_TO_HEADER,
|
|
598
|
+
override_cast_to = headers.pop(OVERRIDE_CAST_TO_HEADER, not_given)
|
|
596
599
|
if is_given(override_cast_to):
|
|
597
600
|
options.headers = headers
|
|
598
601
|
return cast(Type[ResponseT], override_cast_to)
|
|
@@ -822,7 +825,7 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
|
|
|
822
825
|
version: str,
|
|
823
826
|
base_url: str | URL,
|
|
824
827
|
max_retries: int = DEFAULT_MAX_RETRIES,
|
|
825
|
-
timeout: float | Timeout | None | NotGiven =
|
|
828
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
826
829
|
http_client: httpx.Client | None = None,
|
|
827
830
|
custom_headers: Mapping[str, str] | None = None,
|
|
828
831
|
custom_query: Mapping[str, object] | None = None,
|
|
@@ -1353,7 +1356,7 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1353
1356
|
base_url: str | URL,
|
|
1354
1357
|
_strict_response_validation: bool,
|
|
1355
1358
|
max_retries: int = DEFAULT_MAX_RETRIES,
|
|
1356
|
-
timeout: float | Timeout | None | NotGiven =
|
|
1359
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
1357
1360
|
http_client: httpx.AsyncClient | None = None,
|
|
1358
1361
|
custom_headers: Mapping[str, str] | None = None,
|
|
1359
1362
|
custom_query: Mapping[str, object] | None = None,
|
|
@@ -1815,8 +1818,8 @@ def make_request_options(
|
|
|
1815
1818
|
extra_query: Query | None = None,
|
|
1816
1819
|
extra_body: Body | None = None,
|
|
1817
1820
|
idempotency_key: str | None = None,
|
|
1818
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
1819
|
-
post_parser: PostParser | NotGiven =
|
|
1821
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1822
|
+
post_parser: PostParser | NotGiven = not_given,
|
|
1820
1823
|
) -> RequestOptions:
|
|
1821
1824
|
"""Create a dict of type RequestOptions without keys of NotGiven values."""
|
|
1822
1825
|
options: RequestOptions = {}
|
anchorbrowser/_client.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import os
|
|
6
|
-
from typing import Any,
|
|
6
|
+
from typing import Any, Mapping
|
|
7
7
|
from typing_extensions import Self, override
|
|
8
8
|
|
|
9
9
|
import httpx
|
|
@@ -11,17 +11,17 @@ import httpx
|
|
|
11
11
|
from . import _exceptions
|
|
12
12
|
from ._qs import Querystring
|
|
13
13
|
from ._types import (
|
|
14
|
-
NOT_GIVEN,
|
|
15
14
|
Omit,
|
|
16
15
|
Timeout,
|
|
17
16
|
NotGiven,
|
|
18
17
|
Transport,
|
|
19
18
|
ProxiesTypes,
|
|
20
19
|
RequestOptions,
|
|
20
|
+
not_given,
|
|
21
21
|
)
|
|
22
22
|
from ._utils import is_given, get_async_library
|
|
23
23
|
from ._version import __version__
|
|
24
|
-
from .resources import agent, tools, browser, profiles, extensions
|
|
24
|
+
from .resources import agent, tools, events, browser, profiles, extensions
|
|
25
25
|
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
|
26
26
|
from ._exceptions import APIStatusError, AnchorbrowserError
|
|
27
27
|
from ._base_client import (
|
|
@@ -50,6 +50,7 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
50
50
|
extensions: extensions.ExtensionsResource
|
|
51
51
|
browser: browser.BrowserResource
|
|
52
52
|
agent: agent.AgentResource
|
|
53
|
+
events: events.EventsResource
|
|
53
54
|
with_raw_response: AnchorbrowserWithRawResponse
|
|
54
55
|
with_streaming_response: AnchorbrowserWithStreamedResponse
|
|
55
56
|
|
|
@@ -61,7 +62,7 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
61
62
|
*,
|
|
62
63
|
api_key: str | None = None,
|
|
63
64
|
base_url: str | httpx.URL | None = None,
|
|
64
|
-
timeout:
|
|
65
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
65
66
|
max_retries: int = DEFAULT_MAX_RETRIES,
|
|
66
67
|
default_headers: Mapping[str, str] | None = None,
|
|
67
68
|
default_query: Mapping[str, object] | None = None,
|
|
@@ -113,6 +114,7 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
113
114
|
self.extensions = extensions.ExtensionsResource(self)
|
|
114
115
|
self.browser = browser.BrowserResource(self)
|
|
115
116
|
self.agent = agent.AgentResource(self)
|
|
117
|
+
self.events = events.EventsResource(self)
|
|
116
118
|
self.with_raw_response = AnchorbrowserWithRawResponse(self)
|
|
117
119
|
self.with_streaming_response = AnchorbrowserWithStreamedResponse(self)
|
|
118
120
|
|
|
@@ -141,9 +143,9 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
141
143
|
*,
|
|
142
144
|
api_key: str | None = None,
|
|
143
145
|
base_url: str | httpx.URL | None = None,
|
|
144
|
-
timeout: float | Timeout | None | NotGiven =
|
|
146
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
145
147
|
http_client: httpx.Client | None = None,
|
|
146
|
-
max_retries: int | NotGiven =
|
|
148
|
+
max_retries: int | NotGiven = not_given,
|
|
147
149
|
default_headers: Mapping[str, str] | None = None,
|
|
148
150
|
set_default_headers: Mapping[str, str] | None = None,
|
|
149
151
|
default_query: Mapping[str, object] | None = None,
|
|
@@ -228,6 +230,7 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
228
230
|
extensions: extensions.AsyncExtensionsResource
|
|
229
231
|
browser: browser.AsyncBrowserResource
|
|
230
232
|
agent: agent.AsyncAgentResource
|
|
233
|
+
events: events.AsyncEventsResource
|
|
231
234
|
with_raw_response: AsyncAnchorbrowserWithRawResponse
|
|
232
235
|
with_streaming_response: AsyncAnchorbrowserWithStreamedResponse
|
|
233
236
|
|
|
@@ -239,7 +242,7 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
239
242
|
*,
|
|
240
243
|
api_key: str | None = None,
|
|
241
244
|
base_url: str | httpx.URL | None = None,
|
|
242
|
-
timeout:
|
|
245
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
243
246
|
max_retries: int = DEFAULT_MAX_RETRIES,
|
|
244
247
|
default_headers: Mapping[str, str] | None = None,
|
|
245
248
|
default_query: Mapping[str, object] | None = None,
|
|
@@ -291,6 +294,7 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
291
294
|
self.extensions = extensions.AsyncExtensionsResource(self)
|
|
292
295
|
self.browser = browser.AsyncBrowserResource(self)
|
|
293
296
|
self.agent = agent.AsyncAgentResource(self)
|
|
297
|
+
self.events = events.AsyncEventsResource(self)
|
|
294
298
|
self.with_raw_response = AsyncAnchorbrowserWithRawResponse(self)
|
|
295
299
|
self.with_streaming_response = AsyncAnchorbrowserWithStreamedResponse(self)
|
|
296
300
|
|
|
@@ -319,9 +323,9 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
319
323
|
*,
|
|
320
324
|
api_key: str | None = None,
|
|
321
325
|
base_url: str | httpx.URL | None = None,
|
|
322
|
-
timeout: float | Timeout | None | NotGiven =
|
|
326
|
+
timeout: float | Timeout | None | NotGiven = not_given,
|
|
323
327
|
http_client: httpx.AsyncClient | None = None,
|
|
324
|
-
max_retries: int | NotGiven =
|
|
328
|
+
max_retries: int | NotGiven = not_given,
|
|
325
329
|
default_headers: Mapping[str, str] | None = None,
|
|
326
330
|
set_default_headers: Mapping[str, str] | None = None,
|
|
327
331
|
default_query: Mapping[str, object] | None = None,
|
|
@@ -407,6 +411,8 @@ class AnchorbrowserWithRawResponse:
|
|
|
407
411
|
self.extensions = extensions.ExtensionsResourceWithRawResponse(client.extensions)
|
|
408
412
|
self.browser = browser.BrowserResourceWithRawResponse(client.browser)
|
|
409
413
|
self.agent = agent.AgentResourceWithRawResponse(client.agent)
|
|
414
|
+
self.events = events.EventsResourceWithRawResponse(client.events)
|
|
415
|
+
|
|
410
416
|
|
|
411
417
|
class AsyncAnchorbrowserWithRawResponse:
|
|
412
418
|
def __init__(self, client: AsyncAnchorbrowser) -> None:
|
|
@@ -416,6 +422,8 @@ class AsyncAnchorbrowserWithRawResponse:
|
|
|
416
422
|
self.extensions = extensions.AsyncExtensionsResourceWithRawResponse(client.extensions)
|
|
417
423
|
self.browser = browser.AsyncBrowserResourceWithRawResponse(client.browser)
|
|
418
424
|
self.agent = agent.AsyncAgentResourceWithRawResponse(client.agent)
|
|
425
|
+
self.events = events.AsyncEventsResourceWithRawResponse(client.events)
|
|
426
|
+
|
|
419
427
|
|
|
420
428
|
class AnchorbrowserWithStreamedResponse:
|
|
421
429
|
def __init__(self, client: Anchorbrowser) -> None:
|
|
@@ -425,6 +433,8 @@ class AnchorbrowserWithStreamedResponse:
|
|
|
425
433
|
self.extensions = extensions.ExtensionsResourceWithStreamingResponse(client.extensions)
|
|
426
434
|
self.browser = browser.BrowserResourceWithStreamingResponse(client.browser)
|
|
427
435
|
self.agent = agent.AgentResourceWithStreamingResponse(client.agent)
|
|
436
|
+
self.events = events.EventsResourceWithStreamingResponse(client.events)
|
|
437
|
+
|
|
428
438
|
|
|
429
439
|
class AsyncAnchorbrowserWithStreamedResponse:
|
|
430
440
|
def __init__(self, client: AsyncAnchorbrowser) -> None:
|
|
@@ -434,6 +444,8 @@ class AsyncAnchorbrowserWithStreamedResponse:
|
|
|
434
444
|
self.extensions = extensions.AsyncExtensionsResourceWithStreamingResponse(client.extensions)
|
|
435
445
|
self.browser = browser.AsyncBrowserResourceWithStreamingResponse(client.browser)
|
|
436
446
|
self.agent = agent.AsyncAgentResourceWithStreamingResponse(client.agent)
|
|
447
|
+
self.events = events.AsyncEventsResourceWithStreamingResponse(client.events)
|
|
448
|
+
|
|
437
449
|
|
|
438
450
|
Client = Anchorbrowser
|
|
439
451
|
|
anchorbrowser/_compat.py
CHANGED
|
@@ -12,14 +12,13 @@ from ._types import IncEx, StrBytesIntFloat
|
|
|
12
12
|
_T = TypeVar("_T")
|
|
13
13
|
_ModelT = TypeVar("_ModelT", bound=pydantic.BaseModel)
|
|
14
14
|
|
|
15
|
-
# --------------- Pydantic v2 compatibility ---------------
|
|
15
|
+
# --------------- Pydantic v2, v3 compatibility ---------------
|
|
16
16
|
|
|
17
17
|
# Pyright incorrectly reports some of our functions as overriding a method when they don't
|
|
18
18
|
# pyright: reportIncompatibleMethodOverride=false
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
PYDANTIC_V1 = pydantic.VERSION.startswith("1.")
|
|
21
21
|
|
|
22
|
-
# v1 re-exports
|
|
23
22
|
if TYPE_CHECKING:
|
|
24
23
|
|
|
25
24
|
def parse_date(value: date | StrBytesIntFloat) -> date: # noqa: ARG001
|
|
@@ -44,90 +43,92 @@ if TYPE_CHECKING:
|
|
|
44
43
|
...
|
|
45
44
|
|
|
46
45
|
else:
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
# v1 re-exports
|
|
47
|
+
if PYDANTIC_V1:
|
|
48
|
+
from pydantic.typing import (
|
|
49
49
|
get_args as get_args,
|
|
50
50
|
is_union as is_union,
|
|
51
51
|
get_origin as get_origin,
|
|
52
52
|
is_typeddict as is_typeddict,
|
|
53
53
|
is_literal_type as is_literal_type,
|
|
54
54
|
)
|
|
55
|
-
from pydantic.
|
|
55
|
+
from pydantic.datetime_parse import parse_date as parse_date, parse_datetime as parse_datetime
|
|
56
56
|
else:
|
|
57
|
-
from
|
|
57
|
+
from ._utils import (
|
|
58
58
|
get_args as get_args,
|
|
59
59
|
is_union as is_union,
|
|
60
60
|
get_origin as get_origin,
|
|
61
|
+
parse_date as parse_date,
|
|
61
62
|
is_typeddict as is_typeddict,
|
|
63
|
+
parse_datetime as parse_datetime,
|
|
62
64
|
is_literal_type as is_literal_type,
|
|
63
65
|
)
|
|
64
|
-
from pydantic.datetime_parse import parse_date as parse_date, parse_datetime as parse_datetime
|
|
65
66
|
|
|
66
67
|
|
|
67
68
|
# refactored config
|
|
68
69
|
if TYPE_CHECKING:
|
|
69
70
|
from pydantic import ConfigDict as ConfigDict
|
|
70
71
|
else:
|
|
71
|
-
if
|
|
72
|
-
from pydantic import ConfigDict
|
|
73
|
-
else:
|
|
72
|
+
if PYDANTIC_V1:
|
|
74
73
|
# TODO: provide an error message here?
|
|
75
74
|
ConfigDict = None
|
|
75
|
+
else:
|
|
76
|
+
from pydantic import ConfigDict as ConfigDict
|
|
76
77
|
|
|
77
78
|
|
|
78
79
|
# renamed methods / properties
|
|
79
80
|
def parse_obj(model: type[_ModelT], value: object) -> _ModelT:
|
|
80
|
-
if
|
|
81
|
-
return model.model_validate(value)
|
|
82
|
-
else:
|
|
81
|
+
if PYDANTIC_V1:
|
|
83
82
|
return cast(_ModelT, model.parse_obj(value)) # pyright: ignore[reportDeprecated, reportUnnecessaryCast]
|
|
83
|
+
else:
|
|
84
|
+
return model.model_validate(value)
|
|
84
85
|
|
|
85
86
|
|
|
86
87
|
def field_is_required(field: FieldInfo) -> bool:
|
|
87
|
-
if
|
|
88
|
-
return field.
|
|
89
|
-
return field.
|
|
88
|
+
if PYDANTIC_V1:
|
|
89
|
+
return field.required # type: ignore
|
|
90
|
+
return field.is_required()
|
|
90
91
|
|
|
91
92
|
|
|
92
93
|
def field_get_default(field: FieldInfo) -> Any:
|
|
93
94
|
value = field.get_default()
|
|
94
|
-
if
|
|
95
|
-
from pydantic_core import PydanticUndefined
|
|
96
|
-
|
|
97
|
-
if value == PydanticUndefined:
|
|
98
|
-
return None
|
|
95
|
+
if PYDANTIC_V1:
|
|
99
96
|
return value
|
|
97
|
+
from pydantic_core import PydanticUndefined
|
|
98
|
+
|
|
99
|
+
if value == PydanticUndefined:
|
|
100
|
+
return None
|
|
100
101
|
return value
|
|
101
102
|
|
|
102
103
|
|
|
103
104
|
def field_outer_type(field: FieldInfo) -> Any:
|
|
104
|
-
if
|
|
105
|
-
return field.
|
|
106
|
-
return field.
|
|
105
|
+
if PYDANTIC_V1:
|
|
106
|
+
return field.outer_type_ # type: ignore
|
|
107
|
+
return field.annotation
|
|
107
108
|
|
|
108
109
|
|
|
109
110
|
def get_model_config(model: type[pydantic.BaseModel]) -> Any:
|
|
110
|
-
if
|
|
111
|
-
return model.
|
|
112
|
-
return model.
|
|
111
|
+
if PYDANTIC_V1:
|
|
112
|
+
return model.__config__ # type: ignore
|
|
113
|
+
return model.model_config
|
|
113
114
|
|
|
114
115
|
|
|
115
116
|
def get_model_fields(model: type[pydantic.BaseModel]) -> dict[str, FieldInfo]:
|
|
116
|
-
if
|
|
117
|
-
return model.
|
|
118
|
-
return model.
|
|
117
|
+
if PYDANTIC_V1:
|
|
118
|
+
return model.__fields__ # type: ignore
|
|
119
|
+
return model.model_fields
|
|
119
120
|
|
|
120
121
|
|
|
121
122
|
def model_copy(model: _ModelT, *, deep: bool = False) -> _ModelT:
|
|
122
|
-
if
|
|
123
|
-
return model.
|
|
124
|
-
return model.
|
|
123
|
+
if PYDANTIC_V1:
|
|
124
|
+
return model.copy(deep=deep) # type: ignore
|
|
125
|
+
return model.model_copy(deep=deep)
|
|
125
126
|
|
|
126
127
|
|
|
127
128
|
def model_json(model: pydantic.BaseModel, *, indent: int | None = None) -> str:
|
|
128
|
-
if
|
|
129
|
-
return model.
|
|
130
|
-
return model.
|
|
129
|
+
if PYDANTIC_V1:
|
|
130
|
+
return model.json(indent=indent) # type: ignore
|
|
131
|
+
return model.model_dump_json(indent=indent)
|
|
131
132
|
|
|
132
133
|
|
|
133
134
|
def model_dump(
|
|
@@ -139,14 +140,14 @@ def model_dump(
|
|
|
139
140
|
warnings: bool = True,
|
|
140
141
|
mode: Literal["json", "python"] = "python",
|
|
141
142
|
) -> dict[str, Any]:
|
|
142
|
-
if
|
|
143
|
+
if (not PYDANTIC_V1) or hasattr(model, "model_dump"):
|
|
143
144
|
return model.model_dump(
|
|
144
145
|
mode=mode,
|
|
145
146
|
exclude=exclude,
|
|
146
147
|
exclude_unset=exclude_unset,
|
|
147
148
|
exclude_defaults=exclude_defaults,
|
|
148
149
|
# warnings are not supported in Pydantic v1
|
|
149
|
-
warnings=
|
|
150
|
+
warnings=True if PYDANTIC_V1 else warnings,
|
|
150
151
|
)
|
|
151
152
|
return cast(
|
|
152
153
|
"dict[str, Any]",
|
|
@@ -159,9 +160,9 @@ def model_dump(
|
|
|
159
160
|
|
|
160
161
|
|
|
161
162
|
def model_parse(model: type[_ModelT], data: Any) -> _ModelT:
|
|
162
|
-
if
|
|
163
|
-
return model.
|
|
164
|
-
return model.
|
|
163
|
+
if PYDANTIC_V1:
|
|
164
|
+
return model.parse_obj(data) # pyright: ignore[reportDeprecated]
|
|
165
|
+
return model.model_validate(data)
|
|
165
166
|
|
|
166
167
|
|
|
167
168
|
# generic models
|
|
@@ -170,17 +171,16 @@ if TYPE_CHECKING:
|
|
|
170
171
|
class GenericModel(pydantic.BaseModel): ...
|
|
171
172
|
|
|
172
173
|
else:
|
|
173
|
-
if
|
|
174
|
+
if PYDANTIC_V1:
|
|
175
|
+
import pydantic.generics
|
|
176
|
+
|
|
177
|
+
class GenericModel(pydantic.generics.GenericModel, pydantic.BaseModel): ...
|
|
178
|
+
else:
|
|
174
179
|
# there no longer needs to be a distinction in v2 but
|
|
175
180
|
# we still have to create our own subclass to avoid
|
|
176
181
|
# inconsistent MRO ordering errors
|
|
177
182
|
class GenericModel(pydantic.BaseModel): ...
|
|
178
183
|
|
|
179
|
-
else:
|
|
180
|
-
import pydantic.generics
|
|
181
|
-
|
|
182
|
-
class GenericModel(pydantic.generics.GenericModel, pydantic.BaseModel): ...
|
|
183
|
-
|
|
184
184
|
|
|
185
185
|
# cached properties
|
|
186
186
|
if TYPE_CHECKING:
|
anchorbrowser/_files.py
CHANGED
|
@@ -69,12 +69,12 @@ def _transform_file(file: FileTypes) -> HttpxFileTypes:
|
|
|
69
69
|
return file
|
|
70
70
|
|
|
71
71
|
if is_tuple_t(file):
|
|
72
|
-
return (file[0],
|
|
72
|
+
return (file[0], read_file_content(file[1]), *file[2:])
|
|
73
73
|
|
|
74
74
|
raise TypeError(f"Expected file types input to be a FileContent type or to be a tuple")
|
|
75
75
|
|
|
76
76
|
|
|
77
|
-
def
|
|
77
|
+
def read_file_content(file: FileContent) -> HttpxFileContent:
|
|
78
78
|
if isinstance(file, os.PathLike):
|
|
79
79
|
return pathlib.Path(file).read_bytes()
|
|
80
80
|
return file
|
|
@@ -111,12 +111,12 @@ async def _async_transform_file(file: FileTypes) -> HttpxFileTypes:
|
|
|
111
111
|
return file
|
|
112
112
|
|
|
113
113
|
if is_tuple_t(file):
|
|
114
|
-
return (file[0], await
|
|
114
|
+
return (file[0], await async_read_file_content(file[1]), *file[2:])
|
|
115
115
|
|
|
116
116
|
raise TypeError(f"Expected file types input to be a FileContent type or to be a tuple")
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
async def
|
|
119
|
+
async def async_read_file_content(file: FileContent) -> HttpxFileContent:
|
|
120
120
|
if isinstance(file, os.PathLike):
|
|
121
121
|
return await anyio.Path(file).read_bytes()
|
|
122
122
|
|