UncountablePythonSDK 0.0.127__py3-none-any.whl → 0.0.129__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.
Potentially problematic release.
This version of UncountablePythonSDK might be problematic. Click here for more details.
- examples/integration-server/jobs/materials_auto/example_instrument.py +4 -3
- examples/integration-server/jobs/materials_auto/example_parse.py +130 -0
- examples/integration-server/jobs/materials_auto/example_predictions.py +2 -2
- examples/integration-server/jobs/materials_auto/example_runsheet_wh.py +3 -2
- examples/integration-server/jobs/materials_auto/profile.yaml +9 -0
- examples/integration-server/pyproject.toml +1 -1
- pkgs/serialization_util/serialization_helpers.py +3 -1
- pkgs/type_spec/builder.py +9 -3
- pkgs/type_spec/builder_types.py +9 -0
- pkgs/type_spec/cross_output_links.py +2 -10
- pkgs/type_spec/emit_open_api.py +0 -12
- pkgs/type_spec/emit_python.py +72 -11
- pkgs/type_spec/emit_typescript_util.py +28 -6
- pkgs/type_spec/load_types.py +1 -1
- pkgs/type_spec/type_info/emit_type_info.py +13 -2
- uncountable/core/client.py +10 -3
- uncountable/integration/job.py +2 -3
- uncountable/integration/queue_runner/command_server/command_server.py +8 -7
- uncountable/integration/telemetry.py +41 -7
- uncountable/integration/webhook_server/entrypoint.py +2 -0
- uncountable/types/__init__.py +2 -0
- uncountable/types/api/entity/list_aggregate.py +79 -0
- uncountable/types/api/entity/list_entities.py +25 -0
- uncountable/types/api/recipes/get_recipes_data.py +13 -0
- uncountable/types/async_batch_processor.py +20 -0
- uncountable/types/client_base.py +195 -1
- uncountable/types/client_config.py +1 -0
- uncountable/types/client_config_t.py +10 -0
- uncountable/types/entity_t.py +2 -0
- {uncountablepythonsdk-0.0.127.dist-info → uncountablepythonsdk-0.0.129.dist-info}/METADATA +1 -1
- {uncountablepythonsdk-0.0.127.dist-info → uncountablepythonsdk-0.0.129.dist-info}/RECORD +33 -30
- {uncountablepythonsdk-0.0.127.dist-info → uncountablepythonsdk-0.0.129.dist-info}/WHEEL +0 -0
- {uncountablepythonsdk-0.0.127.dist-info → uncountablepythonsdk-0.0.129.dist-info}/top_level.txt +0 -0
|
@@ -4,4 +4,5 @@
|
|
|
4
4
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
5
5
|
# Kept only for SDK backwards compatibility
|
|
6
6
|
from .client_config_t import ClientConfigOptions as ClientConfigOptions
|
|
7
|
+
from .client_config_t import RequestOptions as RequestOptions
|
|
7
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -12,6 +12,7 @@ from . import base_t
|
|
|
12
12
|
|
|
13
13
|
__all__: list[str] = [
|
|
14
14
|
"ClientConfigOptions",
|
|
15
|
+
"RequestOptions",
|
|
15
16
|
]
|
|
16
17
|
|
|
17
18
|
|
|
@@ -23,4 +24,13 @@ __all__: list[str] = [
|
|
|
23
24
|
class ClientConfigOptions:
|
|
24
25
|
allow_insecure_tls: bool = False
|
|
25
26
|
extra_headers: dict[str, str] | None = None
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
30
|
+
@serial_class(
|
|
31
|
+
named_type_path="sdk.client_config.RequestOptions",
|
|
32
|
+
)
|
|
33
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
34
|
+
class RequestOptions:
|
|
35
|
+
timeout_secs: int | None = None
|
|
26
36
|
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/entity_t.py
CHANGED
|
@@ -32,6 +32,7 @@ __all__: list[str] = [
|
|
|
32
32
|
"annotation_type": "Annotation Type",
|
|
33
33
|
"approval": "Approval",
|
|
34
34
|
"async_job": "Async Job",
|
|
35
|
+
"barcode": "Barcode",
|
|
35
36
|
"calculation": "Calculation",
|
|
36
37
|
"calendar": "Calendar",
|
|
37
38
|
"calendar_event": "Calendar Event",
|
|
@@ -217,6 +218,7 @@ class EntityType(StrEnum):
|
|
|
217
218
|
ANNOTATION_TYPE = "annotation_type"
|
|
218
219
|
APPROVAL = "approval"
|
|
219
220
|
ASYNC_JOB = "async_job"
|
|
221
|
+
BARCODE = "barcode"
|
|
220
222
|
CALCULATION = "calculation"
|
|
221
223
|
CALENDAR = "calendar"
|
|
222
224
|
CALENDAR_EVENT = "calendar_event"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UncountablePythonSDK
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.129
|
|
4
4
|
Summary: Uncountable SDK
|
|
5
5
|
Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
|
|
@@ -27,15 +27,16 @@ examples/oauth.py,sha256=QUmv4c27UDs3q98yigyA_Sm3hdK5qNfnDvxh7k06ZYg,213
|
|
|
27
27
|
examples/set_recipe_metadata_file.py,sha256=cRVXGz4UN4aqnNrNSzyBmikYHpe63lMIuzOpMwD9EDU,1036
|
|
28
28
|
examples/set_recipe_output_file_sdk.py,sha256=Lz1amqppnWTX83z-C090wCJ4hcKmCD3kb-4v0uBRi0Y,782
|
|
29
29
|
examples/upload_files.py,sha256=qMaSvMSdTMPOOP55y1AwEurc0SOdZAMvEydlqJPsGpg,432
|
|
30
|
-
examples/integration-server/pyproject.toml,sha256=
|
|
30
|
+
examples/integration-server/pyproject.toml,sha256=MtAVZjKHaEeYDrSyclUVAlhbudb0P5gCopQ-wrgrHuY,9091
|
|
31
31
|
examples/integration-server/jobs/materials_auto/concurrent_cron.py,sha256=xsK3H9ZEaniedC2nJUB0rqOcFI8y-ojfl_nLSJb9AMM,312
|
|
32
32
|
examples/integration-server/jobs/materials_auto/example_cron.py,sha256=spUMiiTEFaepbVXecjD_4aEEfqEtZGGZuWTKs9J6Xcw,736
|
|
33
33
|
examples/integration-server/jobs/materials_auto/example_http.py,sha256=eIL46ElWo8SKY7W5JWWkwZk6Qo7KRd9EJBxfy7YQ_sE,1429
|
|
34
|
-
examples/integration-server/jobs/materials_auto/example_instrument.py,sha256=
|
|
35
|
-
examples/integration-server/jobs/materials_auto/
|
|
36
|
-
examples/integration-server/jobs/materials_auto/
|
|
34
|
+
examples/integration-server/jobs/materials_auto/example_instrument.py,sha256=I79RLDW0m1N-vDkanBAeg2LzDlDZkk4zN_zNbFmgYvI,3434
|
|
35
|
+
examples/integration-server/jobs/materials_auto/example_parse.py,sha256=Io8hMVmg9dVuJ3uynWFqR5oBnf0cL4BGqftJP9hzRGY,5342
|
|
36
|
+
examples/integration-server/jobs/materials_auto/example_predictions.py,sha256=5fO4rqRa80_968A1uVZn2TlMOUib54A8rumGW02sIMM,2112
|
|
37
|
+
examples/integration-server/jobs/materials_auto/example_runsheet_wh.py,sha256=Mhh3PM1j_M35UnMllYNLbTvpMoIcoMOoHIPDaabN_hs,1235
|
|
37
38
|
examples/integration-server/jobs/materials_auto/example_wh.py,sha256=PN-skP27yJwDZboWk5g5EZEc3AKfVayQLfnopjsDKJc,659
|
|
38
|
-
examples/integration-server/jobs/materials_auto/profile.yaml,sha256=
|
|
39
|
+
examples/integration-server/jobs/materials_auto/profile.yaml,sha256=ywDrDRAyqiUdj_HvosNP5bXBL8mCWsvdJ1eYQd-mGYo,2369
|
|
39
40
|
pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
41
|
pkgs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
42
|
pkgs/argument_parser/__init__.py,sha256=EG3pwLEHTp-Qltd3lRnO4K22RiVrasePzKPDOfTPxFY,924
|
|
@@ -64,21 +65,22 @@ pkgs/serialization_util/__init__.py,sha256=YykkhqGNKiLCo-D5vSTq6WiPNfCyPXyr-mQO5
|
|
|
64
65
|
pkgs/serialization_util/_get_type_for_serialization.py,sha256=dW5_W9MFd6wgWfW5qlWork-GBb-QFLtiOZkjk2Zqn2M,1177
|
|
65
66
|
pkgs/serialization_util/convert_to_snakecase.py,sha256=H2BAo5ZdcCDN77RpLb-uP0s7-FQ5Ukwnsd3VYc1vD0M,583
|
|
66
67
|
pkgs/serialization_util/dataclasses.py,sha256=uhNGXQPQLZblDFQuuwkAGmKOPiRyfDzCdg72CVtYJGA,390
|
|
67
|
-
pkgs/serialization_util/serialization_helpers.py,sha256=
|
|
68
|
+
pkgs/serialization_util/serialization_helpers.py,sha256=Rs-kE0PWFY-f64hKo_3LJtYwE-CHiLfJdqFv7bcRUDQ,6663
|
|
68
69
|
pkgs/strenum_compat/__init__.py,sha256=wXRFeNvBm8RU6dy1PFJ5sRLgUIEeH_DVR95Sv5qpGbk,59
|
|
69
70
|
pkgs/strenum_compat/strenum_compat.py,sha256=uOUAgpYTjHs1MX8dG81jRlyTkt3KNbkV_25zp7xTX2s,36
|
|
70
71
|
pkgs/type_spec/__init__.py,sha256=h5DmJTca4QVV10sZR1x0-MlkZfuGYDfapR3zHvXfzto,19
|
|
71
72
|
pkgs/type_spec/__main__.py,sha256=5bJaX9Y_-FavP0qwzhk-z-V97UY7uaezJTa1zhO_HHQ,1048
|
|
72
|
-
pkgs/type_spec/builder.py,sha256=
|
|
73
|
+
pkgs/type_spec/builder.py,sha256=Ixyb9LVcjrmeD3Q1ZvQjqkNW6kOSvHNvgHRYNESKNNU,55284
|
|
74
|
+
pkgs/type_spec/builder_types.py,sha256=EFXvwd3DhuFcqMtG12U9RHNYXHxi_g6kY5AVPBo3fCg,253
|
|
73
75
|
pkgs/type_spec/config.py,sha256=m0Rky7Rg2jMglDPQChF30p5h5P86Ap1GObwzLzmypNE,5829
|
|
74
|
-
pkgs/type_spec/cross_output_links.py,sha256=
|
|
76
|
+
pkgs/type_spec/cross_output_links.py,sha256=763hGehl2aRXzp6GZ943Hu7zRGzv3BE4n8RGI9cl-pA,3071
|
|
75
77
|
pkgs/type_spec/emit_io_ts.py,sha256=CUvBs0boB_X-Kndh66yYcqFfq3oC_LGs8YffLkJ0ZXA,5707
|
|
76
|
-
pkgs/type_spec/emit_open_api.py,sha256=
|
|
78
|
+
pkgs/type_spec/emit_open_api.py,sha256=n3VNr796xKpmwQWtVXyGDxBQYpJ8X7nqKn5H-ESWV9M,27967
|
|
77
79
|
pkgs/type_spec/emit_open_api_util.py,sha256=bTmRvrGP82-eB75hwf9ySI7pDEC87FNQTF18VKEWSXY,2367
|
|
78
|
-
pkgs/type_spec/emit_python.py,sha256=
|
|
80
|
+
pkgs/type_spec/emit_python.py,sha256=2leQIqvwsfrn9KivqDZOB4LqDIyYvkj4LPTTNWxWutc,55236
|
|
79
81
|
pkgs/type_spec/emit_typescript.py,sha256=v0af0jF4YSGnFteWCNoKU0FjC_iJsWYAM32CCg0TnY8,11483
|
|
80
|
-
pkgs/type_spec/emit_typescript_util.py,sha256=
|
|
81
|
-
pkgs/type_spec/load_types.py,sha256=
|
|
82
|
+
pkgs/type_spec/emit_typescript_util.py,sha256=uTKdhFVvwrIehtsXhUiSxPdF0-WWmdQRo9E3X4gwtYA,12642
|
|
83
|
+
pkgs/type_spec/load_types.py,sha256=GsZSWJGBRr5GdC0aYXHz6qWjFEc7A7yjLW-Hugscl5o,4297
|
|
82
84
|
pkgs/type_spec/non_discriminated_union_exceptions.py,sha256=JB4WNDJWc3e9WMOabX4aTd0-6K7n1hctIW2lGf1bYts,612
|
|
83
85
|
pkgs/type_spec/open_api_util.py,sha256=r4rryE95valu4kmHaMAbXQ5PMwbUnnwYv4Gh6_CwiSU,7966
|
|
84
86
|
pkgs/type_spec/test.py,sha256=4ueujBq-pEgnX3Z69HyPmD-bullFXmpixcpVzfOkhP4,489
|
|
@@ -89,7 +91,7 @@ pkgs/type_spec/actions_registry/emit_typescript.py,sha256=W1lI36ITdJ7MBf37wlTB7H
|
|
|
89
91
|
pkgs/type_spec/parts/base.py.prepart,sha256=Xy8my5ol_Iu0hpQpvgsmqGLkGcMsLSg-cgjm4Yp-QI4,2369
|
|
90
92
|
pkgs/type_spec/parts/base.ts.prepart,sha256=42-1_N_K04t4c6pE62V4wBw3bR5bgPxhmXUk__A7gAs,1002
|
|
91
93
|
pkgs/type_spec/type_info/__main__.py,sha256=TLNvCHGcmaj_8Sj5bAQNpuNaaw2dpDzoFDWZds0V4Qo,1002
|
|
92
|
-
pkgs/type_spec/type_info/emit_type_info.py,sha256=
|
|
94
|
+
pkgs/type_spec/type_info/emit_type_info.py,sha256=6uwoWGI7KiM3n4STwUGH17gXRF0WfzjRNPFqFgH2A4o,16576
|
|
93
95
|
pkgs/type_spec/ui_entry_actions/__init__.py,sha256=WiHE_BexOEZWbkkbD7EnFau1aMLNmfgQywG9PTQNCkw,135
|
|
94
96
|
pkgs/type_spec/ui_entry_actions/generate_ui_entry_actions.py,sha256=65qUEp9zVcAsHEe3QjOTlPfLf45kH980fOXZXKNmOC8,9503
|
|
95
97
|
pkgs/type_spec/value_spec/__init__.py,sha256=Z-grlcZtxAfEXhPHsK0nD7PFLGsv4eqvunaPN7_TA84,83
|
|
@@ -101,7 +103,7 @@ uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
|
|
|
101
103
|
uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
104
|
uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
|
|
103
105
|
uncountable/core/async_batch.py,sha256=9pYGFzVCQXt8059qFHgutweGIFPquJ5Xfq6NT5P-1K0,1206
|
|
104
|
-
uncountable/core/client.py,sha256=
|
|
106
|
+
uncountable/core/client.py,sha256=R0GLrFW8zR6_VONReCZOMawxBuq28omfz6Ervu0BSiU,13628
|
|
105
107
|
uncountable/core/environment.py,sha256=4gdJB0ZhRxKlqSKLaE4vUvEUGZ5fy8IAwXcGDRdYt7E,1037
|
|
106
108
|
uncountable/core/file_upload.py,sha256=bgvXk9vfF5qlhy2NAUcEEG7Q7i-c1wr2HrpaWD7HldU,4516
|
|
107
109
|
uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
|
|
@@ -110,11 +112,11 @@ uncountable/integration/cli.py,sha256=sCE0Cz4tMzlzgD3-3P7XmgTUTBinR_yeNkaC-vvPZG
|
|
|
110
112
|
uncountable/integration/construct_client.py,sha256=I53mGcdS88hba3HFwgXmWQaTd1d5u0jWNSwyc_vlVsQ,1937
|
|
111
113
|
uncountable/integration/cron.py,sha256=6eH-kIs3sdYPCyb62_L2M7U_uQTdMTdwY5hreEJb0hw,887
|
|
112
114
|
uncountable/integration/entrypoint.py,sha256=BHOYPQgKvZE6HG8Rv15MkdYl8lRkvfDgv1OdLo0oQ9Q,433
|
|
113
|
-
uncountable/integration/job.py,sha256=
|
|
115
|
+
uncountable/integration/job.py,sha256=brXg6cod4eKNfgPB1J6a0hnrWOrJxRRF571shvxHBw8,8237
|
|
114
116
|
uncountable/integration/scan_profiles.py,sha256=RHBmPc5E10YZzf4cmglwrn2yAy0jHBhQ-P_GlAk2TeU,2919
|
|
115
117
|
uncountable/integration/scheduler.py,sha256=vJQGpuMgryFp5aCQEg5BIvywnu4t3SSFcGoLfY10LKg,6610
|
|
116
118
|
uncountable/integration/server.py,sha256=fU7d26546WA-IRwL8wqWM62ogx28YvTmNd9kQ7c56WI,5787
|
|
117
|
-
uncountable/integration/telemetry.py,sha256=
|
|
119
|
+
uncountable/integration/telemetry.py,sha256=bWfOm4B_ajen4WWIz6tYJSUBGAw3O7nyvhh9Zr3lV9g,8692
|
|
118
120
|
uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
121
|
uncountable/integration/db/connect.py,sha256=mE3bdV0huclH2iT_dXCQdRL4LkjIuf_myAR64RTWXEs,498
|
|
120
122
|
uncountable/integration/db/session.py,sha256=96cGQXpe6IugBTdSsjdP0S5yhJ6toSmbVB6qhc3FJzE,693
|
|
@@ -131,7 +133,7 @@ uncountable/integration/queue_runner/types.py,sha256=8qTq29BTSa5rmW6CBlBntP0pNIi
|
|
|
131
133
|
uncountable/integration/queue_runner/worker.py,sha256=pxnFxubT_siS4SMckNCz9PXxoRjEbTYddlt05Fgd3Fc,4493
|
|
132
134
|
uncountable/integration/queue_runner/command_server/__init__.py,sha256=hMCDLWct8zW4B2a9BaIAsMhtaEgFlxONjeow-6nf6dg,675
|
|
133
135
|
uncountable/integration/queue_runner/command_server/command_client.py,sha256=lT_wiDKQQxIq1ercaiU_5RJanuBNAvcEK9se7pQVP58,4039
|
|
134
|
-
uncountable/integration/queue_runner/command_server/command_server.py,sha256=
|
|
136
|
+
uncountable/integration/queue_runner/command_server/command_server.py,sha256=QITGrXNBsMzFBTRbA20AC4vhdwd30D9SO8PekwkNceI,5391
|
|
135
137
|
uncountable/integration/queue_runner/command_server/constants.py,sha256=7J9mQIAMOfV50wnwpn7HgrPFEi3Ritj6HwrGYwxGLoU,88
|
|
136
138
|
uncountable/integration/queue_runner/command_server/types.py,sha256=fyYj4ZLEWyguKNoGfowLbnihRsEyQt-jW0U2oLTXsHI,1583
|
|
137
139
|
uncountable/integration/queue_runner/command_server/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -145,10 +147,10 @@ uncountable/integration/queue_runner/datastore/interface.py,sha256=tNlnY00D_OyuN
|
|
|
145
147
|
uncountable/integration/queue_runner/datastore/model.py,sha256=YPqlULU7FxuwjmhXGuj6P7skqs-JQttY-o0x1bCnBa0,775
|
|
146
148
|
uncountable/integration/secret_retrieval/__init__.py,sha256=3QXVj35w8rRMxVvmmsViFYDi3lcb3g70incfalOEm6o,87
|
|
147
149
|
uncountable/integration/secret_retrieval/retrieve_secret.py,sha256=LBEf18KHtXZxg-ZZ80stJ1vW39AWf0CQllP6pNu3Eq8,2994
|
|
148
|
-
uncountable/integration/webhook_server/entrypoint.py,sha256=
|
|
149
|
-
uncountable/types/__init__.py,sha256=
|
|
150
|
+
uncountable/integration/webhook_server/entrypoint.py,sha256=RQndrVCKdaVBk-xJ592eGqeN-O0IOM7flXDGoJ2HXsc,3505
|
|
151
|
+
uncountable/types/__init__.py,sha256=IjUYV67XAOWoV9IO_yWznP3a_T1NKu2hYFjJbDj_wRs,11142
|
|
150
152
|
uncountable/types/async_batch.py,sha256=yCCWrrLQfxXVqZp-KskxLBNkNmuELdz4PJjx8ULppgs,662
|
|
151
|
-
uncountable/types/async_batch_processor.py,sha256
|
|
153
|
+
uncountable/types/async_batch_processor.py,sha256=-qLe7fBTHr3hHrAs96gMaUYJ3mkrsKkXK9Qm68X96fc,29629
|
|
152
154
|
uncountable/types/async_batch_t.py,sha256=E3Lo2_wot1lm0oblkLc9Uf5lmMt_zlw0VQ1yA507z8g,3945
|
|
153
155
|
uncountable/types/async_jobs.py,sha256=JI0ScfawaqMRbJ2jbgW3YQLhijPnBeYdMnZJjygSxHg,322
|
|
154
156
|
uncountable/types/async_jobs_t.py,sha256=u4xd3i512PZ-9592Q2ZgWh_faMiI4UMm0F_gOmZnerI,1389
|
|
@@ -160,15 +162,15 @@ uncountable/types/calculations.py,sha256=fApOFpgBemt_t7IVneVR0VdI3X5EOxiG6Xhzr6R
|
|
|
160
162
|
uncountable/types/calculations_t.py,sha256=pl-lhjyDQuj11Sf9g1-0BsSkN7Ez8UxDp8-KMQ_3enM,709
|
|
161
163
|
uncountable/types/chemical_structure.py,sha256=ujyragaD26-QG5jgKnWhO7TN3N1V9b_04T2WhqNYxxo,281
|
|
162
164
|
uncountable/types/chemical_structure_t.py,sha256=VFFyits_vx4t5L2euu_qFiSpsGJjURkDPr3ISnr3nPc,855
|
|
163
|
-
uncountable/types/client_base.py,sha256=
|
|
164
|
-
uncountable/types/client_config.py,sha256=
|
|
165
|
-
uncountable/types/client_config_t.py,sha256=
|
|
165
|
+
uncountable/types/client_base.py,sha256=5mIKtopIqlHRTRPKKzA_Ughphi7jXmcWR6SLX54zMY0,92484
|
|
166
|
+
uncountable/types/client_config.py,sha256=xTQfTRTwnAc8ArvOuQdkKGy1uvGcXgQ_cgqsxhQLFgU,342
|
|
167
|
+
uncountable/types/client_config_t.py,sha256=8JoXNcyYT26uJSs5qP3L6yaPgkn23y-o0NhLFU3ilbc,1089
|
|
166
168
|
uncountable/types/curves.py,sha256=QyEyC20jsG-LGKVx6miiF-w70vKMwNkILFBDIJ5Ok9g,345
|
|
167
169
|
uncountable/types/curves_t.py,sha256=DxYepdC3QKKR7mepOOBoyarNcFZQdUa5ZYH-hwCY3BI,1469
|
|
168
170
|
uncountable/types/data.py,sha256=u2isf4XEug3Eu-xSIoqGaCQmW2dFaKBHCkP_WKYwwBc,500
|
|
169
171
|
uncountable/types/data_t.py,sha256=vFoypK_WMGfN28r1sSlDYHZNUdBQC0XCN7-_Mlo4FJk,2832
|
|
170
172
|
uncountable/types/entity.py,sha256=Zclk1LYcRaYrMDhqyCjMSLEg0fE6_q8LHvV22Qvscgs,566
|
|
171
|
-
uncountable/types/entity_t.py,sha256=
|
|
173
|
+
uncountable/types/entity_t.py,sha256=S8LC9ROVLL9BkomHYlInWDbPp-bBGYhKgMwozpyfsIo,20849
|
|
172
174
|
uncountable/types/experiment_groups.py,sha256=qUpFOx1AKgzaT_4khCOv5Xs6jwiQGbvHH-GUh3v1nv4,288
|
|
173
175
|
uncountable/types/experiment_groups_t.py,sha256=29Ct-WPejpYMuGfnFfOoosU9iSfjzxpabpBX6oTPFUA,761
|
|
174
176
|
uncountable/types/exports.py,sha256=VMmxUO2PpV1Y63hZ2AnVor4H-B6aswJ7YpSru_u89lU,334
|
|
@@ -256,7 +258,8 @@ uncountable/types/api/entity/create_or_update_entity.py,sha256=cxjJIcZTKOg8Y5kGz
|
|
|
256
258
|
uncountable/types/api/entity/export_entities.py,sha256=KGAkzHXbY28v7vcO_XyHVKQ-RVryI5dlYx4HdlYnBXw,1814
|
|
257
259
|
uncountable/types/api/entity/get_entities_data.py,sha256=hu0UfkU4PTyv3_CBZ7YmR8L8BKMq8hx6zH43XtUm16E,1616
|
|
258
260
|
uncountable/types/api/entity/grant_entity_permissions.py,sha256=4CvVIMvpdok8K1Bh6wMlwuUmoeP_-nL9y2GCEM6uAhY,1536
|
|
259
|
-
uncountable/types/api/entity/
|
|
261
|
+
uncountable/types/api/entity/list_aggregate.py,sha256=ocW-veleyCqh-6dRlLRwD-rGaxY1pdFTJozPqmojBJw,2353
|
|
262
|
+
uncountable/types/api/entity/list_entities.py,sha256=-ITJt6DZIWDd9j6vGNyX4fJbPedp-IqY-sRUSV0-Ad0,3008
|
|
260
263
|
uncountable/types/api/entity/lock_entity.py,sha256=nwkjtF89ZWV6_1cLe8R47-G542b8i3FvBIjauOJlObE,1311
|
|
261
264
|
uncountable/types/api/entity/lookup_entity.py,sha256=NIDdYl0iscueC68tfZ1lKp5vTq2NMDYtQ3cG6o2tBaI,3905
|
|
262
265
|
uncountable/types/api/entity/resolve_entity_ids.py,sha256=2FyZxTjPHwCzCg92JjH-akcbPu2d9L14Oh6hRVkKDxA,1523
|
|
@@ -323,7 +326,7 @@ uncountable/types/api/recipes/get_recipe_calculations.py,sha256=fHCQY-y3c640jR8K
|
|
|
323
326
|
uncountable/types/api/recipes/get_recipe_links.py,sha256=j8jBbgBqR2GAdw8vTZwyoXL0NyazTgquoc2l9ojQxMY,1271
|
|
324
327
|
uncountable/types/api/recipes/get_recipe_names.py,sha256=GOnKuPjGlNy89__Cp6pIudf8Xjv9MxA7DbNJhP-DAao,1457
|
|
325
328
|
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=aTTYgg1uVXyEpz7mbtWMmw9kvoLHFONW3XEd4Kz1Grw,1914
|
|
326
|
-
uncountable/types/api/recipes/get_recipes_data.py,sha256
|
|
329
|
+
uncountable/types/api/recipes/get_recipes_data.py,sha256=-_m_MEQYNqMuCNQlTWMXNHZgfTTWVMRAkEFiXO4DnQs,7692
|
|
327
330
|
uncountable/types/api/recipes/lock_recipes.py,sha256=8nXh2OViududWO4m0Q3zA-Bzgu5-quQ2-z4-E5FX_dE,1855
|
|
328
331
|
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=eVmG8MBUScVtjt2Z3_EIjdzyeT0UMSFvdYunNG4mVNo,1221
|
|
329
332
|
uncountable/types/api/recipes/set_recipe_inputs.py,sha256=GSuT-Vgrn8-OG_eFuPCElI3mVWs2XaC_RUXasVCmABw,1766
|
|
@@ -344,7 +347,7 @@ uncountable/types/api/uploader/complete_async_parse.py,sha256=nYYBzjT_j4L7_1Ge-i
|
|
|
344
347
|
uncountable/types/api/uploader/invoke_uploader.py,sha256=Bj7Dq4A90k00suacwk3bLA_dCb2aovS1kAbVam2AQnM,1395
|
|
345
348
|
uncountable/types/api/user/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
346
349
|
uncountable/types/api/user/get_current_user_info.py,sha256=Avqi_RXtRgbefrT_dwJ9MrO6eDNSSa_Nu650FSuESlg,1109
|
|
347
|
-
uncountablepythonsdk-0.0.
|
|
348
|
-
uncountablepythonsdk-0.0.
|
|
349
|
-
uncountablepythonsdk-0.0.
|
|
350
|
-
uncountablepythonsdk-0.0.
|
|
350
|
+
uncountablepythonsdk-0.0.129.dist-info/METADATA,sha256=VZrc3etMCiwu7MqLdACdMk-F5gnPLloOIjMySaqgj6Y,2174
|
|
351
|
+
uncountablepythonsdk-0.0.129.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
352
|
+
uncountablepythonsdk-0.0.129.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
|
|
353
|
+
uncountablepythonsdk-0.0.129.dist-info/RECORD,,
|
|
File without changes
|
{uncountablepythonsdk-0.0.127.dist-info → uncountablepythonsdk-0.0.129.dist-info}/top_level.txt
RENAMED
|
File without changes
|