deeporigin-data-sdk 0.1.0a64__py3-none-any.whl → 0.1.0a66__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.
- deeporigin_data/_base_client.py +16 -2
- deeporigin_data/_version.py +1 -1
- {deeporigin_data_sdk-0.1.0a64.dist-info → deeporigin_data_sdk-0.1.0a66.dist-info}/METADATA +1 -1
- {deeporigin_data_sdk-0.1.0a64.dist-info → deeporigin_data_sdk-0.1.0a66.dist-info}/RECORD +6 -6
- {deeporigin_data_sdk-0.1.0a64.dist-info → deeporigin_data_sdk-0.1.0a66.dist-info}/WHEEL +0 -0
- {deeporigin_data_sdk-0.1.0a64.dist-info → deeporigin_data_sdk-0.1.0a66.dist-info}/licenses/LICENSE +0 -0
deeporigin_data/_base_client.py
CHANGED
@@ -1071,7 +1071,14 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
|
|
1071
1071
|
) -> ResponseT:
|
1072
1072
|
origin = get_origin(cast_to) or cast_to
|
1073
1073
|
|
1074
|
-
if
|
1074
|
+
if (
|
1075
|
+
inspect.isclass(origin)
|
1076
|
+
and issubclass(origin, BaseAPIResponse)
|
1077
|
+
# we only want to actually return the custom BaseAPIResponse class if we're
|
1078
|
+
# returning the raw response, or if we're not streaming SSE, as if we're streaming
|
1079
|
+
# SSE then `cast_to` doesn't actively reflect the type we need to parse into
|
1080
|
+
and (not stream or bool(response.request.headers.get(RAW_RESPONSE_HEADER)))
|
1081
|
+
):
|
1075
1082
|
if not issubclass(origin, APIResponse):
|
1076
1083
|
raise TypeError(f"API Response types must subclass {APIResponse}; Received {origin}")
|
1077
1084
|
|
@@ -1574,7 +1581,14 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
1574
1581
|
) -> ResponseT:
|
1575
1582
|
origin = get_origin(cast_to) or cast_to
|
1576
1583
|
|
1577
|
-
if
|
1584
|
+
if (
|
1585
|
+
inspect.isclass(origin)
|
1586
|
+
and issubclass(origin, BaseAPIResponse)
|
1587
|
+
# we only want to actually return the custom BaseAPIResponse class if we're
|
1588
|
+
# returning the raw response, or if we're not streaming SSE, as if we're streaming
|
1589
|
+
# SSE then `cast_to` doesn't actively reflect the type we need to parse into
|
1590
|
+
and (not stream or bool(response.request.headers.get(RAW_RESPONSE_HEADER)))
|
1591
|
+
):
|
1578
1592
|
if not issubclass(origin, AsyncAPIResponse):
|
1579
1593
|
raise TypeError(f"API Response types must subclass {AsyncAPIResponse}; Received {origin}")
|
1580
1594
|
|
deeporigin_data/_version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: deeporigin_data_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a66
|
4
4
|
Summary: The official Python library for the deeporigin_data API
|
5
5
|
Project-URL: Homepage, https://github.com/deeporiginbio/deeporigin-data-sdk
|
6
6
|
Project-URL: Repository, https://github.com/deeporiginbio/deeporigin-data-sdk
|
@@ -1,5 +1,5 @@
|
|
1
1
|
deeporigin_data/__init__.py,sha256=_1jHk-ZDjq8xlaketuGzIObYaQy2_sQC44AmxyzI_sM,2644
|
2
|
-
deeporigin_data/_base_client.py,sha256=
|
2
|
+
deeporigin_data/_base_client.py,sha256=tQ1V6dw8jphj0fgcVbPKQWApTT697LuoBrGkAg3k9ME,65893
|
3
3
|
deeporigin_data/_client.py,sha256=ulANUIkBX3gHIvrpeU1IRCakrx5gIcgD56I0FmwiaXo,171969
|
4
4
|
deeporigin_data/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
5
|
deeporigin_data/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
@@ -11,7 +11,7 @@ deeporigin_data/_resource.py,sha256=tkm4gF9YRotE93j48jTDBSGs8wyVa0E5NS9fj19e38c,
|
|
11
11
|
deeporigin_data/_response.py,sha256=i98w-_OFUAnDfRaLynqu2Qrgh39xKGq9WQ1DK2CueMs,28870
|
12
12
|
deeporigin_data/_streaming.py,sha256=yG857cOSJD3gbc7mEc2wqfvcPVLMGmYX4hBOqqIT5RE,10132
|
13
13
|
deeporigin_data/_types.py,sha256=z_gHfGnZNr7ReZxda_iICWQnmy5anm8-i8lRB3jpRL0,6206
|
14
|
-
deeporigin_data/_version.py,sha256=
|
14
|
+
deeporigin_data/_version.py,sha256=cuG5S6LvsBi-7XPJzC0x1pCEiwjhDH6NI5uy65WOOKc,176
|
15
15
|
deeporigin_data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
deeporigin_data/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
17
|
deeporigin_data/_utils/_logs.py,sha256=R7dnUaDs2cdYbq1Ee16dHy863wdcTZRRzubw9KE0qNc,801
|
@@ -121,7 +121,7 @@ deeporigin_data/types/shared_params/add_column_base.py,sha256=s8cbOjluJmf4Pzmg_v
|
|
121
121
|
deeporigin_data/types/shared_params/add_column_union.py,sha256=uEJwB-xtbKY19Hq7a2vIrGdDfPcHIBwp9_R63Qf9KO0,1036
|
122
122
|
deeporigin_data/types/shared_params/condition.py,sha256=38ItZ9QZrA3rnXNgds7KZcXCZ-h1zVttiD1R6uf5IGQ,3153
|
123
123
|
deeporigin_data/types/shared_params/row_filter_join.py,sha256=QIo2yhjJJZLcGF-hBF7YcLcYHLhf5uq5EkQG-0WJjtU,595
|
124
|
-
deeporigin_data_sdk-0.1.
|
125
|
-
deeporigin_data_sdk-0.1.
|
126
|
-
deeporigin_data_sdk-0.1.
|
127
|
-
deeporigin_data_sdk-0.1.
|
124
|
+
deeporigin_data_sdk-0.1.0a66.dist-info/METADATA,sha256=n17vcW3u0YsSb_pcGpXpY3-gpN9y_pTu9OEA3WvE20c,13708
|
125
|
+
deeporigin_data_sdk-0.1.0a66.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
126
|
+
deeporigin_data_sdk-0.1.0a66.dist-info/licenses/LICENSE,sha256=jT1To9IZ3XdRqtpv8wDrIwpatTUvf5yP0sFYhEtJVZY,11345
|
127
|
+
deeporigin_data_sdk-0.1.0a66.dist-info/RECORD,,
|
File without changes
|
{deeporigin_data_sdk-0.1.0a64.dist-info → deeporigin_data_sdk-0.1.0a66.dist-info}/licenses/LICENSE
RENAMED
File without changes
|