deeporigin-data-sdk 0.1.0a40__py3-none-any.whl → 0.1.0a41__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 +8 -0
- deeporigin_data/_version.py +1 -1
- deeporigin_data/types/client_export_database_params.py +4 -0
- {deeporigin_data_sdk-0.1.0a40.dist-info → deeporigin_data_sdk-0.1.0a41.dist-info}/METADATA +1 -1
- {deeporigin_data_sdk-0.1.0a40.dist-info → deeporigin_data_sdk-0.1.0a41.dist-info}/RECORD +7 -7
- {deeporigin_data_sdk-0.1.0a40.dist-info → deeporigin_data_sdk-0.1.0a41.dist-info}/WHEEL +0 -0
- {deeporigin_data_sdk-0.1.0a40.dist-info → deeporigin_data_sdk-0.1.0a41.dist-info}/licenses/LICENSE +0 -0
deeporigin_data/_client.py
CHANGED
@@ -1319,6 +1319,8 @@ class DeeporiginData(SyncAPIClient):
|
|
1319
1319
|
format: Literal["csv"],
|
1320
1320
|
column_selection: client_export_database_params.ColumnSelection | NotGiven = NOT_GIVEN,
|
1321
1321
|
filter: client_export_database_params.Filter | NotGiven = NOT_GIVEN,
|
1322
|
+
limit: int | NotGiven = NOT_GIVEN,
|
1323
|
+
offset: int | NotGiven = NOT_GIVEN,
|
1322
1324
|
row_sort: Iterable[client_export_database_params.RowSort] | NotGiven = NOT_GIVEN,
|
1323
1325
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1324
1326
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -1352,6 +1354,8 @@ class DeeporiginData(SyncAPIClient):
|
|
1352
1354
|
"format": format,
|
1353
1355
|
"column_selection": column_selection,
|
1354
1356
|
"filter": filter,
|
1357
|
+
"limit": limit,
|
1358
|
+
"offset": offset,
|
1355
1359
|
"row_sort": row_sort,
|
1356
1360
|
},
|
1357
1361
|
client_export_database_params.ClientExportDatabaseParams,
|
@@ -3145,6 +3149,8 @@ class AsyncDeeporiginData(AsyncAPIClient):
|
|
3145
3149
|
format: Literal["csv"],
|
3146
3150
|
column_selection: client_export_database_params.ColumnSelection | NotGiven = NOT_GIVEN,
|
3147
3151
|
filter: client_export_database_params.Filter | NotGiven = NOT_GIVEN,
|
3152
|
+
limit: int | NotGiven = NOT_GIVEN,
|
3153
|
+
offset: int | NotGiven = NOT_GIVEN,
|
3148
3154
|
row_sort: Iterable[client_export_database_params.RowSort] | NotGiven = NOT_GIVEN,
|
3149
3155
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
3150
3156
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -3178,6 +3184,8 @@ class AsyncDeeporiginData(AsyncAPIClient):
|
|
3178
3184
|
"format": format,
|
3179
3185
|
"column_selection": column_selection,
|
3180
3186
|
"filter": filter,
|
3187
|
+
"limit": limit,
|
3188
|
+
"offset": offset,
|
3181
3189
|
"row_sort": row_sort,
|
3182
3190
|
},
|
3183
3191
|
client_export_database_params.ClientExportDatabaseParams,
|
deeporigin_data/_version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: deeporigin_data_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a41
|
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=g5vq9kCCiWBl8XgJzXdUB9AIdRypOEj9pQH8WJJEVxo,2533
|
2
2
|
deeporigin_data/_base_client.py,sha256=S5oZPMoWvnH4vdTsMwR8KYI6qg4OF6lydyeTmXwndwA,68045
|
3
|
-
deeporigin_data/_client.py,sha256=
|
3
|
+
deeporigin_data/_client.py,sha256=vau88VDbR05t1cCbXqXvbTwGMFrJlDRVT5vlwAwndn4,170693
|
4
4
|
deeporigin_data/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
5
|
deeporigin_data/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
|
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=Kj-Zi9_3rAr8jDDHy2yTG8SCMF2a7dilTyE-yQO7pag,28747
|
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=ZXkLc5wmxiXZM4ODvCQVbjJec__rSSF_uzWFH0BCGsQ,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
|
@@ -55,7 +55,7 @@ deeporigin_data/types/client_download_file_params.py,sha256=6B-OV4kISwB3oG-UdZPv
|
|
55
55
|
deeporigin_data/types/client_ensure_rows_params.py,sha256=rS2b2isZ9Kzp_U_z7jECc2Z2mh6HsFyIvsx4rCrvm3M,1407
|
56
56
|
deeporigin_data/types/client_execute_code_async_params.py,sha256=Ohe8X-MGsuf_JzFiyd7_-UdbJn81CKW9UujKKEcOYJw,453
|
57
57
|
deeporigin_data/types/client_execute_code_sync_params.py,sha256=4OUGuc1P5ATJz6ocQuL14te1pU9EZD5ocY9yHY4jUcE,451
|
58
|
-
deeporigin_data/types/client_export_database_params.py,sha256=
|
58
|
+
deeporigin_data/types/client_export_database_params.py,sha256=g2TvBccXENlxbLAIaL2LX-c_cmwQqBGc5h5hIq3sSzg,3638
|
59
59
|
deeporigin_data/types/client_get_code_execution_result_params.py,sha256=rtctDcOx0jKB2BiHbrxJZk1KkB9LhlgbGDoO_J3aHhI,346
|
60
60
|
deeporigin_data/types/client_import_rows_params.py,sha256=G7QmOXZRH42cfd_XSHakk2uEcQ1iJlpDV9GlIFb1FfY,12868
|
61
61
|
deeporigin_data/types/client_list_database_column_unique_values_v2_params.py,sha256=_ENSP8YCgkdEYy4UjN_g230CuqXmYN7o1b7v3o0FEOY,506
|
@@ -120,7 +120,7 @@ deeporigin_data/types/shared_params/add_column_base.py,sha256=s8cbOjluJmf4Pzmg_v
|
|
120
120
|
deeporigin_data/types/shared_params/add_column_union.py,sha256=uEJwB-xtbKY19Hq7a2vIrGdDfPcHIBwp9_R63Qf9KO0,1036
|
121
121
|
deeporigin_data/types/shared_params/condition.py,sha256=5hbTmfZ-94Hk7Pugl_SirBtuexQNVS2moyvh1jqeptw,2720
|
122
122
|
deeporigin_data/types/shared_params/row_filter_join.py,sha256=IU9uWStuIBpzkAaMR19CVAYfnmaDY-Xj3v3k_RPElq8,591
|
123
|
-
deeporigin_data_sdk-0.1.
|
124
|
-
deeporigin_data_sdk-0.1.
|
125
|
-
deeporigin_data_sdk-0.1.
|
126
|
-
deeporigin_data_sdk-0.1.
|
123
|
+
deeporigin_data_sdk-0.1.0a41.dist-info/METADATA,sha256=pDZME2O0K7ww_sIyXXFSvDdzMkb_Y-s9icmUrjaawNo,13421
|
124
|
+
deeporigin_data_sdk-0.1.0a41.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
125
|
+
deeporigin_data_sdk-0.1.0a41.dist-info/licenses/LICENSE,sha256=jT1To9IZ3XdRqtpv8wDrIwpatTUvf5yP0sFYhEtJVZY,11345
|
126
|
+
deeporigin_data_sdk-0.1.0a41.dist-info/RECORD,,
|
File without changes
|
{deeporigin_data_sdk-0.1.0a40.dist-info → deeporigin_data_sdk-0.1.0a41.dist-info}/licenses/LICENSE
RENAMED
File without changes
|