runnable 0.2.0__py3-none-any.whl → 0.4.0__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.
- runnable/__init__.py +12 -1
- runnable/catalog.py +2 -2
- runnable/cli.py +5 -5
- runnable/datastore.py +3 -2
- runnable/defaults.py +21 -18
- runnable/entrypoints.py +41 -77
- runnable/executor.py +6 -16
- runnable/extensions/catalog/file_system/implementation.py +2 -1
- runnable/extensions/executor/__init__.py +20 -9
- runnable/extensions/executor/argo/implementation.py +6 -5
- runnable/extensions/executor/argo/specification.yaml +1 -1
- runnable/extensions/executor/k8s_job/implementation_FF.py +4 -4
- runnable/extensions/executor/local/implementation.py +1 -0
- runnable/extensions/executor/local_container/implementation.py +4 -10
- runnable/extensions/executor/mocked/implementation.py +2 -33
- runnable/extensions/nodes.py +40 -60
- runnable/integration.py +2 -2
- runnable/interaction.py +9 -4
- runnable/nodes.py +19 -7
- runnable/parameters.py +1 -1
- runnable/sdk.py +181 -59
- runnable/tasks.py +124 -121
- runnable/utils.py +11 -11
- {runnable-0.2.0.dist-info → runnable-0.4.0.dist-info}/METADATA +53 -53
- {runnable-0.2.0.dist-info → runnable-0.4.0.dist-info}/RECORD +28 -28
- {runnable-0.2.0.dist-info → runnable-0.4.0.dist-info}/WHEEL +1 -1
- {runnable-0.2.0.dist-info → runnable-0.4.0.dist-info}/LICENSE +0 -0
- {runnable-0.2.0.dist-info → runnable-0.4.0.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: runnable
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.0
|
4
4
|
Summary: A Compute agnostic pipelining software
|
5
5
|
Home-page: https://github.com/vijayvammi/runnable
|
6
6
|
License: Apache-2.0
|
@@ -36,53 +36,53 @@ Description-Content-Type: text/markdown
|
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
# Hello from
|
39
|
+
# Hello from runnable
|
40
40
|
|
41
41
|
|
42
42
|
<p align="center">
|
43
|
-
<img src="https://github.com/AstraZeneca/
|
43
|
+
<img src="https://github.com/AstraZeneca/runnable-core/blob/main/assets/logo-readme.png?raw=true" alt="Logo"/>
|
44
44
|
</p>
|
45
45
|
<hr style="border:2px dotted orange">
|
46
46
|
|
47
47
|
<p align="center">
|
48
|
-
<a href="https://pypi.org/project/
|
49
|
-
<a href="https://pypi.org/project/
|
50
|
-
<a href="https://github.com/AstraZeneca/
|
48
|
+
<a href="https://pypi.org/project/runnable/"><img alt="python:" src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue.svg"></a>
|
49
|
+
<a href="https://pypi.org/project/runnable/"><img alt="Pypi" src="https://badge.fury.io/py/runnable.svg"></a>
|
50
|
+
<a href="https://github.com/AstraZeneca/runnable-core/blob/main/LICENSE"><img alt"License" src="https://img.shields.io/badge/license-Apache%202.0-blue.svg"></a>
|
51
51
|
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
52
52
|
<a href="https://github.com/python/mypy"><img alt="MyPy Checked" src="https://www.mypy-lang.org/static/mypy_badge.svg"></a>
|
53
|
-
<a href="https://github.com/AstraZeneca/
|
54
|
-
<a href="https://github.com/AstraZeneca/
|
53
|
+
<a href="https://github.com/AstraZeneca/runnable-core/actions/workflows/release.yaml"><img alt="Tests:" src="https://github.com/AstraZeneca/runnable-core/actions/workflows/release.yaml/badge.svg">
|
54
|
+
<a href="https://github.com/AstraZeneca/runnable-core/actions/workflows/docs.yaml"><img alt="Docs:" src="https://github.com/AstraZeneca/runnable-core/actions/workflows/docs.yaml/badge.svg">
|
55
55
|
</p>
|
56
56
|
<hr style="border:2px dotted orange">
|
57
57
|
|
58
|
-
|
58
|
+
runnable is a simplified workflow definition language that helps in:
|
59
59
|
|
60
|
-
- **Streamlined Design Process:**
|
61
|
-
[stubbed nodes](https://astrazeneca.github.io/
|
62
|
-
[tasks](https://astrazeneca.github.io/
|
63
|
-
in both [yaml](https://astrazeneca.github.io/
|
60
|
+
- **Streamlined Design Process:** runnable enables users to efficiently plan their pipelines with
|
61
|
+
[stubbed nodes](https://astrazeneca.github.io/runnable-core/concepts/stub), along with offering support for various structures such as
|
62
|
+
[tasks](https://astrazeneca.github.io/runnable-core/concepts/task), [parallel branches](https://astrazeneca.github.io/runnable-core/concepts/parallel), and [loops or map branches](https://astrazeneca.github.io/runnable-core/concepts/map)
|
63
|
+
in both [yaml](https://astrazeneca.github.io/runnable-core/concepts/pipeline) or a [python SDK](https://astrazeneca.github.io/runnable-core/sdk) for maximum flexibility.
|
64
64
|
|
65
|
-
- **Incremental Development:** Build your pipeline piece by piece with
|
66
|
-
implementation of tasks as [python functions](https://astrazeneca.github.io/
|
67
|
-
[notebooks](https://astrazeneca.github.io/
|
65
|
+
- **Incremental Development:** Build your pipeline piece by piece with runnable, which allows for the
|
66
|
+
implementation of tasks as [python functions](https://astrazeneca.github.io/runnable-core/concepts/task/#python_functions),
|
67
|
+
[notebooks](https://astrazeneca.github.io/runnable-core/concepts/task/#notebooks), or [shell scripts](https://astrazeneca.github.io/runnable-core/concepts/task/#shell),
|
68
68
|
adapting to the developer's preferred tools and methods.
|
69
69
|
|
70
|
-
- **Robust Testing:** Ensure your pipeline performs as expected with the ability to test using sampled data.
|
71
|
-
also provides the capability to [mock and patch tasks](https://astrazeneca.github.io/
|
70
|
+
- **Robust Testing:** Ensure your pipeline performs as expected with the ability to test using sampled data. runnable
|
71
|
+
also provides the capability to [mock and patch tasks](https://astrazeneca.github.io/runnable-core/configurations/executors/mocked)
|
72
72
|
for thorough evaluation before full-scale deployment.
|
73
73
|
|
74
74
|
- **Seamless Deployment:** Transition from the development stage to production with ease.
|
75
|
-
|
76
|
-
to adapt to different environments, including support for [argo workflows](https://astrazeneca.github.io/
|
75
|
+
runnable simplifies the process by requiring [only configuration changes](https://astrazeneca.github.io/runnable-core/configurations/overview)
|
76
|
+
to adapt to different environments, including support for [argo workflows](https://astrazeneca.github.io/runnable-core/configurations/executors/argo).
|
77
77
|
|
78
|
-
- **Efficient Debugging:** Quickly identify and resolve issues in pipeline execution with
|
79
|
-
debugging features. Retrieve data from failed tasks and [retry failures](https://astrazeneca.github.io/
|
78
|
+
- **Efficient Debugging:** Quickly identify and resolve issues in pipeline execution with runnable's local
|
79
|
+
debugging features. Retrieve data from failed tasks and [retry failures](https://astrazeneca.github.io/runnable-core/concepts/run-log/#retrying_failures)
|
80
80
|
using your chosen debugging tools to maintain a smooth development experience.
|
81
81
|
|
82
|
-
Along with the developer friendly features,
|
83
|
-
such as [data catalog](https://astrazeneca.github.io/
|
84
|
-
[experiment tracking](https://astrazeneca.github.io/
|
85
|
-
and secure [access to secrets](https://astrazeneca.github.io/
|
82
|
+
Along with the developer friendly features, runnable also acts as an interface to production grade concepts
|
83
|
+
such as [data catalog](https://astrazeneca.github.io/runnable-core/concepts/catalog), [reproducibility](https://astrazeneca.github.io/runnable-core/concepts/run-log),
|
84
|
+
[experiment tracking](https://astrazeneca.github.io/runnable-core/concepts/experiment-tracking)
|
85
|
+
and secure [access to secrets](https://astrazeneca.github.io/runnable-core/concepts/secrets).
|
86
86
|
|
87
87
|
<hr style="border:2px dotted orange">
|
88
88
|
|
@@ -95,19 +95,19 @@ and secure [access to secrets](https://astrazeneca.github.io/magnus-core/concept
|
|
95
95
|
|
96
96
|
## Documentation
|
97
97
|
|
98
|
-
[More details about the project and how to use it available here](https://astrazeneca.github.io/
|
98
|
+
[More details about the project and how to use it available here](https://astrazeneca.github.io/runnable-core/).
|
99
99
|
|
100
100
|
<hr style="border:2px dotted orange">
|
101
101
|
|
102
102
|
## Installation
|
103
103
|
|
104
|
-
The minimum python version that
|
104
|
+
The minimum python version that runnable supports is 3.8
|
105
105
|
|
106
106
|
```shell
|
107
|
-
pip install
|
107
|
+
pip install runnable
|
108
108
|
```
|
109
109
|
|
110
|
-
Please look at the [installation guide](https://astrazeneca.github.io/
|
110
|
+
Please look at the [installation guide](https://astrazeneca.github.io/runnable-core/usage)
|
111
111
|
for more information.
|
112
112
|
|
113
113
|
<hr style="border:2px dotted orange">
|
@@ -153,7 +153,7 @@ def return_parameter() -> Parameter:
|
|
153
153
|
def display_parameter(x: int, y: InnerModel):
|
154
154
|
"""
|
155
155
|
Annotating the arguments of the function is important for
|
156
|
-
|
156
|
+
runnable to understand the type of parameters you want.
|
157
157
|
|
158
158
|
Input args can be a pydantic model or the individual attributes.
|
159
159
|
"""
|
@@ -174,7 +174,7 @@ my_param = return_parameter()
|
|
174
174
|
display_parameter(my_param.x, my_param.y)
|
175
175
|
```
|
176
176
|
|
177
|
-
### Orchestration using
|
177
|
+
### Orchestration using runnable
|
178
178
|
|
179
179
|
<table>
|
180
180
|
<tr>
|
@@ -189,7 +189,7 @@ Example present at: ```examples/python-tasks.py```
|
|
189
189
|
Run it as: ```python examples/python-tasks.py```
|
190
190
|
|
191
191
|
```python
|
192
|
-
from
|
192
|
+
from runnable import Pipeline, Task
|
193
193
|
|
194
194
|
def main():
|
195
195
|
step1 = Task(
|
@@ -224,7 +224,7 @@ if __name__ == "__main__":
|
|
224
224
|
Example present at: ```examples/python-tasks.yaml```
|
225
225
|
|
226
226
|
|
227
|
-
Execute via the cli: ```
|
227
|
+
Execute via the cli: ```runnable execute -f examples/python-tasks.yaml```
|
228
228
|
|
229
229
|
```yaml
|
230
230
|
dag:
|
@@ -267,9 +267,9 @@ No code change, just change the configuration.
|
|
267
267
|
executor:
|
268
268
|
type: "argo"
|
269
269
|
config:
|
270
|
-
image:
|
270
|
+
image: runnable:demo
|
271
271
|
persistent_volumes:
|
272
|
-
- name:
|
272
|
+
- name: runnable-volume
|
273
273
|
mount_path: /mnt
|
274
274
|
|
275
275
|
run_log_store:
|
@@ -278,9 +278,9 @@ run_log_store:
|
|
278
278
|
log_folder: /mnt/run_log_store
|
279
279
|
```
|
280
280
|
|
281
|
-
More details can be found in [argo configuration](https://astrazeneca.github.io/
|
281
|
+
More details can be found in [argo configuration](https://astrazeneca.github.io/runnable-core/configurations/executors/argo).
|
282
282
|
|
283
|
-
Execute the code as ```
|
283
|
+
Execute the code as ```runnable execute -f examples/python-tasks.yaml -c examples/configs/argo-config.yam```
|
284
284
|
|
285
285
|
<details>
|
286
286
|
<summary>Expand</summary>
|
@@ -289,12 +289,12 @@ Execute the code as ```magnus execute -f examples/python-tasks.yaml -c examples/
|
|
289
289
|
apiVersion: argoproj.io/v1alpha1
|
290
290
|
kind: Workflow
|
291
291
|
metadata:
|
292
|
-
generateName:
|
292
|
+
generateName: runnable-dag-
|
293
293
|
annotations: {}
|
294
294
|
labels: {}
|
295
295
|
spec:
|
296
296
|
activeDeadlineSeconds: 172800
|
297
|
-
entrypoint:
|
297
|
+
entrypoint: runnable-dag
|
298
298
|
podGC:
|
299
299
|
strategy: OnPodCompletion
|
300
300
|
retryStrategy:
|
@@ -306,7 +306,7 @@ spec:
|
|
306
306
|
maxDuration: '3600'
|
307
307
|
serviceAccountName: default-editor
|
308
308
|
templates:
|
309
|
-
- name:
|
309
|
+
- name: runnable-dag
|
310
310
|
failFast: true
|
311
311
|
dag:
|
312
312
|
tasks:
|
@@ -321,9 +321,9 @@ spec:
|
|
321
321
|
depends: step-2-task-772vg3.Succeeded
|
322
322
|
- name: step-1-task-uvdp7h
|
323
323
|
container:
|
324
|
-
image:
|
324
|
+
image: runnable:demo
|
325
325
|
command:
|
326
|
-
-
|
326
|
+
- runnable
|
327
327
|
- execute_single_node
|
328
328
|
- '{{workflow.parameters.run_id}}'
|
329
329
|
- step%1
|
@@ -346,9 +346,9 @@ spec:
|
|
346
346
|
cpu: 250m
|
347
347
|
- name: step-2-task-772vg3
|
348
348
|
container:
|
349
|
-
image:
|
349
|
+
image: runnable:demo
|
350
350
|
command:
|
351
|
-
-
|
351
|
+
- runnable
|
352
352
|
- execute_single_node
|
353
353
|
- '{{workflow.parameters.run_id}}'
|
354
354
|
- step%2
|
@@ -371,9 +371,9 @@ spec:
|
|
371
371
|
cpu: 250m
|
372
372
|
- name: success-success-igzq2e
|
373
373
|
container:
|
374
|
-
image:
|
374
|
+
image: runnable:demo
|
375
375
|
command:
|
376
|
-
-
|
376
|
+
- runnable
|
377
377
|
- execute_single_node
|
378
378
|
- '{{workflow.parameters.run_id}}'
|
379
379
|
- success
|
@@ -404,7 +404,7 @@ spec:
|
|
404
404
|
volumes:
|
405
405
|
- name: executor-0
|
406
406
|
persistentVolumeClaim:
|
407
|
-
claimName:
|
407
|
+
claimName: runnable-volume
|
408
408
|
|
409
409
|
```
|
410
410
|
|
@@ -415,23 +415,23 @@ spec:
|
|
415
415
|
### Linear
|
416
416
|
|
417
417
|
A simple linear pipeline with tasks either
|
418
|
-
[python functions](https://astrazeneca.github.io/
|
419
|
-
[notebooks](https://astrazeneca.github.io/
|
418
|
+
[python functions](https://astrazeneca.github.io/runnable-core/concepts/task/#python_functions),
|
419
|
+
[notebooks](https://astrazeneca.github.io/runnable-core/concepts/task/#notebooks), or [shell scripts](https://astrazeneca.github.io/runnable-core/concepts/task/#shell)
|
420
420
|
|
421
421
|
[](https://mermaid.live/edit#pako:eNpl0bFuwyAQBuBXQVdZTqTESpxMDJ0ytkszhgwnOCcoNo4OaFVZfvcSx20tGSQ4fn0wHB3o1hBIyLJOWGeDFJ3Iq7r90lfkkA9HHfmTUpnX1hFyLvrHzDLl_qB4-1BOOZGGD3TfSikvTDSNFqdj2sT2vBTr9euQlXNWjqycsN2c7UZWFMUE7udwP0L3y6JenNKiyfvz8t8_b-gavT9QJYY0PcDtjeTLptrAChriBq1JzeoeWkG4UkMKZCoN8k2Bcn1yGEN7_HYaZOBIK4h3g4EOFi-MDcgKa59SMja0_P7s_vAJ_Q_YOH6o)
|
422
422
|
|
423
|
-
### [Parallel branches](https://astrazeneca.github.io/
|
423
|
+
### [Parallel branches](https://astrazeneca.github.io/runnable-core/concepts/parallel)
|
424
424
|
|
425
425
|
Execute branches in parallel
|
426
426
|
|
427
427
|
[](https://mermaid.live/edit#pako:eNp9k01rwzAMhv-K8S4ZtJCzDzuMLmWwwkh2KMQ7eImShiZ2sB1KKf3vs52PpsWNT7LySHqlyBeciRwwwUUtTtmBSY2-YsopR8MpQUfAdCdBBekWNBpvv6-EkFICzGAtWcUTDW3wYy20M7lr5QGBK2j-anBAkH4M1z6grnjpy17xAiTwDII07jj6HK8-VnVZBspITnpjztyoVkLLJOy3Qfrdm6gQEu2370Io7WLORo84PbRoA_oOl9BBg4UHbHR58UkMWq_fxjrOnhLRx1nH0SgkjlBjh7ekxNKGc0NelDLknhePI8qf7MVNr_31nm1wwNTeM2Ao6pmf-3y3Mp7WlqA7twOnXfKs17zt-6azmim1gQL1A0NKS3EE8hKZE4Yezm3chIVFiFe4AdmwKjdv7mIjKNYHaIBiYsycySPFlF8NxzotkjPPMNGygxXu2pxp2FSslKzBpGC1Ml7IKy3krn_E7i1f_wEayTcn)
|
428
428
|
|
429
|
-
### [loops or map](https://astrazeneca.github.io/
|
429
|
+
### [loops or map](https://astrazeneca.github.io/runnable-core/concepts/map)
|
430
430
|
|
431
431
|
Execute a pipeline over an iterable parameter.
|
432
432
|
|
433
433
|
[](https://mermaid.live/edit#pako:eNqVlF1rwjAUhv9KyG4qKNR-3AS2m8nuBgN3Z0Sy5tQG20SSdE7E_76kVVEr2CY3Ied9Tx6Sk3PAmeKACc5LtcsKpi36nlGZFbXciHwfLN79CuWiBLMcEULWGkBSaeosA2OCxbxdXMd89Get2bZASsLiSyuvQE2mJZXIjW27t2rOmQZ3Gp9rD6UjatWnwy7q6zPPukd50WTydmemEiS_QbQ79RwxGoQY9UaMuojRA8TCXexzyHgQZNwbMu5Cxl3IXNX6OWMyiDHpzZh0GZMHjOK3xz2mgxjT3oxplzG9MPp5_nVOhwJjteDwOg3HyFj3L1dCcvh7DUc-iftX18n6Waet1xX8cG908vpKHO6OW7cvkeHm5GR2b3drdvaSGTODHLW37mxabYC8fLgRhlfxpjNdwmEets-Dx7gCXTHBXQc8-D2KbQEVUEzckjO9oZjKo9Ox2qr5XmaYWF3DGNdbzizMBHOVVWGSs9K4XeDCKv3ZttSmsx7_AYa341E)
|
434
434
|
|
435
|
-
### [Arbitrary nesting](https://astrazeneca.github.io/
|
435
|
+
### [Arbitrary nesting](https://astrazeneca.github.io/runnable-core/concepts/nesting/)
|
436
436
|
Any nesting of parallel within map and so on.
|
437
437
|
|
@@ -1,37 +1,37 @@
|
|
1
|
-
runnable/__init__.py,sha256=
|
2
|
-
runnable/catalog.py,sha256=
|
3
|
-
runnable/cli.py,sha256=
|
1
|
+
runnable/__init__.py,sha256=v0QgHL7uvEWKecAOJ_bVYHYM9O5B4xCICCLZVBO6Ci8,923
|
2
|
+
runnable/catalog.py,sha256=OUaQ73DWfTsMmq2sKlBn0aDz031mupladNGVuF3pWm0,3985
|
3
|
+
runnable/cli.py,sha256=2NkFHfo1n1Aeq0gPO-SW_T_GsEY1qS1-IdoAJR_0Qhc,9800
|
4
4
|
runnable/context.py,sha256=rP22KqTsLrnpVTe05W80W2jMoAFm8NfkVkYY49Mu2ZA,1025
|
5
|
-
runnable/datastore.py,sha256=
|
6
|
-
runnable/defaults.py,sha256=
|
7
|
-
runnable/entrypoints.py,sha256=
|
5
|
+
runnable/datastore.py,sha256=baSocsV8X25C7ZEACIoAb2344M4SV3s6v7guMDZt_3k,23569
|
6
|
+
runnable/defaults.py,sha256=0Hct5MtHHALyrXsRH-CAxyFngP8-EHG3wDZmeE2uWII,4672
|
7
|
+
runnable/entrypoints.py,sha256=QbABjy2PBU4tuhFtZ5nyt2hPecNsl4YNmXpbpAZeOFo,15534
|
8
8
|
runnable/exceptions.py,sha256=R__RzUWs7Ow7m7yqawi2w09XXI4OqmA67yeXkECM0xw,2419
|
9
|
-
runnable/executor.py,sha256=
|
9
|
+
runnable/executor.py,sha256=rdupW7LJk2CtwA52vIRIa-AS8hMvMqfvOIakIyr7rxk,16141
|
10
10
|
runnable/experiment_tracker.py,sha256=bX2Vr73f3bsdnWqxjMSSiKA-WwqkUHfUzJQqZoQBpvY,3668
|
11
11
|
runnable/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
runnable/extensions/catalog/__init__.py,sha256=uXZ6D-Myr_J4HnBA4F5Hd7LZ0IAjQiFQYxRhMzejhQc,761
|
13
13
|
runnable/extensions/catalog/file_system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
runnable/extensions/catalog/file_system/implementation.py,sha256=
|
14
|
+
runnable/extensions/catalog/file_system/implementation.py,sha256=UNrJFV_tyMpknFKoCMXbBt-CWL4UpDxcwnMh43zVfpc,8958
|
15
15
|
runnable/extensions/catalog/k8s_pvc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
runnable/extensions/catalog/k8s_pvc/implementation.py,sha256=oJDDI0APT7lrtjWmzYJRDHLGn3Vhbn2MdFSRYvFBUpY,436
|
17
17
|
runnable/extensions/catalog/k8s_pvc/integration.py,sha256=OfrHbNFN8sR-wsVa4os3ajmWJFSd5H4KOHGVAmjRZTQ,1850
|
18
|
-
runnable/extensions/executor/__init__.py,sha256=
|
18
|
+
runnable/extensions/executor/__init__.py,sha256=3A4uEDTiSDax4cLchaVh1KBaeDBk4qxKG6iUMVdp1Hk,30739
|
19
19
|
runnable/extensions/executor/argo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
runnable/extensions/executor/argo/implementation.py,sha256=
|
21
|
-
runnable/extensions/executor/argo/specification.yaml,sha256=
|
20
|
+
runnable/extensions/executor/argo/implementation.py,sha256=wlDSD5RfZmrdQ65abXTZSdh4KUGv-IzQtbHVtDXNUgQ,43795
|
21
|
+
runnable/extensions/executor/argo/specification.yaml,sha256=wXQcm2gOQYqy-IOQIhucohS32ZrHKCfGA5zZ0RraPYc,1276
|
22
22
|
runnable/extensions/executor/k8s_job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
runnable/extensions/executor/k8s_job/implementation_FF.py,sha256=
|
23
|
+
runnable/extensions/executor/k8s_job/implementation_FF.py,sha256=1IfVG1GRcJcVFzQ-WhkJsmzdJuj51QMxXylY9UrWM0U,10259
|
24
24
|
runnable/extensions/executor/k8s_job/integration_FF.py,sha256=pG6HKhPMgCRIgu1PAnBvsfJQE1FxcjuSiC2I-Hn5sWo,2165
|
25
25
|
runnable/extensions/executor/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
runnable/extensions/executor/local/implementation.py,sha256=
|
26
|
+
runnable/extensions/executor/local/implementation.py,sha256=r9dSf2lSBGHihbGNhq_GPe3fHKLjf4KI3l-B4w2b5Ls,2468
|
27
27
|
runnable/extensions/executor/local_container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
runnable/extensions/executor/local_container/implementation.py,sha256=
|
28
|
+
runnable/extensions/executor/local_container/implementation.py,sha256=6kYMgdgE5JxZkVAidxsBSpqkHvyKMfEctgZWSZQEpXA,13979
|
29
29
|
runnable/extensions/executor/mocked/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
runnable/extensions/executor/mocked/implementation.py,sha256=
|
30
|
+
runnable/extensions/executor/mocked/implementation.py,sha256=LmW7IgO5a9dRd7Okf8-nivg3kyIUYYHbOmop8wsv010,7366
|
31
31
|
runnable/extensions/experiment_tracker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
runnable/extensions/experiment_tracker/mlflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
33
|
runnable/extensions/experiment_tracker/mlflow/implementation.py,sha256=sc1Wm1LCf7wBX0BYVx3YVdwsR72AE0qIrzl7cEfIl58,3045
|
34
|
-
runnable/extensions/nodes.py,sha256
|
34
|
+
runnable/extensions/nodes.py,sha256=-l_R2qJ1P0NdSpRu3U_MM5QKtssU5DqIyx0WLHhAsnY,26787
|
35
35
|
runnable/extensions/run_log_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
36
|
runnable/extensions/run_log_store/chunked_file_system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
runnable/extensions/run_log_store/chunked_file_system/implementation.py,sha256=koHNG-Cv7mpt-rTNC3tiLBR8HcjnQ9L-EvQ4dtKkGRA,3170
|
@@ -52,18 +52,18 @@ runnable/extensions/secrets/dotenv/implementation.py,sha256=3J5pofWahdZbnwnETwps
|
|
52
52
|
runnable/extensions/secrets/env_secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
53
|
runnable/extensions/secrets/env_secrets/implementation.py,sha256=5XiHdJvIr0-jkl4fGfEf26UsgE5Q2Z4oCc0RwjlJdJA,1236
|
54
54
|
runnable/graph.py,sha256=w7qEnTuh6lvfeVSAbqNlwMufPqWL9espJI5s_G2prHM,15871
|
55
|
-
runnable/integration.py,sha256=
|
56
|
-
runnable/interaction.py,sha256=
|
55
|
+
runnable/integration.py,sha256=_jEm5PXl8pbvCmUGKjtssfZ2YtYnMzuRnjr2NySMqzs,7176
|
56
|
+
runnable/interaction.py,sha256=DVDQJuMm-n9tT-PDPx6AuUhYvWZX6-jmsHUQX0_TWHw,13003
|
57
57
|
runnable/names.py,sha256=vn92Kv9ANROYSZX6Z4z1v_WA3WiEdIYmG6KEStBFZug,8134
|
58
|
-
runnable/nodes.py,sha256=
|
59
|
-
runnable/parameters.py,sha256=
|
58
|
+
runnable/nodes.py,sha256=7ztYtTf4GthbutwR56lDqu4ANDLrN5zHqJNvLD_PTOo,16458
|
59
|
+
runnable/parameters.py,sha256=IT-7OUbYmRQuVtzAsG6L7Q4TkGaovmsQ4ErStcSXwmQ,6434
|
60
60
|
runnable/pickler.py,sha256=rrFRc6SMrV6Pxd9r7aMtUou8z-HLL1un4QfH_non4XE,2679
|
61
|
-
runnable/sdk.py,sha256=
|
61
|
+
runnable/sdk.py,sha256=UVxXV-eYnWZnGKOsx7CA8gAI-ArOQAFdF_or_apauD0,22292
|
62
62
|
runnable/secrets.py,sha256=dakb7WRloWVo-KpQp6Vy4rwFdGi58BTlT4OifQY106I,2324
|
63
|
-
runnable/tasks.py,sha256=
|
64
|
-
runnable/utils.py,sha256=
|
65
|
-
runnable-0.
|
66
|
-
runnable-0.
|
67
|
-
runnable-0.
|
68
|
-
runnable-0.
|
69
|
-
runnable-0.
|
63
|
+
runnable/tasks.py,sha256=eG-L8mB5Kp4m-HChwvcZkXkueS9IA7VQ-tQKmr87lrQ,13604
|
64
|
+
runnable/utils.py,sha256=jfgx2_lYCCKUASM7vEGZXdizRFg6EvV9pyZSlhhMKMk,19801
|
65
|
+
runnable-0.4.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
66
|
+
runnable-0.4.0.dist-info/METADATA,sha256=1zNN1GWpwwS2VsHE5K2b34LknyPZmRt1kAHourIA_m8,16185
|
67
|
+
runnable-0.4.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
68
|
+
runnable-0.4.0.dist-info/entry_points.txt,sha256=wmEeo0n87KXEXxYLN6vzrd-690-1UhE0niJHMhz7f-o,1640
|
69
|
+
runnable-0.4.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|