deeporigin-data-sdk 0.1.0a33__py3-none-any.whl → 0.1.0a35__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/_version.py +1 -1
- deeporigin_data/types/client_add_database_column_params.py +28 -0
- deeporigin_data/types/client_import_rows_params.py +28 -0
- {deeporigin_data_sdk-0.1.0a33.dist-info → deeporigin_data_sdk-0.1.0a35.dist-info}/METADATA +5 -4
- {deeporigin_data_sdk-0.1.0a33.dist-info → deeporigin_data_sdk-0.1.0a35.dist-info}/RECORD +7 -7
- {deeporigin_data_sdk-0.1.0a33.dist-info → deeporigin_data_sdk-0.1.0a35.dist-info}/WHEEL +0 -0
- {deeporigin_data_sdk-0.1.0a33.dist-info → deeporigin_data_sdk-0.1.0a35.dist-info}/licenses/LICENSE +0 -0
deeporigin_data/_version.py
CHANGED
@@ -19,8 +19,10 @@ __all__ = [
|
|
19
19
|
"ColumnAddColumnFileConfigFile",
|
20
20
|
"ColumnAddColumnFloat",
|
21
21
|
"ColumnAddColumnFloatConfigNumeric",
|
22
|
+
"ColumnAddColumnFloatConfigNumericNumberFormat",
|
22
23
|
"ColumnAddColumnInteger",
|
23
24
|
"ColumnAddColumnIntegerConfigNumeric",
|
25
|
+
"ColumnAddColumnIntegerConfigNumericNumberFormat",
|
24
26
|
"ColumnAddColumnReference",
|
25
27
|
"ColumnAddColumnSelect",
|
26
28
|
"ColumnAddColumnSelectConfigSelect",
|
@@ -132,7 +134,20 @@ class ColumnAddColumnFile(TypedDict, total=False):
|
|
132
134
|
system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
|
133
135
|
|
134
136
|
|
137
|
+
class ColumnAddColumnFloatConfigNumericNumberFormat(TypedDict, total=False):
|
138
|
+
maximum_fraction_digits: Annotated[float, PropertyInfo(alias="maximumFractionDigits")]
|
139
|
+
|
140
|
+
maximum_significant_digits: Annotated[float, PropertyInfo(alias="maximumSignificantDigits")]
|
141
|
+
|
142
|
+
minimum_fraction_digits: Annotated[float, PropertyInfo(alias="minimumFractionDigits")]
|
143
|
+
|
144
|
+
minimum_significant_digits: Annotated[float, PropertyInfo(alias="minimumSignificantDigits")]
|
145
|
+
|
146
|
+
|
135
147
|
class ColumnAddColumnFloatConfigNumeric(TypedDict, total=False):
|
148
|
+
number_format: Annotated[ColumnAddColumnFloatConfigNumericNumberFormat, PropertyInfo(alias="numberFormat")]
|
149
|
+
"""Options for formatting numbers, used only for display purposes."""
|
150
|
+
|
136
151
|
unit: str
|
137
152
|
|
138
153
|
|
@@ -159,7 +174,20 @@ class ColumnAddColumnFloat(TypedDict, total=False):
|
|
159
174
|
system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
|
160
175
|
|
161
176
|
|
177
|
+
class ColumnAddColumnIntegerConfigNumericNumberFormat(TypedDict, total=False):
|
178
|
+
maximum_fraction_digits: Annotated[float, PropertyInfo(alias="maximumFractionDigits")]
|
179
|
+
|
180
|
+
maximum_significant_digits: Annotated[float, PropertyInfo(alias="maximumSignificantDigits")]
|
181
|
+
|
182
|
+
minimum_fraction_digits: Annotated[float, PropertyInfo(alias="minimumFractionDigits")]
|
183
|
+
|
184
|
+
minimum_significant_digits: Annotated[float, PropertyInfo(alias="minimumSignificantDigits")]
|
185
|
+
|
186
|
+
|
162
187
|
class ColumnAddColumnIntegerConfigNumeric(TypedDict, total=False):
|
188
|
+
number_format: Annotated[ColumnAddColumnIntegerConfigNumericNumberFormat, PropertyInfo(alias="numberFormat")]
|
189
|
+
"""Options for formatting numbers, used only for display purposes."""
|
190
|
+
|
163
191
|
unit: str
|
164
192
|
|
165
193
|
|
@@ -19,8 +19,10 @@ __all__ = [
|
|
19
19
|
"AddColumnAddColumnFileConfigFile",
|
20
20
|
"AddColumnAddColumnFloat",
|
21
21
|
"AddColumnAddColumnFloatConfigNumeric",
|
22
|
+
"AddColumnAddColumnFloatConfigNumericNumberFormat",
|
22
23
|
"AddColumnAddColumnInteger",
|
23
24
|
"AddColumnAddColumnIntegerConfigNumeric",
|
25
|
+
"AddColumnAddColumnIntegerConfigNumericNumberFormat",
|
24
26
|
"AddColumnAddColumnReference",
|
25
27
|
"AddColumnAddColumnSelect",
|
26
28
|
"AddColumnAddColumnSelectConfigSelect",
|
@@ -137,7 +139,20 @@ class AddColumnAddColumnFile(TypedDict, total=False):
|
|
137
139
|
system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
|
138
140
|
|
139
141
|
|
142
|
+
class AddColumnAddColumnFloatConfigNumericNumberFormat(TypedDict, total=False):
|
143
|
+
maximum_fraction_digits: Annotated[float, PropertyInfo(alias="maximumFractionDigits")]
|
144
|
+
|
145
|
+
maximum_significant_digits: Annotated[float, PropertyInfo(alias="maximumSignificantDigits")]
|
146
|
+
|
147
|
+
minimum_fraction_digits: Annotated[float, PropertyInfo(alias="minimumFractionDigits")]
|
148
|
+
|
149
|
+
minimum_significant_digits: Annotated[float, PropertyInfo(alias="minimumSignificantDigits")]
|
150
|
+
|
151
|
+
|
140
152
|
class AddColumnAddColumnFloatConfigNumeric(TypedDict, total=False):
|
153
|
+
number_format: Annotated[AddColumnAddColumnFloatConfigNumericNumberFormat, PropertyInfo(alias="numberFormat")]
|
154
|
+
"""Options for formatting numbers, used only for display purposes."""
|
155
|
+
|
141
156
|
unit: str
|
142
157
|
|
143
158
|
|
@@ -164,7 +179,20 @@ class AddColumnAddColumnFloat(TypedDict, total=False):
|
|
164
179
|
system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
|
165
180
|
|
166
181
|
|
182
|
+
class AddColumnAddColumnIntegerConfigNumericNumberFormat(TypedDict, total=False):
|
183
|
+
maximum_fraction_digits: Annotated[float, PropertyInfo(alias="maximumFractionDigits")]
|
184
|
+
|
185
|
+
maximum_significant_digits: Annotated[float, PropertyInfo(alias="maximumSignificantDigits")]
|
186
|
+
|
187
|
+
minimum_fraction_digits: Annotated[float, PropertyInfo(alias="minimumFractionDigits")]
|
188
|
+
|
189
|
+
minimum_significant_digits: Annotated[float, PropertyInfo(alias="minimumSignificantDigits")]
|
190
|
+
|
191
|
+
|
167
192
|
class AddColumnAddColumnIntegerConfigNumeric(TypedDict, total=False):
|
193
|
+
number_format: Annotated[AddColumnAddColumnIntegerConfigNumericNumberFormat, PropertyInfo(alias="numberFormat")]
|
194
|
+
"""Options for formatting numbers, used only for display purposes."""
|
195
|
+
|
168
196
|
unit: str
|
169
197
|
|
170
198
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: deeporigin_data_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a35
|
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
|
@@ -316,18 +316,19 @@ can also get all the extra fields on the Pydantic model as a dict with
|
|
316
316
|
|
317
317
|
You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
|
318
318
|
|
319
|
-
- Support for proxies
|
320
|
-
- Custom transports
|
319
|
+
- Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
|
320
|
+
- Custom [transports](https://www.python-httpx.org/advanced/transports/)
|
321
321
|
- Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
|
322
322
|
|
323
323
|
```python
|
324
|
+
import httpx
|
324
325
|
from deeporigin_data import DeeporiginData, DefaultHttpxClient
|
325
326
|
|
326
327
|
client = DeeporiginData(
|
327
328
|
# Or use the `DEEPORIGIN_DATA_BASE_URL` env var
|
328
329
|
base_url="http://my.test.server.example.com:8083",
|
329
330
|
http_client=DefaultHttpxClient(
|
330
|
-
|
331
|
+
proxy="http://my.test.proxy.example.com",
|
331
332
|
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
|
332
333
|
),
|
333
334
|
org_id="My Org ID",
|
@@ -11,7 +11,7 @@ deeporigin_data/_resource.py,sha256=tkm4gF9YRotE93j48jTDBSGs8wyVa0E5NS9fj19e38c,
|
|
11
11
|
deeporigin_data/_response.py,sha256=nzKdjRA8W3Rwgvgv6zCu4LISsdLUPCQjedlOp_NWyUY,28691
|
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=XsXSGRmMXd-kgBUt2rx6NaefthU4Xbo8r44ftW8R-cw,176
|
15
15
|
deeporigin_data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
deeporigin_data/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
|
17
17
|
deeporigin_data/_utils/_logs.py,sha256=R7dnUaDs2cdYbq1Ee16dHy863wdcTZRRzubw9KE0qNc,801
|
@@ -28,7 +28,7 @@ deeporigin_data/types/__init__.py,sha256=rWEVTTs8jU5G-8Ua5Aix0ID5AkXImeqfd4TteL4
|
|
28
28
|
deeporigin_data/types/add_database_column_response.py,sha256=3sM1H23FE_sCUQ2f9NiQA9j8rbbBP-I1rIdGtyHgU48,383
|
29
29
|
deeporigin_data/types/chat_create_thread_response.py,sha256=AZrFyvH7uj-VptxC4DLqq2zTzBTYRiosfNUGDSDe4jE,678
|
30
30
|
deeporigin_data/types/chat_list_messages_response.py,sha256=weE0jVbPTGI-_A72HW2J4hHoG7V8t3ZVTRvpwsmyLJI,1774
|
31
|
-
deeporigin_data/types/client_add_database_column_params.py,sha256=
|
31
|
+
deeporigin_data/types/client_add_database_column_params.py,sha256=nmS6w0uctACesgcIFBnnjG99c3t8RPT3CcaKXB3JIEk,11712
|
32
32
|
deeporigin_data/types/client_archive_files_params.py,sha256=yQVFRbehaBYuSiILvVZIM0W0KQg2NMdxeboYZt8qorI,417
|
33
33
|
deeporigin_data/types/client_chat_create_thread_params.py,sha256=wIbMeDq0ge6_mei-tLrcO-Y2AzhiBCu7U4UHWRBMDDw,306
|
34
34
|
deeporigin_data/types/client_chat_list_messages_params.py,sha256=cvVdz0bROwXecIiAYrQA57O98AfKRl0Q8C--yWaQO9c,397
|
@@ -57,7 +57,7 @@ deeporigin_data/types/client_execute_code_async_params.py,sha256=Ohe8X-MGsuf_JzF
|
|
57
57
|
deeporigin_data/types/client_execute_code_sync_params.py,sha256=4OUGuc1P5ATJz6ocQuL14te1pU9EZD5ocY9yHY4jUcE,451
|
58
58
|
deeporigin_data/types/client_export_database_params.py,sha256=KW29eTgxBu6mFTprhr5VDuVWQmdJWyLcU1iKjYGzI-4,3609
|
59
59
|
deeporigin_data/types/client_get_code_execution_result_params.py,sha256=rtctDcOx0jKB2BiHbrxJZk1KkB9LhlgbGDoO_J3aHhI,346
|
60
|
-
deeporigin_data/types/client_import_rows_params.py,sha256=
|
60
|
+
deeporigin_data/types/client_import_rows_params.py,sha256=hwL3y63n6ce2DcOpOLfpTf3sFy2-0TykdxU37Gac4f4,12153
|
61
61
|
deeporigin_data/types/client_list_database_column_unique_values_v2_params.py,sha256=_ENSP8YCgkdEYy4UjN_g230CuqXmYN7o1b7v3o0FEOY,506
|
62
62
|
deeporigin_data/types/client_list_database_rows_params.py,sha256=aVDUuF1Ny-ZeAR_EF91d_l4vMTHEALXoNfEPO77zRCQ,3615
|
63
63
|
deeporigin_data/types/client_list_files_params.py,sha256=DTtBgRGrbTLs7Ekp3sk2sDxpercjKG7lGcUytKYC14Q,692
|
@@ -120,7 +120,7 @@ deeporigin_data/types/shared_params/add_column_base.py,sha256=KfTFZFnCy08oqgSPAl
|
|
120
120
|
deeporigin_data/types/shared_params/add_column_union.py,sha256=q4Ia_xvxdAF7RnKicd5QDs-WMKePG_PY-xnQ0SaJRmc,971
|
121
121
|
deeporigin_data/types/shared_params/condition.py,sha256=ftu-hdGv05aTv4GL9bRyf4kQXl27kaPpt3P4KKdwmNM,2723
|
122
122
|
deeporigin_data/types/shared_params/row_filter_join.py,sha256=QIo2yhjJJZLcGF-hBF7YcLcYHLhf5uq5EkQG-0WJjtU,595
|
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.0a35.dist-info/METADATA,sha256=He3nYa6wLGxknfnyjAYMFkntZsNeqpZC3LLAddY2QO4,13216
|
124
|
+
deeporigin_data_sdk-0.1.0a35.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
125
|
+
deeporigin_data_sdk-0.1.0a35.dist-info/licenses/LICENSE,sha256=qQA5hv0RJh5jpG5jw4cmr1gPxsNivnMjHFpEOTGWZyI,11345
|
126
|
+
deeporigin_data_sdk-0.1.0a35.dist-info/RECORD,,
|
File without changes
|
{deeporigin_data_sdk-0.1.0a33.dist-info → deeporigin_data_sdk-0.1.0a35.dist-info}/licenses/LICENSE
RENAMED
File without changes
|