tracdap-runtime 0.8.0b2__py3-none-any.whl → 0.8.0b3__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.
- tracdap/rt/_impl/core/__init__.py +14 -0
- tracdap/rt/_impl/{config_parser.py → core/config_parser.py} +12 -6
- tracdap/rt/_impl/{data.py → core/data.py} +1 -1
- tracdap/rt/_impl/{models.py → core/models.py} +6 -6
- tracdap/rt/_impl/{repos.py → core/repos.py} +1 -1
- tracdap/rt/_impl/{schemas.py → core/schemas.py} +4 -4
- tracdap/rt/_impl/{shim.py → core/shim.py} +3 -3
- tracdap/rt/_impl/{storage.py → core/storage.py} +4 -4
- tracdap/rt/_impl/{validation.py → core/validation.py} +2 -2
- tracdap/rt/_impl/exec/__init__.py +14 -0
- tracdap/rt/{_exec → _impl/exec}/actors.py +9 -12
- tracdap/rt/{_exec → _impl/exec}/context.py +6 -6
- tracdap/rt/{_exec → _impl/exec}/dev_mode.py +6 -6
- tracdap/rt/{_exec → _impl/exec}/engine.py +9 -9
- tracdap/rt/{_exec → _impl/exec}/functions.py +11 -12
- tracdap/rt/{_exec → _impl/exec}/graph.py +1 -1
- tracdap/rt/{_exec → _impl/exec}/graph_builder.py +2 -2
- tracdap/rt/{_exec → _impl/grpc}/server.py +4 -4
- tracdap/rt/{_exec → _impl}/runtime.py +13 -13
- tracdap/rt/_impl/static_api.py +4 -4
- tracdap/rt/_plugins/format_csv.py +1 -1
- tracdap/rt/_plugins/storage_sql.py +1 -1
- tracdap/rt/_version.py +1 -1
- tracdap/rt/config/__init__.py +1 -0
- tracdap/rt/config/platform.py +8 -0
- tracdap/rt/ext/embed.py +2 -2
- tracdap/rt/ext/plugins.py +2 -2
- tracdap/rt/launch/launch.py +3 -3
- {tracdap_runtime-0.8.0b2.dist-info → tracdap_runtime-0.8.0b3.dist-info}/METADATA +2 -2
- {tracdap_runtime-0.8.0b2.dist-info → tracdap_runtime-0.8.0b3.dist-info}/RECORD +37 -36
- {tracdap_runtime-0.8.0b2.dist-info → tracdap_runtime-0.8.0b3.dist-info}/WHEEL +1 -1
- tracdap/rt/_exec/__init__.py +0 -0
- /tracdap/rt/_impl/{guard_rails.py → core/guard_rails.py} +0 -0
- /tracdap/rt/_impl/{logging.py → core/logging.py} +0 -0
- /tracdap/rt/_impl/{type_system.py → core/type_system.py} +0 -0
- /tracdap/rt/_impl/{util.py → core/util.py} +0 -0
- {tracdap_runtime-0.8.0b2.dist-info → tracdap_runtime-0.8.0b3.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.8.0b2.dist-info → tracdap_runtime-0.8.0b3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
# Licensed to the Fintech Open Source Foundation (FINOS) under one or
|
2
|
+
# more contributor license agreements. See the NOTICE file distributed
|
3
|
+
# with this work for additional information regarding copyright ownership.
|
4
|
+
# FINOS licenses this file to you under the Apache License, Version 2.0
|
5
|
+
# (the "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
@@ -12,8 +12,14 @@
|
|
12
12
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
13
|
# See the License for the specific language governing permissions and
|
14
14
|
# limitations under the License.
|
15
|
-
|
16
|
-
|
15
|
+
#
|
16
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
17
|
+
#
|
18
|
+
# Unless required by applicable law or agreed to in writing, software
|
19
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
20
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
21
|
+
# See the License for the specific language governing permissions and
|
22
|
+
# limitations under the License.
|
17
23
|
|
18
24
|
import dataclasses as _dc
|
19
25
|
import decimal
|
@@ -32,8 +38,8 @@ import tracdap.rt.config as _config
|
|
32
38
|
import tracdap.rt.exceptions as _ex
|
33
39
|
import tracdap.rt.ext.plugins as _plugins
|
34
40
|
import tracdap.rt.ext.config as _config_ext
|
35
|
-
import tracdap.rt._impl.logging as _logging
|
36
|
-
import tracdap.rt._impl.util as _util
|
41
|
+
import tracdap.rt._impl.core.logging as _logging
|
42
|
+
import tracdap.rt._impl.core.util as _util
|
37
43
|
|
38
44
|
import yaml
|
39
45
|
import yaml.parser
|
@@ -44,7 +50,7 @@ _T = tp.TypeVar('_T')
|
|
44
50
|
class ConfigManager:
|
45
51
|
|
46
52
|
@classmethod
|
47
|
-
def for_root_config(cls, root_config_file: tp.Union[str, pathlib.Path, None]) -> ConfigManager:
|
53
|
+
def for_root_config(cls, root_config_file: tp.Union[str, pathlib.Path, None]) -> "ConfigManager":
|
48
54
|
|
49
55
|
if isinstance(root_config_file, pathlib.Path):
|
50
56
|
root_file_path = cls._resolve_scheme(root_config_file)
|
@@ -70,7 +76,7 @@ class ConfigManager:
|
|
70
76
|
return ConfigManager(working_dir_url, None)
|
71
77
|
|
72
78
|
@classmethod
|
73
|
-
def for_root_dir(cls, root_config_dir: tp.Union[str, pathlib.Path]) -> ConfigManager:
|
79
|
+
def for_root_dir(cls, root_config_dir: tp.Union[str, pathlib.Path]) -> "ConfigManager":
|
74
80
|
|
75
81
|
if isinstance(root_config_dir, pathlib.Path):
|
76
82
|
root_dir_path = cls._resolve_scheme(root_config_dir)
|
@@ -37,7 +37,7 @@ except ModuleNotFoundError:
|
|
37
37
|
import tracdap.rt.api.experimental as _api
|
38
38
|
import tracdap.rt.metadata as _meta
|
39
39
|
import tracdap.rt.exceptions as _ex
|
40
|
-
import tracdap.rt._impl.logging as _log
|
40
|
+
import tracdap.rt._impl.core.logging as _log
|
41
41
|
|
42
42
|
|
43
43
|
@dc.dataclass(frozen=True)
|
@@ -25,12 +25,12 @@ import tracdap.rt.metadata as _meta
|
|
25
25
|
import tracdap.rt.config as _cfg
|
26
26
|
import tracdap.rt.exceptions as _ex
|
27
27
|
|
28
|
-
import tracdap.rt._impl.logging as _logging
|
29
|
-
import tracdap.rt._impl.repos as _repos
|
30
|
-
import tracdap.rt._impl.shim as _shim
|
31
|
-
import tracdap.rt._impl.type_system as _types
|
32
|
-
import tracdap.rt._impl.util as _util
|
33
|
-
import tracdap.rt._impl.validation as _val
|
28
|
+
import tracdap.rt._impl.core.logging as _logging
|
29
|
+
import tracdap.rt._impl.core.repos as _repos
|
30
|
+
import tracdap.rt._impl.core.shim as _shim
|
31
|
+
import tracdap.rt._impl.core.type_system as _types
|
32
|
+
import tracdap.rt._impl.core.util as _util
|
33
|
+
import tracdap.rt._impl.core.validation as _val
|
34
34
|
|
35
35
|
|
36
36
|
class ModelLoader:
|
@@ -18,7 +18,7 @@ import typing as _tp
|
|
18
18
|
import tracdap.rt.ext.plugins as plugins
|
19
19
|
import tracdap.rt.config as cfg
|
20
20
|
import tracdap.rt.exceptions as ex
|
21
|
-
import tracdap.rt._impl.logging as _logging
|
21
|
+
import tracdap.rt._impl.core.logging as _logging
|
22
22
|
|
23
23
|
# Import repo interfaces
|
24
24
|
from tracdap.rt.ext.repos import *
|
@@ -21,10 +21,10 @@ import pyarrow as pa
|
|
21
21
|
|
22
22
|
import tracdap.rt.metadata as _meta
|
23
23
|
import tracdap.rt.exceptions as _ex
|
24
|
-
import tracdap.rt._impl.data as _data
|
25
|
-
import tracdap.rt._impl.logging as _log
|
26
|
-
import tracdap.rt._impl.storage as _storage
|
27
|
-
import tracdap.rt._impl.shim as _shim
|
24
|
+
import tracdap.rt._impl.core.data as _data
|
25
|
+
import tracdap.rt._impl.core.logging as _log
|
26
|
+
import tracdap.rt._impl.core.storage as _storage
|
27
|
+
import tracdap.rt._impl.core.shim as _shim
|
28
28
|
|
29
29
|
|
30
30
|
class SchemaLoader:
|
@@ -30,9 +30,9 @@ import importlib.machinery as _ilm
|
|
30
30
|
import importlib.resources as _ilr
|
31
31
|
|
32
32
|
import tracdap.rt.exceptions as _ex
|
33
|
-
import tracdap.rt._impl.guard_rails as _guard
|
34
|
-
import tracdap.rt._impl.logging as _log
|
35
|
-
import tracdap.rt._impl.util as _util
|
33
|
+
import tracdap.rt._impl.core.guard_rails as _guard
|
34
|
+
import tracdap.rt._impl.core.logging as _log
|
35
|
+
import tracdap.rt._impl.core.util as _util
|
36
36
|
|
37
37
|
|
38
38
|
class _Shim:
|
@@ -29,10 +29,10 @@ import tracdap.rt.metadata as _meta
|
|
29
29
|
import tracdap.rt.config as _cfg
|
30
30
|
import tracdap.rt.exceptions as _ex
|
31
31
|
import tracdap.rt.ext.plugins as plugins
|
32
|
-
import tracdap.rt._impl.data as _data
|
33
|
-
import tracdap.rt._impl.logging as _logging
|
34
|
-
import tracdap.rt._impl.util as _util
|
35
|
-
import tracdap.rt._impl.validation as _val
|
32
|
+
import tracdap.rt._impl.core.data as _data
|
33
|
+
import tracdap.rt._impl.core.logging as _logging
|
34
|
+
import tracdap.rt._impl.core.util as _util
|
35
|
+
import tracdap.rt._impl.core.validation as _val
|
36
36
|
|
37
37
|
# Import storage interfaces (using the internal version, it has extra bits that are not public)
|
38
38
|
from tracdap.rt._impl.ext.storage import *
|
@@ -22,8 +22,8 @@ import pathlib
|
|
22
22
|
|
23
23
|
import tracdap.rt.metadata as meta
|
24
24
|
import tracdap.rt.exceptions as ex
|
25
|
-
import tracdap.rt._impl.logging as log
|
26
|
-
import tracdap.rt._impl.util as util
|
25
|
+
import tracdap.rt._impl.core.logging as log
|
26
|
+
import tracdap.rt._impl.core.util as util
|
27
27
|
|
28
28
|
# _Named placeholder type from API hook is needed for API type checking
|
29
29
|
from tracdap.rt.api.hook import _Named # noqa
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Licensed to the Fintech Open Source Foundation (FINOS) under one or
|
2
|
+
# more contributor license agreements. See the NOTICE file distributed
|
3
|
+
# with this work for additional information regarding copyright ownership.
|
4
|
+
# FINOS licenses this file to you under the Apache License, Version 2.0
|
5
|
+
# (the "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
@@ -13,8 +13,6 @@
|
|
13
13
|
# See the License for the specific language governing permissions and
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
|
-
from __future__ import annotations
|
17
|
-
|
18
16
|
import logging
|
19
17
|
import threading
|
20
18
|
import functools as func
|
@@ -25,9 +23,8 @@ import inspect
|
|
25
23
|
import queue
|
26
24
|
import time
|
27
25
|
|
28
|
-
import tracdap.rt._impl.logging as _logging
|
29
|
-
import tracdap.rt._impl.
|
30
|
-
import tracdap.rt._impl.validation as _val # noqa
|
26
|
+
import tracdap.rt._impl.core.logging as _logging
|
27
|
+
import tracdap.rt._impl.core.validation as _val
|
31
28
|
import tracdap.rt.exceptions as _ex
|
32
29
|
|
33
30
|
|
@@ -119,7 +116,7 @@ class Actor:
|
|
119
116
|
def error(self) -> tp.Optional[Exception]:
|
120
117
|
return self.__ctx.get_error()
|
121
118
|
|
122
|
-
def actors(self) -> ActorContext:
|
119
|
+
def actors(self) -> "ActorContext":
|
123
120
|
return self.__ctx
|
124
121
|
|
125
122
|
def on_start(self):
|
@@ -135,7 +132,7 @@ class Actor:
|
|
135
132
|
class ActorContext:
|
136
133
|
|
137
134
|
def __init__(
|
138
|
-
self, node: ActorNode, message: str,
|
135
|
+
self, node: "ActorNode", message: str,
|
139
136
|
current_actor: ActorId, parent: ActorId, sender: tp.Optional[ActorId]):
|
140
137
|
|
141
138
|
self.__node = node
|
@@ -189,13 +186,13 @@ class ThreadsafeActor(Actor):
|
|
189
186
|
super().__init__()
|
190
187
|
self.__threadsafe: tp.Optional[ThreadsafeContext] = None
|
191
188
|
|
192
|
-
def threadsafe(self) -> ThreadsafeContext:
|
189
|
+
def threadsafe(self) -> "ThreadsafeContext":
|
193
190
|
return self.__threadsafe
|
194
191
|
|
195
192
|
|
196
193
|
class ThreadsafeContext:
|
197
194
|
|
198
|
-
def __init__(self, node: ActorNode):
|
195
|
+
def __init__(self, node: "ActorNode"):
|
199
196
|
self.__node = node
|
200
197
|
self.__id = node.actor_id
|
201
198
|
self.__parent = node.parent.actor_id if node.parent is not None else None
|
@@ -370,8 +367,8 @@ class ActorNode:
|
|
370
367
|
|
371
368
|
def __init__(
|
372
369
|
self, actor_id: ActorId, actor: Actor,
|
373
|
-
parent: tp.Optional[ActorNode],
|
374
|
-
system: ActorSystem,
|
370
|
+
parent: "tp.Optional[ActorNode]",
|
371
|
+
system: "ActorSystem",
|
375
372
|
event_loop: EventLoop):
|
376
373
|
|
377
374
|
self.actor_id = actor_id
|
@@ -484,7 +481,7 @@ class ActorNode:
|
|
484
481
|
|
485
482
|
target_node._accept(msg)
|
486
483
|
|
487
|
-
def _lookup_node(self, target_id: ActorId) -> tp.Optional[ActorNode]:
|
484
|
+
def _lookup_node(self, target_id: ActorId) -> "tp.Optional[ActorNode]":
|
488
485
|
|
489
486
|
# Check self first
|
490
487
|
|
@@ -26,12 +26,12 @@ import tracdap.rt.api as _api
|
|
26
26
|
import tracdap.rt.api.experimental as _eapi
|
27
27
|
import tracdap.rt.metadata as _meta
|
28
28
|
import tracdap.rt.exceptions as _ex
|
29
|
-
import tracdap.rt._impl.data as _data
|
30
|
-
import tracdap.rt._impl.logging as _logging
|
31
|
-
import tracdap.rt._impl.storage as _storage
|
32
|
-
import tracdap.rt._impl.type_system as _types
|
33
|
-
import tracdap.rt._impl.util as _util
|
34
|
-
import tracdap.rt._impl.validation as _val
|
29
|
+
import tracdap.rt._impl.core.data as _data
|
30
|
+
import tracdap.rt._impl.core.logging as _logging
|
31
|
+
import tracdap.rt._impl.core.storage as _storage
|
32
|
+
import tracdap.rt._impl.core.type_system as _types
|
33
|
+
import tracdap.rt._impl.core.util as _util
|
34
|
+
import tracdap.rt._impl.core.validation as _val
|
35
35
|
|
36
36
|
|
37
37
|
class TracContextImpl(_api.TracContext):
|
@@ -22,12 +22,12 @@ import tracdap.rt.api as _api
|
|
22
22
|
import tracdap.rt.config as _cfg
|
23
23
|
import tracdap.rt.metadata as _meta
|
24
24
|
import tracdap.rt.exceptions as _ex
|
25
|
-
import tracdap.rt._impl.config_parser as _cfg_p
|
26
|
-
import tracdap.rt._impl.logging as _logging
|
27
|
-
import tracdap.rt._impl.models as _models
|
28
|
-
import tracdap.rt._impl.storage as _storage
|
29
|
-
import tracdap.rt._impl.type_system as _types
|
30
|
-
import tracdap.rt._impl.util as _util
|
25
|
+
import tracdap.rt._impl.core.config_parser as _cfg_p
|
26
|
+
import tracdap.rt._impl.core.logging as _logging
|
27
|
+
import tracdap.rt._impl.core.models as _models
|
28
|
+
import tracdap.rt._impl.core.storage as _storage
|
29
|
+
import tracdap.rt._impl.core.type_system as _types
|
30
|
+
import tracdap.rt._impl.core.util as _util
|
31
31
|
|
32
32
|
|
33
33
|
DEV_MODE_JOB_CONFIG = [
|
@@ -23,15 +23,15 @@ import typing as tp
|
|
23
23
|
import tracdap.rt.metadata as _meta
|
24
24
|
import tracdap.rt.config as _cfg
|
25
25
|
import tracdap.rt.exceptions as _ex
|
26
|
-
import tracdap.rt.
|
27
|
-
import tracdap.rt.
|
28
|
-
import tracdap.rt.
|
29
|
-
import tracdap.rt._impl.config_parser as _cfg_p
|
30
|
-
import tracdap.rt._impl.data as _data
|
31
|
-
import tracdap.rt._impl.logging as _logging
|
32
|
-
import tracdap.rt._impl.models as _models
|
33
|
-
import tracdap.rt._impl.storage as _storage
|
34
|
-
import tracdap.rt._impl.util as _util
|
26
|
+
import tracdap.rt._impl.exec.actors as _actors
|
27
|
+
import tracdap.rt._impl.exec.graph_builder as _graph
|
28
|
+
import tracdap.rt._impl.exec.functions as _func
|
29
|
+
import tracdap.rt._impl.core.config_parser as _cfg_p
|
30
|
+
import tracdap.rt._impl.core.data as _data
|
31
|
+
import tracdap.rt._impl.core.logging as _logging
|
32
|
+
import tracdap.rt._impl.core.models as _models
|
33
|
+
import tracdap.rt._impl.core.storage as _storage
|
34
|
+
import tracdap.rt._impl.core.util as _util
|
35
35
|
|
36
36
|
from .graph import NodeId
|
37
37
|
|
@@ -23,18 +23,17 @@ import dataclasses as dc # noqa
|
|
23
23
|
import tracdap.rt.api as _api
|
24
24
|
import tracdap.rt.config as _config
|
25
25
|
import tracdap.rt.exceptions as _ex
|
26
|
-
import tracdap.rt.
|
27
|
-
import tracdap.rt.
|
28
|
-
import tracdap.rt._impl.
|
29
|
-
import tracdap.rt._impl.
|
30
|
-
import tracdap.rt._impl.
|
31
|
-
import tracdap.rt._impl.
|
32
|
-
import tracdap.rt._impl.
|
33
|
-
import tracdap.rt._impl.
|
34
|
-
|
35
|
-
|
36
|
-
from tracdap.rt.
|
37
|
-
from tracdap.rt._exec.graph import _T
|
26
|
+
import tracdap.rt._impl.exec.context as _ctx
|
27
|
+
import tracdap.rt._impl.exec.graph_builder as _graph
|
28
|
+
import tracdap.rt._impl.core.type_system as _types
|
29
|
+
import tracdap.rt._impl.core.data as _data
|
30
|
+
import tracdap.rt._impl.core.logging as _logging
|
31
|
+
import tracdap.rt._impl.core.storage as _storage
|
32
|
+
import tracdap.rt._impl.core.models as _models
|
33
|
+
import tracdap.rt._impl.core.util as _util
|
34
|
+
|
35
|
+
from tracdap.rt._impl.exec.graph import *
|
36
|
+
from tracdap.rt._impl.exec.graph import _T
|
38
37
|
|
39
38
|
|
40
39
|
class NodeContext:
|
@@ -17,8 +17,8 @@ import datetime as _dt
|
|
17
17
|
|
18
18
|
import tracdap.rt.config as config
|
19
19
|
import tracdap.rt.exceptions as _ex
|
20
|
-
import tracdap.rt._impl.data as _data
|
21
|
-
import tracdap.rt._impl.util as _util
|
20
|
+
import tracdap.rt._impl.core.data as _data
|
21
|
+
import tracdap.rt._impl.core.util as _util
|
22
22
|
|
23
23
|
from .graph import *
|
24
24
|
|
@@ -19,10 +19,10 @@ import typing as tp
|
|
19
19
|
|
20
20
|
import tracdap.rt.config as config
|
21
21
|
import tracdap.rt.exceptions as ex
|
22
|
-
import tracdap.rt.
|
23
|
-
import tracdap.rt._impl.grpc.codec as codec
|
24
|
-
import tracdap.rt._impl.logging as logging
|
25
|
-
import tracdap.rt._impl.util as util
|
22
|
+
import tracdap.rt._impl.exec.actors as actors
|
23
|
+
import tracdap.rt._impl.grpc.codec as codec
|
24
|
+
import tracdap.rt._impl.core.logging as logging
|
25
|
+
import tracdap.rt._impl.core.util as util
|
26
26
|
|
27
27
|
# Check whether gRPC is installed before trying to load any of the generated modules
|
28
28
|
try:
|
@@ -29,16 +29,16 @@ import tracdap.rt.api as _api
|
|
29
29
|
import tracdap.rt.config as _cfg
|
30
30
|
import tracdap.rt.exceptions as _ex
|
31
31
|
import tracdap.rt.ext.plugins as _plugins
|
32
|
-
import tracdap.rt.
|
33
|
-
import tracdap.rt.
|
34
|
-
import tracdap.rt.
|
35
|
-
import tracdap.rt._impl.
|
36
|
-
import tracdap.rt._impl.
|
37
|
-
import tracdap.rt._impl.
|
38
|
-
import tracdap.rt._impl.
|
39
|
-
import tracdap.rt._impl.
|
40
|
-
import tracdap.rt._impl.
|
41
|
-
import tracdap.rt._impl.
|
32
|
+
import tracdap.rt._impl.core.config_parser as _cparse
|
33
|
+
import tracdap.rt._impl.core.guard_rails as _guard
|
34
|
+
import tracdap.rt._impl.core.logging as _logging
|
35
|
+
import tracdap.rt._impl.core.models as _models
|
36
|
+
import tracdap.rt._impl.core.storage as _storage
|
37
|
+
import tracdap.rt._impl.core.util as _util
|
38
|
+
import tracdap.rt._impl.exec.actors as _actors
|
39
|
+
import tracdap.rt._impl.exec.engine as _engine
|
40
|
+
import tracdap.rt._impl.exec.dev_mode as _dev_mode
|
41
|
+
import tracdap.rt._impl.static_api as _static_api
|
42
42
|
import tracdap.rt._version as _version
|
43
43
|
|
44
44
|
|
@@ -84,8 +84,8 @@ class TracRuntime:
|
|
84
84
|
if isinstance(scratch_dir, str):
|
85
85
|
scratch_dir = pathlib.Path(scratch_dir)
|
86
86
|
|
87
|
-
|
88
|
-
self._log =
|
87
|
+
_logging.configure_logging()
|
88
|
+
self._log = _logging.logger_for_object(self)
|
89
89
|
self._log.info(f"TRAC D.A.P. Python Runtime {trac_version}")
|
90
90
|
|
91
91
|
self._sys_config = sys_config if isinstance(sys_config, _cfg.RuntimeConfig) else None
|
@@ -229,7 +229,7 @@ class TracRuntime:
|
|
229
229
|
self._log.info("Starting the runtime API server...")
|
230
230
|
|
231
231
|
# The server module pulls in all the gRPC dependencies, don't import it unless we have to
|
232
|
-
import tracdap.rt.
|
232
|
+
import tracdap.rt._impl.grpc.server as _server
|
233
233
|
|
234
234
|
self._server = _server.RuntimeApiServer(self._system, self._server_port)
|
235
235
|
self._server.start()
|
tracdap/rt/_impl/static_api.py
CHANGED
@@ -19,10 +19,10 @@ import types as _ts
|
|
19
19
|
import tracdap.rt.api.experimental as _api
|
20
20
|
import tracdap.rt.metadata as _meta
|
21
21
|
import tracdap.rt.exceptions as _ex
|
22
|
-
import tracdap.rt._impl.data as _data
|
23
|
-
import tracdap.rt._impl.schemas as _schemas
|
24
|
-
import tracdap.rt._impl.type_system as _type_system
|
25
|
-
import tracdap.rt._impl.validation as _val
|
22
|
+
import tracdap.rt._impl.core.data as _data
|
23
|
+
import tracdap.rt._impl.core.schemas as _schemas
|
24
|
+
import tracdap.rt._impl.core.type_system as _type_system
|
25
|
+
import tracdap.rt._impl.core.validation as _val
|
26
26
|
|
27
27
|
# Import hook interfaces into this module namespace
|
28
28
|
from tracdap.rt.api.hook import _StaticApiHook # noqa
|
@@ -30,7 +30,7 @@ from tracdap.rt._impl.ext.sql import * # noqa
|
|
30
30
|
import tracdap.rt._plugins._helpers as _helpers
|
31
31
|
|
32
32
|
# TODO: Remove internal references
|
33
|
-
import tracdap.rt._impl.data as _data
|
33
|
+
import tracdap.rt._impl.core.data as _data
|
34
34
|
|
35
35
|
|
36
36
|
class SqlDataStorage(IDataStorageBase[pa.Table, pa.Schema]):
|
tracdap/rt/_version.py
CHANGED
tracdap/rt/config/__init__.py
CHANGED
@@ -25,6 +25,7 @@ from .platform import RouteConfig
|
|
25
25
|
from .platform import RoutingMatch
|
26
26
|
from .platform import RoutingTarget
|
27
27
|
from .platform import DeploymentConfig
|
28
|
+
from .platform import ClientConfig
|
28
29
|
|
29
30
|
from .runtime import RuntimeConfig
|
30
31
|
from .runtime import SparkSettings
|
tracdap/rt/config/platform.py
CHANGED
@@ -61,6 +61,8 @@ class PlatformConfig:
|
|
61
61
|
|
62
62
|
deployment: "DeploymentConfig" = _dc.field(default_factory=lambda: DeploymentConfig())
|
63
63
|
|
64
|
+
clientConfig: "_tp.Dict[str, ClientConfig]" = _dc.field(default_factory=dict)
|
65
|
+
|
64
66
|
|
65
67
|
@_dc.dataclass
|
66
68
|
class MetadataConfig:
|
@@ -154,3 +156,9 @@ class RoutingTarget:
|
|
154
156
|
class DeploymentConfig:
|
155
157
|
|
156
158
|
layout: "DeploymentLayout" = DeploymentLayout.LAYOUT_NOT_SET
|
159
|
+
|
160
|
+
|
161
|
+
@_dc.dataclass
|
162
|
+
class ClientConfig:
|
163
|
+
|
164
|
+
properties: "_tp.Dict[str, str]" = _dc.field(default_factory=dict)
|
tracdap/rt/ext/embed.py
CHANGED
@@ -14,8 +14,8 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
16
|
import tracdap.rt.config as _cfg
|
17
|
-
import tracdap.rt._impl.guard_rails as _guard # noqa
|
18
|
-
import tracdap.rt.
|
17
|
+
import tracdap.rt._impl.core.guard_rails as _guard # noqa
|
18
|
+
import tracdap.rt._impl.runtime as _rt # noqa
|
19
19
|
|
20
20
|
|
21
21
|
class __EmbeddedRuntime:
|
tracdap/rt/ext/plugins.py
CHANGED
@@ -19,8 +19,8 @@ import importlib as _il
|
|
19
19
|
|
20
20
|
import tracdap.rt.config as _cfg
|
21
21
|
import tracdap.rt.exceptions as _ex
|
22
|
-
import tracdap.rt._impl.guard_rails as _guard # noqa
|
23
|
-
import tracdap.rt._impl.logging as _logging # noqa
|
22
|
+
import tracdap.rt._impl.core.guard_rails as _guard # noqa
|
23
|
+
import tracdap.rt._impl.core.logging as _logging # noqa
|
24
24
|
from tracdap.rt.exceptions import EStartup
|
25
25
|
|
26
26
|
|
tracdap/rt/launch/launch.py
CHANGED
@@ -20,9 +20,9 @@ import pathlib as _pathlib
|
|
20
20
|
import typing as _tp
|
21
21
|
|
22
22
|
import tracdap.rt.api as _api
|
23
|
-
import tracdap.rt._impl.config_parser as _cparse # noqa
|
24
|
-
import tracdap.rt._impl.util as _util # noqa
|
25
|
-
import tracdap.rt.
|
23
|
+
import tracdap.rt._impl.core.config_parser as _cparse # noqa
|
24
|
+
import tracdap.rt._impl.core.util as _util # noqa
|
25
|
+
import tracdap.rt._impl.runtime as _runtime # noqa
|
26
26
|
|
27
27
|
from .cli import _cli_args
|
28
28
|
|
@@ -1,35 +1,36 @@
|
|
1
1
|
tracdap/rt/__init__.py,sha256=4aCSENdKNrf9nC1lUULwmHpI1D3K74_4CJzpG_OjA4Q,830
|
2
|
-
tracdap/rt/_version.py,sha256=
|
2
|
+
tracdap/rt/_version.py,sha256=L6pz0CgAVax9rNLkFvlxjJ2NuUy0lAljr1cmYTNAPCk,820
|
3
3
|
tracdap/rt/exceptions.py,sha256=PsB4fExDI-bliqJZD-ESrr9MeLPDW7R5VN_JcWg7TqU,8175
|
4
|
-
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
tracdap/rt/_exec/actors.py,sha256=xbPHp4kC3egHAHELWcbBAhTK2nnBx9EHtjjxprxhPRs,35209
|
6
|
-
tracdap/rt/_exec/context.py,sha256=6eAf41PUU5Bo4TCihbo-H6hlePMiPlovwXBFGLKZ9yU,44304
|
7
|
-
tracdap/rt/_exec/dev_mode.py,sha256=9LAUNE_hKaAKlHyoG7u8oOHqUWjocXOpijsyiaa2Nt0,42620
|
8
|
-
tracdap/rt/_exec/engine.py,sha256=GRLlNS7AmQYdLqy01S_7OPOXorT-FpoZHBqZubO8NdI,48104
|
9
|
-
tracdap/rt/_exec/functions.py,sha256=dSyTMBiGfGceywgryZudK5ebg4APug40n9fWSdJgf48,31806
|
10
|
-
tracdap/rt/_exec/graph.py,sha256=WKlF4ZK9k7EN6Zi-EmMOOWeILLdCHnhQ-pJPueMJ_Fw,11921
|
11
|
-
tracdap/rt/_exec/graph_builder.py,sha256=pHP48iDLhl3bflHlpfhJuZnOcUaxVG_OXLIfMF9EOos,47705
|
12
|
-
tracdap/rt/_exec/runtime.py,sha256=9sAeFAXpLgvRQrKL9yLCiOJPl61fiZrDCjpjfqN4Y1o,16949
|
13
|
-
tracdap/rt/_exec/server.py,sha256=wU62x7yIdRFS9MZy3pZsB4fjUb2Adt0gegQaQu242Bk,12644
|
14
4
|
tracdap/rt/_impl/__init__.py,sha256=nFn00zysNlcEFHQJWs4l6vLm9RS5zsJ_IF9-eRwEXlo,796
|
15
|
-
tracdap/rt/_impl/
|
16
|
-
tracdap/rt/_impl/
|
17
|
-
tracdap/rt/_impl/
|
18
|
-
tracdap/rt/_impl/
|
19
|
-
tracdap/rt/_impl/
|
20
|
-
tracdap/rt/_impl/
|
21
|
-
tracdap/rt/_impl/
|
22
|
-
tracdap/rt/_impl/
|
23
|
-
tracdap/rt/_impl/
|
24
|
-
tracdap/rt/_impl/
|
25
|
-
tracdap/rt/_impl/
|
26
|
-
tracdap/rt/_impl/
|
27
|
-
tracdap/rt/_impl/
|
5
|
+
tracdap/rt/_impl/runtime.py,sha256=FX5dqV-KfyvLfQvksv0RTle8N6kd_6-oaIJqSu32S6w,16955
|
6
|
+
tracdap/rt/_impl/static_api.py,sha256=mtCHRsnviWESyUQR7Bzuugzd7G-cWTWptT2FuluI6nU,10948
|
7
|
+
tracdap/rt/_impl/core/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
8
|
+
tracdap/rt/_impl/core/config_parser.py,sha256=FhFLAJaVvaifj5XSo26tDJqAnq8_-ou4cuvJv7nA46w,23456
|
9
|
+
tracdap/rt/_impl/core/data.py,sha256=7Ln-VZ9zmg__vbnGYVBPCg1Snjq9SI3ZsBNwfWadiNM,45616
|
10
|
+
tracdap/rt/_impl/core/guard_rails.py,sha256=eixt5hqFuAMmPlzDQyWBXSKDYt12d954qfk-lwkdQmI,11611
|
11
|
+
tracdap/rt/_impl/core/logging.py,sha256=AdE_KtZ1HiiEuLwg6C_xcAgq0XULbaxHv3MWuv3GT_A,6505
|
12
|
+
tracdap/rt/_impl/core/models.py,sha256=u2ZIql8Xm1kcG_Bu4lGaAsaLhxYEKxrZAkzYP3lBl88,11103
|
13
|
+
tracdap/rt/_impl/core/repos.py,sha256=BoW4C7Urejr8YPiW8DFe9e5GynLhvhT2iYeUsDDUuTs,2289
|
14
|
+
tracdap/rt/_impl/core/schemas.py,sha256=w9Vk1yNg1-LaAqQkrL1mxY5TCwtKHcJJzpoz23AclwE,7625
|
15
|
+
tracdap/rt/_impl/core/shim.py,sha256=Ek9dlbCSyTyt_B-gCJLR21SRRTZig7XluCCRHFv9pbE,23388
|
16
|
+
tracdap/rt/_impl/core/storage.py,sha256=PBzrPKvz3rNT8rQKvfokx3XKC4EMy6wd7O9z6Jc1XnY,35988
|
17
|
+
tracdap/rt/_impl/core/type_system.py,sha256=tGp0-ordYKeKrSRe0_CzqSHtJnTdK73TtlrxcJsXwtI,12897
|
18
|
+
tracdap/rt/_impl/core/util.py,sha256=Ro23tt4cjvgvPtiya932poPe5xW9q-vbb_t5u9fGV3Y,7620
|
19
|
+
tracdap/rt/_impl/core/validation.py,sha256=Mu8qgdlfqyv5pUV-Ai-kJ58M2O896xyQGrWU_JyeqZQ,23684
|
20
|
+
tracdap/rt/_impl/exec/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
21
|
+
tracdap/rt/_impl/exec/actors.py,sha256=ebPBsIsgok02YM-Ql277Tbz8s-_xDhsteMa3sLV0xFw,35135
|
22
|
+
tracdap/rt/_impl/exec/context.py,sha256=qVdE57bccZ33jTpmAzjrd2sbmlBjNYVFYREpyHqpdbA,44286
|
23
|
+
tracdap/rt/_impl/exec/dev_mode.py,sha256=f6syrvAOIUfiw209ILzIMBLNWWJ0fJp4t-q8m9lvjw8,42602
|
24
|
+
tracdap/rt/_impl/exec/engine.py,sha256=WwSuuAy0PXtI53aIEF85rbHkD4yxX2wvNxwZZSOFBUo,48101
|
25
|
+
tracdap/rt/_impl/exec/functions.py,sha256=hbaDFyxMBe1MJE6F2bNpR6FDxEzCAdhNdm_kUE0XYxA,31752
|
26
|
+
tracdap/rt/_impl/exec/graph.py,sha256=2r2ojPjxBDphyCqfWksaCBEW77o6ZmxZWAKzpAQiopA,11918
|
27
|
+
tracdap/rt/_impl/exec/graph_builder.py,sha256=KLbQuY7TAHUwOTgorTnYvV-h07a1wip5WiRcOR9ZTiM,47699
|
28
28
|
tracdap/rt/_impl/ext/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
29
29
|
tracdap/rt/_impl/ext/sql.py,sha256=wDlSixuDWErDlDSXo55Ti5gpHXJ5oe75Lsb4ttlrUL0,2938
|
30
30
|
tracdap/rt/_impl/ext/storage.py,sha256=HvMHAT5pE6XhUaUfyeZ7ej8JNz2jYsu0UQAEh0Iqnsw,1763
|
31
31
|
tracdap/rt/_impl/grpc/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
32
32
|
tracdap/rt/_impl/grpc/codec.py,sha256=2Uo-j-tbAyD47eCCSpkq6cPN2P80xu-q5v5l_lwMxIU,3970
|
33
|
+
tracdap/rt/_impl/grpc/server.py,sha256=Q18O5yRAT-Jqr9wDXuUraOYhpEH-rfnFk9tvvb-o3Os,12635
|
33
34
|
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=eH1JFEG4KwIhFAxMJfzw8JmpnTSNiY4seT_Mls2J2sM,5127
|
34
35
|
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=78VhnLgm_m6HSgQT0bg7j86O9g8GNMADkm3SotQ39lg,3227
|
35
36
|
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=6DA9EkXMa8KBOG2IUY4TnCmX1wyRJuV40tA9fLgQKyA,8461
|
@@ -67,7 +68,7 @@ tracdap/rt/_plugins/__init__.py,sha256=nFn00zysNlcEFHQJWs4l6vLm9RS5zsJ_IF9-eRwEX
|
|
67
68
|
tracdap/rt/_plugins/_helpers.py,sha256=--AkQUDvC0P_of_FRF5_xPd6er72yWI1G4GNYHUTX8w,6027
|
68
69
|
tracdap/rt/_plugins/config_local.py,sha256=SemksOXRPsUMNoTinjWe00F-Q4o-5X2ql3eswjjVUgM,1944
|
69
70
|
tracdap/rt/_plugins/format_arrow.py,sha256=TQb6WR2MrjXem1gJg4EZQy3NGP-hEe1GneiSkvSAqeM,2397
|
70
|
-
tracdap/rt/_plugins/format_csv.py,sha256=
|
71
|
+
tracdap/rt/_plugins/format_csv.py,sha256=NJ-8XeZH5ZplNUv7iLZBgVXzbXJ9jutU0cqXSdyM-Mo,17015
|
71
72
|
tracdap/rt/_plugins/format_parquet.py,sha256=VwmrcEvaGczzdaWFgmpT9kYDKDk5UwQ6BQF31vm7D-g,2346
|
72
73
|
tracdap/rt/_plugins/repo_git.py,sha256=5snP5IkzEQP_XdhAM5U3IkV8wv-yZGLHzN-d6BL1h2k,10464
|
73
74
|
tracdap/rt/_plugins/repo_local.py,sha256=PZGDeRA2SLJTO-Z-YV9CHeXPUB0zt_fzIElCsw8zR-c,2913
|
@@ -76,7 +77,7 @@ tracdap/rt/_plugins/storage_aws.py,sha256=yxDYw0jL-hXoUgqBlPhL1I_8i8LehOMjZKtG_n
|
|
76
77
|
tracdap/rt/_plugins/storage_azure.py,sha256=G8gwrK_irwqodQmfzzOGiWigp9nQK1RvweDAbWFxwBs,6000
|
77
78
|
tracdap/rt/_plugins/storage_gcp.py,sha256=D0ReW2ZZ6IDqRdF-lowL43ceaupmf4tJGo7jvWHk8DQ,6651
|
78
79
|
tracdap/rt/_plugins/storage_local.py,sha256=KY1CsT0GzjYWo5YYetTnQDWu18RhVrmEGBrEUSQHPKU,15742
|
79
|
-
tracdap/rt/_plugins/storage_sql.py,sha256=
|
80
|
+
tracdap/rt/_plugins/storage_sql.py,sha256=bkOb6QSoHPLRSl7LbZVwXdWpHJnsuLkCU0XMCLlFwtA,15902
|
80
81
|
tracdap/rt/_plugins/storage_sql_dialects.py,sha256=4HWx5Gm50TRf5BTmc3hMREJIFsFgqo4g7wkVEVZzPz0,3550
|
81
82
|
tracdap/rt/api/__init__.py,sha256=QqbrCINnOe0fP8E1496pCjUHKS2ysTRzis3n6CWCLeI,2105
|
82
83
|
tracdap/rt/api/experimental.py,sha256=f0ELh4Xb2fxawF2yH4xms9rh12cFLjg3I8tEs7IWOpU,7942
|
@@ -84,22 +85,22 @@ tracdap/rt/api/file_types.py,sha256=9d8zBI74ALADYKHevGkSnqJlng2Zd4Y7dto4iregnnE,
|
|
84
85
|
tracdap/rt/api/hook.py,sha256=oaVBR3K-A-QHRtBQSHxOVmM0lS2YbDiTHBavUOel0Y8,5054
|
85
86
|
tracdap/rt/api/model_api.py,sha256=ONDU0ocNnejGi2r9nCKTlblqw847Yz4vtGo4M8inc9Q,22435
|
86
87
|
tracdap/rt/api/static_api.py,sha256=XfmWy1dFP3xS7Z4kTtSl8dtAscMF25vfQbHHtpFpvpw,29938
|
87
|
-
tracdap/rt/config/__init__.py,sha256=
|
88
|
+
tracdap/rt/config/__init__.py,sha256=YTHsgUGNbmJnu6sXB9klWPl52wNkpDAWs0Nk40ny3Fk,920
|
88
89
|
tracdap/rt/config/common.py,sha256=deB7MBBB0UGkBXiAv-rARBjma2C-61yP8f4xG7aTPZw,1841
|
89
90
|
tracdap/rt/config/job.py,sha256=B-aVIq0vJUY41-vPuIOLIq4A2hdfL9EJN0X9--nGfcI,656
|
90
|
-
tracdap/rt/config/platform.py,sha256=
|
91
|
+
tracdap/rt/config/platform.py,sha256=jRBobhqD7Qsyg2nz6NsayaHuAfZqyPWgpJJdNRHKdns,3505
|
91
92
|
tracdap/rt/config/result.py,sha256=cKFz9ql_6Ru6qj7UP_VJZ2HJORf52dmi1dnK7eBxD-g,612
|
92
93
|
tracdap/rt/config/runtime.py,sha256=ENzEEiAOEmHOgaTVXO9j6WOX6Vv0cVSdYcFxJb_CTnQ,707
|
93
94
|
tracdap/rt/ext/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
94
95
|
tracdap/rt/ext/config.py,sha256=5LM1IuRjoVe43oLSgn02LAv1uvDl_lBfZrLjjiduCBU,1223
|
95
|
-
tracdap/rt/ext/embed.py,sha256=
|
96
|
-
tracdap/rt/ext/plugins.py,sha256=
|
96
|
+
tracdap/rt/ext/embed.py,sha256=QmxDnoRK8jYN664jqEQFQlYBPX81Q7wpHKdKsRqNiDo,2297
|
97
|
+
tracdap/rt/ext/plugins.py,sha256=AqscyHdgV1AAxaenDR9HJH8fnG-Db72LEk01dZ0OXVM,4610
|
97
98
|
tracdap/rt/ext/repos.py,sha256=gqMSRX8GhhS5kdUwOEPlzrWPw4alTB-tpIJl23wJlss,3297
|
98
99
|
tracdap/rt/ext/storage.py,sha256=O0gvjB2taZpBJ_a3rZfKzh8B1PxUYwPxug6jHNSpm8Q,4980
|
99
100
|
tracdap/rt/launch/__init__.py,sha256=SPIwj5Bwa-IlhrfY1OJspYnL_mPLvz4F9XTAYKeu6IE,907
|
100
101
|
tracdap/rt/launch/__main__.py,sha256=tfr5wL1gHm0oj4tcX6pv6bl-3Z1K7VMpmmNMQzfMFzU,841
|
101
102
|
tracdap/rt/launch/cli.py,sha256=jGySYBawTDFJrhHgwYnplXb9VPcgfrBVB2UURqx5s-s,2638
|
102
|
-
tracdap/rt/launch/launch.py,sha256=
|
103
|
+
tracdap/rt/launch/launch.py,sha256=BogIdacUhIvr_Ay-LU2eik8Y1DvGr-GrOiOi40XqZ1A,7806
|
103
104
|
tracdap/rt/metadata/__init__.py,sha256=jtSK4vSdvdHKMvptmcdIXp7F4-4xYwyPnA6WEQtBF8g,2093
|
104
105
|
tracdap/rt/metadata/common.py,sha256=J24poYPHSJfORPqqhyJGTAmepdhVaT0V0RblWiW9jCI,1404
|
105
106
|
tracdap/rt/metadata/custom.py,sha256=GhCO8xjjsjZzlfSefqmCFX80rXJnxDCDq_STWi0ZL_0,352
|
@@ -116,8 +117,8 @@ tracdap/rt/metadata/stoarge.py,sha256=-WYc3aJskSCF_ETFQDavG3fTck__WPGMOfzWEBv55p
|
|
116
117
|
tracdap/rt/metadata/tag.py,sha256=cjKF5gdNECHDtA9sc09Dc2Q4WNZQA_7iJsUEHSKFXiQ,5097
|
117
118
|
tracdap/rt/metadata/tag_update.py,sha256=I7iDJiHEcSQ2vhOlhIc0fzeOoqTg6N1LJZU1R6tG_8g,3779
|
118
119
|
tracdap/rt/metadata/type.py,sha256=7XOGlLVvxd6DEmKRBYTANBsu9lmxDOsMKE0aNvzsB3M,9568
|
119
|
-
tracdap_runtime-0.8.
|
120
|
-
tracdap_runtime-0.8.
|
121
|
-
tracdap_runtime-0.8.
|
122
|
-
tracdap_runtime-0.8.
|
123
|
-
tracdap_runtime-0.8.
|
120
|
+
tracdap_runtime-0.8.0b3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
121
|
+
tracdap_runtime-0.8.0b3.dist-info/METADATA,sha256=wrM2_G8KJAJHHAQWd3eEwb6JOtrjDmCutubYG_6Ry_o,5024
|
122
|
+
tracdap_runtime-0.8.0b3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
123
|
+
tracdap_runtime-0.8.0b3.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
124
|
+
tracdap_runtime-0.8.0b3.dist-info/RECORD,,
|
tracdap/rt/_exec/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|