UncountablePythonSDK 0.0.125__py3-none-any.whl → 0.0.126__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/pyproject.toml +1 -1
- uncountable/types/__init__.py +4 -0
- uncountable/types/api/recipes/get_recipe_output_metadata.py +2 -2
- uncountable/types/api/uploader/complete_async_parse.py +42 -0
- uncountable/types/client_base.py +20 -0
- uncountable/types/uploader.py +24 -0
- uncountable/types/uploader_t.py +221 -0
- {uncountablepythonsdk-0.0.125.dist-info → uncountablepythonsdk-0.0.126.dist-info}/METADATA +1 -1
- {uncountablepythonsdk-0.0.125.dist-info → uncountablepythonsdk-0.0.126.dist-info}/RECORD +11 -8
- {uncountablepythonsdk-0.0.125.dist-info → uncountablepythonsdk-0.0.126.dist-info}/WHEEL +0 -0
- {uncountablepythonsdk-0.0.125.dist-info → uncountablepythonsdk-0.0.126.dist-info}/top_level.txt +0 -0
uncountable/types/__init__.py
CHANGED
|
@@ -16,6 +16,7 @@ from . import calculations_t as calculations_t
|
|
|
16
16
|
from . import chemical_structure_t as chemical_structure_t
|
|
17
17
|
from .api.recipes import clear_recipe_outputs as clear_recipe_outputs_t
|
|
18
18
|
from . import client_config_t as client_config_t
|
|
19
|
+
from .api.uploader import complete_async_parse as complete_async_parse_t
|
|
19
20
|
from .api.runsheet import complete_async_upload as complete_async_upload_t
|
|
20
21
|
from .api.chemical import convert_chemical_formats as convert_chemical_formats_t
|
|
21
22
|
from .api.entity import create_entities as create_entities_t
|
|
@@ -119,6 +120,7 @@ from . import units_t as units_t
|
|
|
119
120
|
from .api.entity import unlock_entity as unlock_entity_t
|
|
120
121
|
from .api.recipes import unlock_recipes as unlock_recipes_t
|
|
121
122
|
from .api.material_families import update_entity_material_families as update_entity_material_families_t
|
|
123
|
+
from . import uploader_t as uploader_t
|
|
122
124
|
from .api.condition_parameters import upsert_condition_match as upsert_condition_match_t
|
|
123
125
|
from .api.field_options import upsert_field_options as upsert_field_options_t
|
|
124
126
|
from . import users_t as users_t
|
|
@@ -141,6 +143,7 @@ __all__: list[str] = [
|
|
|
141
143
|
"chemical_structure_t",
|
|
142
144
|
"clear_recipe_outputs_t",
|
|
143
145
|
"client_config_t",
|
|
146
|
+
"complete_async_parse_t",
|
|
144
147
|
"complete_async_upload_t",
|
|
145
148
|
"convert_chemical_formats_t",
|
|
146
149
|
"create_entities_t",
|
|
@@ -244,6 +247,7 @@ __all__: list[str] = [
|
|
|
244
247
|
"unlock_entity_t",
|
|
245
248
|
"unlock_recipes_t",
|
|
246
249
|
"update_entity_material_families_t",
|
|
250
|
+
"uploader_t",
|
|
247
251
|
"upsert_condition_match_t",
|
|
248
252
|
"upsert_field_options_t",
|
|
249
253
|
"users_t",
|
|
@@ -42,8 +42,8 @@ class Arguments:
|
|
|
42
42
|
class RecipeOutputMetadata:
|
|
43
43
|
recipe_output_id: base_t.ObjectId
|
|
44
44
|
recipe_output_metadata_field_id: base_t.ObjectId
|
|
45
|
-
quantity_dec: Decimal
|
|
46
|
-
quantity_json: base_t.JsonValue
|
|
45
|
+
quantity_dec: Decimal | None = None
|
|
46
|
+
quantity_json: base_t.JsonValue | None = None
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# ruff: noqa: E402 Q003
|
|
3
|
+
# fmt: off
|
|
4
|
+
# isort: skip_file
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import typing # noqa: F401
|
|
7
|
+
import datetime # noqa: F401
|
|
8
|
+
from decimal import Decimal # noqa: F401
|
|
9
|
+
import dataclasses
|
|
10
|
+
from pkgs.serialization import serial_class
|
|
11
|
+
from ... import async_batch_t
|
|
12
|
+
from ... import base_t
|
|
13
|
+
from ... import uploader_t
|
|
14
|
+
|
|
15
|
+
__all__: list[str] = [
|
|
16
|
+
"Arguments",
|
|
17
|
+
"Data",
|
|
18
|
+
"ENDPOINT_METHOD",
|
|
19
|
+
"ENDPOINT_PATH",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
ENDPOINT_METHOD = "POST"
|
|
23
|
+
ENDPOINT_PATH = "api/external/uploader/complete_async_parse"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
27
|
+
@serial_class(
|
|
28
|
+
named_type_path="sdk.api.uploader.complete_async_parse.Arguments",
|
|
29
|
+
)
|
|
30
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
31
|
+
class Arguments:
|
|
32
|
+
parsed_file_data: list[uploader_t.ParsedFileData]
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
36
|
+
@serial_class(
|
|
37
|
+
named_type_path="sdk.api.uploader.complete_async_parse.Data",
|
|
38
|
+
)
|
|
39
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
40
|
+
class Data(async_batch_t.AsyncBatchActionReturn):
|
|
41
|
+
pass
|
|
42
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/client_base.py
CHANGED
|
@@ -17,6 +17,7 @@ import uncountable.types.api.recipes.associate_recipe_as_lot as associate_recipe
|
|
|
17
17
|
from uncountable.types import async_batch_t
|
|
18
18
|
from uncountable.types import base_t
|
|
19
19
|
import uncountable.types.api.recipes.clear_recipe_outputs as clear_recipe_outputs_t
|
|
20
|
+
import uncountable.types.api.uploader.complete_async_parse as complete_async_parse_t
|
|
20
21
|
import uncountable.types.api.runsheet.complete_async_upload as complete_async_upload_t
|
|
21
22
|
import uncountable.types.api.chemical.convert_chemical_formats as convert_chemical_formats_t
|
|
22
23
|
import uncountable.types.api.entity.create_entities as create_entities_t
|
|
@@ -95,6 +96,7 @@ import uncountable.types.api.recipes.unarchive_recipes as unarchive_recipes_t
|
|
|
95
96
|
import uncountable.types.api.entity.unlock_entity as unlock_entity_t
|
|
96
97
|
import uncountable.types.api.recipes.unlock_recipes as unlock_recipes_t
|
|
97
98
|
import uncountable.types.api.material_families.update_entity_material_families as update_entity_material_families_t
|
|
99
|
+
from uncountable.types import uploader_t
|
|
98
100
|
import uncountable.types.api.condition_parameters.upsert_condition_match as upsert_condition_match_t
|
|
99
101
|
import uncountable.types.api.field_options.upsert_field_options as upsert_field_options_t
|
|
100
102
|
from abc import ABC, abstractmethod
|
|
@@ -273,6 +275,24 @@ class ClientMethods(ABC):
|
|
|
273
275
|
)
|
|
274
276
|
return self.do_request(api_request=api_request, return_type=clear_recipe_outputs_t.Data)
|
|
275
277
|
|
|
278
|
+
def complete_async_parse(
|
|
279
|
+
self,
|
|
280
|
+
*,
|
|
281
|
+
parsed_file_data: list[uploader_t.ParsedFileData],
|
|
282
|
+
) -> complete_async_parse_t.Data:
|
|
283
|
+
"""Parses uploaded files asynchronously
|
|
284
|
+
|
|
285
|
+
"""
|
|
286
|
+
args = complete_async_parse_t.Arguments(
|
|
287
|
+
parsed_file_data=parsed_file_data,
|
|
288
|
+
)
|
|
289
|
+
api_request = APIRequest(
|
|
290
|
+
method=complete_async_parse_t.ENDPOINT_METHOD,
|
|
291
|
+
endpoint=complete_async_parse_t.ENDPOINT_PATH,
|
|
292
|
+
args=args,
|
|
293
|
+
)
|
|
294
|
+
return self.do_request(api_request=api_request, return_type=complete_async_parse_t.Data)
|
|
295
|
+
|
|
276
296
|
def complete_async_upload(
|
|
277
297
|
self,
|
|
278
298
|
*,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ruff: noqa: E402 Q003
|
|
2
|
+
# fmt: off
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
5
|
+
# Kept only for SDK backwards compatibility
|
|
6
|
+
from .uploader_t import HeaderType as HeaderType
|
|
7
|
+
from .uploader_t import ChannelType as ChannelType
|
|
8
|
+
from .uploader_t import StructureElementType as StructureElementType
|
|
9
|
+
from .uploader_t import StructureElementBase as StructureElementBase
|
|
10
|
+
from .uploader_t import DecimalValue as DecimalValue
|
|
11
|
+
from .uploader_t import StringValue as StringValue
|
|
12
|
+
from .uploader_t import BaseData as BaseData
|
|
13
|
+
from .uploader_t import NumericHeaderData as NumericHeaderData
|
|
14
|
+
from .uploader_t import TextHeaderData as TextHeaderData
|
|
15
|
+
from .uploader_t import HeaderValue as HeaderValue
|
|
16
|
+
from .uploader_t import NumericChannelData as NumericChannelData
|
|
17
|
+
from .uploader_t import TimestampChannelData as TimestampChannelData
|
|
18
|
+
from .uploader_t import TextChannelData as TextChannelData
|
|
19
|
+
from .uploader_t import Channel as Channel
|
|
20
|
+
from .uploader_t import DataChannel as DataChannel
|
|
21
|
+
from .uploader_t import HeaderEntry as HeaderEntry
|
|
22
|
+
from .uploader_t import StructureElement as StructureElement
|
|
23
|
+
from .uploader_t import ParsedFileData as ParsedFileData
|
|
24
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# ruff: noqa: E402 Q003
|
|
3
|
+
# fmt: off
|
|
4
|
+
# isort: skip_file
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import typing # noqa: F401
|
|
7
|
+
import datetime # noqa: F401
|
|
8
|
+
from decimal import Decimal # noqa: F401
|
|
9
|
+
from enum import StrEnum
|
|
10
|
+
import dataclasses
|
|
11
|
+
from pkgs.serialization import serial_class
|
|
12
|
+
from pkgs.serialization import serial_union_annotation
|
|
13
|
+
from . import base_t
|
|
14
|
+
|
|
15
|
+
__all__: list[str] = [
|
|
16
|
+
"BaseData",
|
|
17
|
+
"Channel",
|
|
18
|
+
"ChannelType",
|
|
19
|
+
"DataChannel",
|
|
20
|
+
"DecimalValue",
|
|
21
|
+
"HeaderEntry",
|
|
22
|
+
"HeaderType",
|
|
23
|
+
"HeaderValue",
|
|
24
|
+
"NumericChannelData",
|
|
25
|
+
"NumericHeaderData",
|
|
26
|
+
"ParsedFileData",
|
|
27
|
+
"StringValue",
|
|
28
|
+
"StructureElement",
|
|
29
|
+
"StructureElementBase",
|
|
30
|
+
"StructureElementType",
|
|
31
|
+
"TextChannelData",
|
|
32
|
+
"TextHeaderData",
|
|
33
|
+
"TimestampChannelData",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
38
|
+
class HeaderType(StrEnum):
|
|
39
|
+
NUMERIC_HEADER = "numeric_header"
|
|
40
|
+
TEXT_HEADER = "text_header"
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
44
|
+
class ChannelType(StrEnum):
|
|
45
|
+
NUMERIC_CHANNEL = "numeric_channel"
|
|
46
|
+
TIMESTAMP_CHANNEL = "timestamp_channel"
|
|
47
|
+
TEXT_CHANNEL = "text_channel"
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
51
|
+
class StructureElementType(StrEnum):
|
|
52
|
+
CHANNEL = "channel"
|
|
53
|
+
HEADER = "header"
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
57
|
+
@serial_class(
|
|
58
|
+
named_type_path="sdk.uploader.StructureElementBase",
|
|
59
|
+
)
|
|
60
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
61
|
+
class StructureElementBase:
|
|
62
|
+
type: StructureElementType
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
66
|
+
@serial_class(
|
|
67
|
+
named_type_path="sdk.uploader.DecimalValue",
|
|
68
|
+
to_string_values={"value"},
|
|
69
|
+
)
|
|
70
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
71
|
+
class DecimalValue:
|
|
72
|
+
value: Decimal
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
76
|
+
@serial_class(
|
|
77
|
+
named_type_path="sdk.uploader.StringValue",
|
|
78
|
+
)
|
|
79
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
80
|
+
class StringValue:
|
|
81
|
+
value: str
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
85
|
+
@serial_class(
|
|
86
|
+
named_type_path="sdk.uploader.BaseData",
|
|
87
|
+
)
|
|
88
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
89
|
+
class BaseData:
|
|
90
|
+
name: str
|
|
91
|
+
type: str
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
95
|
+
@serial_class(
|
|
96
|
+
named_type_path="sdk.uploader.NumericHeaderData",
|
|
97
|
+
parse_require={"type"},
|
|
98
|
+
)
|
|
99
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
100
|
+
class NumericHeaderData(BaseData):
|
|
101
|
+
type: typing.Literal[HeaderType.NUMERIC_HEADER] = HeaderType.NUMERIC_HEADER
|
|
102
|
+
data: DecimalValue | None
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
106
|
+
@serial_class(
|
|
107
|
+
named_type_path="sdk.uploader.TextHeaderData",
|
|
108
|
+
parse_require={"type"},
|
|
109
|
+
)
|
|
110
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
111
|
+
class TextHeaderData(BaseData):
|
|
112
|
+
type: typing.Literal[HeaderType.TEXT_HEADER] = HeaderType.TEXT_HEADER
|
|
113
|
+
data: StringValue | None
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
117
|
+
HeaderValue = typing.Annotated[
|
|
118
|
+
NumericHeaderData | TextHeaderData,
|
|
119
|
+
serial_union_annotation(
|
|
120
|
+
named_type_path="sdk.uploader.HeaderValue",
|
|
121
|
+
discriminator="type",
|
|
122
|
+
discriminator_map={
|
|
123
|
+
"numeric_header": NumericHeaderData,
|
|
124
|
+
"text_header": TextHeaderData,
|
|
125
|
+
},
|
|
126
|
+
),
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
131
|
+
@serial_class(
|
|
132
|
+
named_type_path="sdk.uploader.NumericChannelData",
|
|
133
|
+
parse_require={"type"},
|
|
134
|
+
)
|
|
135
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
136
|
+
class NumericChannelData(BaseData):
|
|
137
|
+
type: typing.Literal[ChannelType.NUMERIC_CHANNEL] = ChannelType.NUMERIC_CHANNEL
|
|
138
|
+
data: list[DecimalValue]
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
142
|
+
@serial_class(
|
|
143
|
+
named_type_path="sdk.uploader.TimestampChannelData",
|
|
144
|
+
parse_require={"type"},
|
|
145
|
+
)
|
|
146
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
147
|
+
class TimestampChannelData(BaseData):
|
|
148
|
+
type: typing.Literal[ChannelType.TIMESTAMP_CHANNEL] = ChannelType.TIMESTAMP_CHANNEL
|
|
149
|
+
data: list[DecimalValue]
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
153
|
+
@serial_class(
|
|
154
|
+
named_type_path="sdk.uploader.TextChannelData",
|
|
155
|
+
parse_require={"type"},
|
|
156
|
+
)
|
|
157
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
158
|
+
class TextChannelData(BaseData):
|
|
159
|
+
type: typing.Literal[ChannelType.TEXT_CHANNEL] = ChannelType.TEXT_CHANNEL
|
|
160
|
+
data: list[StringValue]
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
164
|
+
Channel = typing.Annotated[
|
|
165
|
+
TextChannelData | TimestampChannelData,
|
|
166
|
+
serial_union_annotation(
|
|
167
|
+
named_type_path="sdk.uploader.Channel",
|
|
168
|
+
discriminator="type",
|
|
169
|
+
discriminator_map={
|
|
170
|
+
"text_channel": TextChannelData,
|
|
171
|
+
"timestamp_channel": TimestampChannelData,
|
|
172
|
+
},
|
|
173
|
+
),
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
178
|
+
@serial_class(
|
|
179
|
+
named_type_path="sdk.uploader.DataChannel",
|
|
180
|
+
parse_require={"type"},
|
|
181
|
+
)
|
|
182
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
183
|
+
class DataChannel(StructureElementBase):
|
|
184
|
+
type: typing.Literal[StructureElementType.CHANNEL] = StructureElementType.CHANNEL
|
|
185
|
+
channel: Channel
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
189
|
+
@serial_class(
|
|
190
|
+
named_type_path="sdk.uploader.HeaderEntry",
|
|
191
|
+
parse_require={"type"},
|
|
192
|
+
)
|
|
193
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
194
|
+
class HeaderEntry(StructureElementBase):
|
|
195
|
+
type: typing.Literal[StructureElementType.HEADER] = StructureElementType.HEADER
|
|
196
|
+
value: HeaderValue
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
200
|
+
StructureElement = typing.Annotated[
|
|
201
|
+
DataChannel | HeaderEntry,
|
|
202
|
+
serial_union_annotation(
|
|
203
|
+
named_type_path="sdk.uploader.StructureElement",
|
|
204
|
+
discriminator="type",
|
|
205
|
+
discriminator_map={
|
|
206
|
+
"channel": DataChannel,
|
|
207
|
+
"header": HeaderEntry,
|
|
208
|
+
},
|
|
209
|
+
),
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
214
|
+
@serial_class(
|
|
215
|
+
named_type_path="sdk.uploader.ParsedFileData",
|
|
216
|
+
)
|
|
217
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
218
|
+
class ParsedFileData:
|
|
219
|
+
file_id: base_t.ObjectId
|
|
220
|
+
file_structures: list[StructureElement]
|
|
221
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UncountablePythonSDK
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.126
|
|
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,7 +27,7 @@ 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=YqGTmx19bOOTF28BXfazmoRaD41wgGPpoVpV2whhfpA,9149
|
|
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
|
|
@@ -145,7 +145,7 @@ uncountable/integration/queue_runner/datastore/model.py,sha256=8-RI5A2yPZVGBLWIN
|
|
|
145
145
|
uncountable/integration/secret_retrieval/__init__.py,sha256=3QXVj35w8rRMxVvmmsViFYDi3lcb3g70incfalOEm6o,87
|
|
146
146
|
uncountable/integration/secret_retrieval/retrieve_secret.py,sha256=LBEf18KHtXZxg-ZZ80stJ1vW39AWf0CQllP6pNu3Eq8,2994
|
|
147
147
|
uncountable/integration/webhook_server/entrypoint.py,sha256=NQawXl_JCRojdVniS5RF7dobQQKW_Wy03bwy-uXknuA,3441
|
|
148
|
-
uncountable/types/__init__.py,sha256=
|
|
148
|
+
uncountable/types/__init__.py,sha256=vjTtTtv3V-G2CDMOG3nKqDWO58J77CxnTB-9W_-BdmY,10856
|
|
149
149
|
uncountable/types/async_batch.py,sha256=yCCWrrLQfxXVqZp-KskxLBNkNmuELdz4PJjx8ULppgs,662
|
|
150
150
|
uncountable/types/async_batch_processor.py,sha256=hvTGI4NNBlHF1q6ec_DuZhLSvX8F32L9lFztNLNjWHw,23451
|
|
151
151
|
uncountable/types/async_batch_t.py,sha256=mAQ2AXao_v76e7hZGzUCoSroq2Kf2FVz6hmmMX0icHo,3836
|
|
@@ -159,7 +159,7 @@ uncountable/types/calculations.py,sha256=fApOFpgBemt_t7IVneVR0VdI3X5EOxiG6Xhzr6R
|
|
|
159
159
|
uncountable/types/calculations_t.py,sha256=pl-lhjyDQuj11Sf9g1-0BsSkN7Ez8UxDp8-KMQ_3enM,709
|
|
160
160
|
uncountable/types/chemical_structure.py,sha256=ujyragaD26-QG5jgKnWhO7TN3N1V9b_04T2WhqNYxxo,281
|
|
161
161
|
uncountable/types/chemical_structure_t.py,sha256=VFFyits_vx4t5L2euu_qFiSpsGJjURkDPr3ISnr3nPc,855
|
|
162
|
-
uncountable/types/client_base.py,sha256=
|
|
162
|
+
uncountable/types/client_base.py,sha256=6e1Z82JWbT8D6g9tjnPz6Gjdq8cUmLNjkacztpktJoM,78733
|
|
163
163
|
uncountable/types/client_config.py,sha256=qLpHt4O_B098CyN6qQajoxZ2zjZ1DILXLUEGyyGP0TQ,280
|
|
164
164
|
uncountable/types/client_config_t.py,sha256=yTFIYAitMrcc4oV9J-HADODS_Hwi45z-piz7rr7QT04,781
|
|
165
165
|
uncountable/types/curves.py,sha256=QyEyC20jsG-LGKVx6miiF-w70vKMwNkILFBDIJ5Ok9g,345
|
|
@@ -232,6 +232,8 @@ uncountable/types/sockets.py,sha256=avkDlKqvvA9W492N9jrfYbnQlVWHN94hne39RM0cUxM,
|
|
|
232
232
|
uncountable/types/sockets_t.py,sha256=EC3qRIegdIOcIITC1Y_O79xfo-FSevxsM_IhJ-Up_Bw,2224
|
|
233
233
|
uncountable/types/units.py,sha256=yxuddayiE8cnzrjQiIsURisWc-Vm1F37uyS3fjM--Ao,254
|
|
234
234
|
uncountable/types/units_t.py,sha256=d62vY2ETqIgMHASw_IcREwDDqKAqI-vPnoBOqzMt4-o,704
|
|
235
|
+
uncountable/types/uploader.py,sha256=odT7wkBfXUf1MoFy6W5JzZ-WY8JX0vO6odGOS_C2Voo,1222
|
|
236
|
+
uncountable/types/uploader_t.py,sha256=yEeJFk5AN9WL2IpZs79PbATIcgzlb6wTpd-opjwp8zg,6685
|
|
235
237
|
uncountable/types/users.py,sha256=R-bFIh07mMl6HyxP8hKmlT-QMbBXZPZ7mVuOIeOlCsg,254
|
|
236
238
|
uncountable/types/users_t.py,sha256=HaaGjdYZFmfiG0Oio4zBusQUQE2PONmPKcYnCGJP3-Q,727
|
|
237
239
|
uncountable/types/webhook_job.py,sha256=22fT212MjSpKZNzDjpFbAEW2-UBGRsDHf3Z8ChHpS_g,418
|
|
@@ -318,7 +320,7 @@ uncountable/types/api/recipes/get_curve.py,sha256=1Zf41GRBArll1fnpap6I5cYlw6SDDC
|
|
|
318
320
|
uncountable/types/api/recipes/get_recipe_calculations.py,sha256=fHCQY-y3c640jR8K5b-XLFFx7GAH3kAgmVDX7Qcj7n0,1862
|
|
319
321
|
uncountable/types/api/recipes/get_recipe_links.py,sha256=j8jBbgBqR2GAdw8vTZwyoXL0NyazTgquoc2l9ojQxMY,1271
|
|
320
322
|
uncountable/types/api/recipes/get_recipe_names.py,sha256=GOnKuPjGlNy89__Cp6pIudf8Xjv9MxA7DbNJhP-DAao,1457
|
|
321
|
-
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=
|
|
323
|
+
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=aTTYgg1uVXyEpz7mbtWMmw9kvoLHFONW3XEd4Kz1Grw,1914
|
|
322
324
|
uncountable/types/api/recipes/get_recipes_data.py,sha256=EvByENq-RuUABaiGKOlXbHRK7Cb6X4bpqI9PUVD-gPQ,6770
|
|
323
325
|
uncountable/types/api/recipes/lock_recipes.py,sha256=3mEhU2Sn_-vWnqAFqNRDnqE20ucT76PF5Zz6sMb7DNg,1787
|
|
324
326
|
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=eVmG8MBUScVtjt2Z3_EIjdzyeT0UMSFvdYunNG4mVNo,1221
|
|
@@ -335,10 +337,11 @@ uncountable/types/api/runsheet/complete_async_upload.py,sha256=r3zsmD8tcalMfa67M
|
|
|
335
337
|
uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
336
338
|
uncountable/types/api/triggers/run_trigger.py,sha256=dgDX_sRWSJ36UuzMZhG25oHV1HIOUKYY2G3fjKugZrw,1204
|
|
337
339
|
uncountable/types/api/uploader/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
340
|
+
uncountable/types/api/uploader/complete_async_parse.py,sha256=zx2FyihtSXOjPUPQMW9ErjYeORW0naSS_I1BcoYkpNE,1239
|
|
338
341
|
uncountable/types/api/uploader/invoke_uploader.py,sha256=Bj7Dq4A90k00suacwk3bLA_dCb2aovS1kAbVam2AQnM,1395
|
|
339
342
|
uncountable/types/api/user/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
340
343
|
uncountable/types/api/user/get_current_user_info.py,sha256=Avqi_RXtRgbefrT_dwJ9MrO6eDNSSa_Nu650FSuESlg,1109
|
|
341
|
-
uncountablepythonsdk-0.0.
|
|
342
|
-
uncountablepythonsdk-0.0.
|
|
343
|
-
uncountablepythonsdk-0.0.
|
|
344
|
-
uncountablepythonsdk-0.0.
|
|
344
|
+
uncountablepythonsdk-0.0.126.dist-info/METADATA,sha256=_cUnINlyNcykuSDvSOi8r6GGdyOzD0rGHuilsJ2aRDQ,2174
|
|
345
|
+
uncountablepythonsdk-0.0.126.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
346
|
+
uncountablepythonsdk-0.0.126.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
|
|
347
|
+
uncountablepythonsdk-0.0.126.dist-info/RECORD,,
|
|
File without changes
|
{uncountablepythonsdk-0.0.125.dist-info → uncountablepythonsdk-0.0.126.dist-info}/top_level.txt
RENAMED
|
File without changes
|