deeporigin-data-sdk 0.1.0a62__py3-none-any.whl → 0.1.0a63__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/_client.py +37 -16
- deeporigin_data/_version.py +1 -1
- {deeporigin_data_sdk-0.1.0a62.dist-info → deeporigin_data_sdk-0.1.0a63.dist-info}/METADATA +1 -1
- {deeporigin_data_sdk-0.1.0a62.dist-info → deeporigin_data_sdk-0.1.0a63.dist-info}/RECORD +6 -6
- {deeporigin_data_sdk-0.1.0a62.dist-info → deeporigin_data_sdk-0.1.0a63.dist-info}/WHEEL +0 -0
- {deeporigin_data_sdk-0.1.0a62.dist-info → deeporigin_data_sdk-0.1.0a63.dist-info}/licenses/LICENSE +0 -0
deeporigin_data/_client.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
5
|
import os
|
6
|
+
import typing_extensions
|
6
7
|
from typing import Any, List, Union, Mapping, Iterable
|
7
8
|
from typing_extensions import Self, Literal, override
|
8
9
|
|
@@ -516,6 +517,7 @@ class DeeporiginData(SyncAPIClient):
|
|
516
517
|
cast_to=ConfigureColumnSelectOptionsResponse,
|
517
518
|
)
|
518
519
|
|
520
|
+
@typing_extensions.deprecated("deprecated")
|
519
521
|
def convert_id_format(
|
520
522
|
self,
|
521
523
|
*,
|
@@ -1074,6 +1076,7 @@ class DeeporiginData(SyncAPIClient):
|
|
1074
1076
|
cast_to=DescribeHierarchyResponse,
|
1075
1077
|
)
|
1076
1078
|
|
1079
|
+
@typing_extensions.deprecated("deprecated")
|
1077
1080
|
def describe_row(
|
1078
1081
|
self,
|
1079
1082
|
*,
|
@@ -2338,6 +2341,7 @@ class AsyncDeeporiginData(AsyncAPIClient):
|
|
2338
2341
|
cast_to=ConfigureColumnSelectOptionsResponse,
|
2339
2342
|
)
|
2340
2343
|
|
2344
|
+
@typing_extensions.deprecated("deprecated")
|
2341
2345
|
async def convert_id_format(
|
2342
2346
|
self,
|
2343
2347
|
*,
|
@@ -2904,6 +2908,7 @@ class AsyncDeeporiginData(AsyncAPIClient):
|
|
2904
2908
|
cast_to=DescribeHierarchyResponse,
|
2905
2909
|
)
|
2906
2910
|
|
2911
|
+
@typing_extensions.deprecated("deprecated")
|
2907
2912
|
async def describe_row(
|
2908
2913
|
self,
|
2909
2914
|
*,
|
@@ -3822,8 +3827,10 @@ class DeeporiginDataWithRawResponse:
|
|
3822
3827
|
self.configure_column_select_options = to_raw_response_wrapper(
|
3823
3828
|
client.configure_column_select_options,
|
3824
3829
|
)
|
3825
|
-
self.convert_id_format =
|
3826
|
-
|
3830
|
+
self.convert_id_format = ( # pyright: ignore[reportDeprecated]
|
3831
|
+
to_raw_response_wrapper(
|
3832
|
+
client.convert_id_format # pyright: ignore[reportDeprecated],
|
3833
|
+
)
|
3827
3834
|
)
|
3828
3835
|
self.create_database = to_raw_response_wrapper(
|
3829
3836
|
client.create_database,
|
@@ -3867,8 +3874,10 @@ class DeeporiginDataWithRawResponse:
|
|
3867
3874
|
self.describe_hierarchy = to_raw_response_wrapper(
|
3868
3875
|
client.describe_hierarchy,
|
3869
3876
|
)
|
3870
|
-
self.describe_row =
|
3871
|
-
|
3877
|
+
self.describe_row = ( # pyright: ignore[reportDeprecated]
|
3878
|
+
to_raw_response_wrapper(
|
3879
|
+
client.describe_row # pyright: ignore[reportDeprecated],
|
3880
|
+
)
|
3872
3881
|
)
|
3873
3882
|
self.describe_workspace = to_raw_response_wrapper(
|
3874
3883
|
client.describe_workspace,
|
@@ -3956,8 +3965,10 @@ class AsyncDeeporiginDataWithRawResponse:
|
|
3956
3965
|
self.configure_column_select_options = async_to_raw_response_wrapper(
|
3957
3966
|
client.configure_column_select_options,
|
3958
3967
|
)
|
3959
|
-
self.convert_id_format =
|
3960
|
-
|
3968
|
+
self.convert_id_format = ( # pyright: ignore[reportDeprecated]
|
3969
|
+
async_to_raw_response_wrapper(
|
3970
|
+
client.convert_id_format # pyright: ignore[reportDeprecated],
|
3971
|
+
)
|
3961
3972
|
)
|
3962
3973
|
self.create_database = async_to_raw_response_wrapper(
|
3963
3974
|
client.create_database,
|
@@ -4001,8 +4012,10 @@ class AsyncDeeporiginDataWithRawResponse:
|
|
4001
4012
|
self.describe_hierarchy = async_to_raw_response_wrapper(
|
4002
4013
|
client.describe_hierarchy,
|
4003
4014
|
)
|
4004
|
-
self.describe_row =
|
4005
|
-
|
4015
|
+
self.describe_row = ( # pyright: ignore[reportDeprecated]
|
4016
|
+
async_to_raw_response_wrapper(
|
4017
|
+
client.describe_row # pyright: ignore[reportDeprecated],
|
4018
|
+
)
|
4006
4019
|
)
|
4007
4020
|
self.describe_workspace = async_to_raw_response_wrapper(
|
4008
4021
|
client.describe_workspace,
|
@@ -4090,8 +4103,10 @@ class DeeporiginDataWithStreamedResponse:
|
|
4090
4103
|
self.configure_column_select_options = to_streamed_response_wrapper(
|
4091
4104
|
client.configure_column_select_options,
|
4092
4105
|
)
|
4093
|
-
self.convert_id_format =
|
4094
|
-
|
4106
|
+
self.convert_id_format = ( # pyright: ignore[reportDeprecated]
|
4107
|
+
to_streamed_response_wrapper(
|
4108
|
+
client.convert_id_format # pyright: ignore[reportDeprecated],
|
4109
|
+
)
|
4095
4110
|
)
|
4096
4111
|
self.create_database = to_streamed_response_wrapper(
|
4097
4112
|
client.create_database,
|
@@ -4135,8 +4150,10 @@ class DeeporiginDataWithStreamedResponse:
|
|
4135
4150
|
self.describe_hierarchy = to_streamed_response_wrapper(
|
4136
4151
|
client.describe_hierarchy,
|
4137
4152
|
)
|
4138
|
-
self.describe_row =
|
4139
|
-
|
4153
|
+
self.describe_row = ( # pyright: ignore[reportDeprecated]
|
4154
|
+
to_streamed_response_wrapper(
|
4155
|
+
client.describe_row # pyright: ignore[reportDeprecated],
|
4156
|
+
)
|
4140
4157
|
)
|
4141
4158
|
self.describe_workspace = to_streamed_response_wrapper(
|
4142
4159
|
client.describe_workspace,
|
@@ -4224,8 +4241,10 @@ class AsyncDeeporiginDataWithStreamedResponse:
|
|
4224
4241
|
self.configure_column_select_options = async_to_streamed_response_wrapper(
|
4225
4242
|
client.configure_column_select_options,
|
4226
4243
|
)
|
4227
|
-
self.convert_id_format =
|
4228
|
-
|
4244
|
+
self.convert_id_format = ( # pyright: ignore[reportDeprecated]
|
4245
|
+
async_to_streamed_response_wrapper(
|
4246
|
+
client.convert_id_format # pyright: ignore[reportDeprecated],
|
4247
|
+
)
|
4229
4248
|
)
|
4230
4249
|
self.create_database = async_to_streamed_response_wrapper(
|
4231
4250
|
client.create_database,
|
@@ -4269,8 +4288,10 @@ class AsyncDeeporiginDataWithStreamedResponse:
|
|
4269
4288
|
self.describe_hierarchy = async_to_streamed_response_wrapper(
|
4270
4289
|
client.describe_hierarchy,
|
4271
4290
|
)
|
4272
|
-
self.describe_row =
|
4273
|
-
|
4291
|
+
self.describe_row = ( # pyright: ignore[reportDeprecated]
|
4292
|
+
async_to_streamed_response_wrapper(
|
4293
|
+
client.describe_row # pyright: ignore[reportDeprecated],
|
4294
|
+
)
|
4274
4295
|
)
|
4275
4296
|
self.describe_workspace = async_to_streamed_response_wrapper(
|
4276
4297
|
client.describe_workspace,
|
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.0a63
|
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,6 +1,6 @@
|
|
1
1
|
deeporigin_data/__init__.py,sha256=_1jHk-ZDjq8xlaketuGzIObYaQy2_sQC44AmxyzI_sM,2644
|
2
2
|
deeporigin_data/_base_client.py,sha256=NiHxYas3raJrBeEWpgFsEUwAQH3WPEwLe9SlMQTjIOs,64853
|
3
|
-
deeporigin_data/_client.py,sha256=
|
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
|
6
6
|
deeporigin_data/_exceptions.py,sha256=_25MmrwuBf1sxAJESpY5sPn1o5E-aUymr6wDuRSWIng,3236
|
@@ -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=HI5vtFJGLEsyOrrWJRSRtUeOSrd8EdoM020wC51GvcI,6152
|
14
|
-
deeporigin_data/_version.py,sha256=
|
14
|
+
deeporigin_data/_version.py,sha256=18nLkObvHZphvCXL4i6AI1d1NGzqwHE6dMQboVOx5g4,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.0a63.dist-info/METADATA,sha256=TQxqTTujkOmJNUXoRWAx3c1ATd7hIh81Evwq5SEnWzs,13775
|
125
|
+
deeporigin_data_sdk-0.1.0a63.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
126
|
+
deeporigin_data_sdk-0.1.0a63.dist-info/licenses/LICENSE,sha256=jT1To9IZ3XdRqtpv8wDrIwpatTUvf5yP0sFYhEtJVZY,11345
|
127
|
+
deeporigin_data_sdk-0.1.0a63.dist-info/RECORD,,
|
File without changes
|
{deeporigin_data_sdk-0.1.0a62.dist-info → deeporigin_data_sdk-0.1.0a63.dist-info}/licenses/LICENSE
RENAMED
File without changes
|