digitalhub 0.13.0b2__py3-none-any.whl → 0.13.0b4__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 digitalhub might be problematic. Click here for more details.
- digitalhub/__init__.py +1 -1
- digitalhub/context/api.py +5 -5
- digitalhub/context/builder.py +3 -5
- digitalhub/context/context.py +9 -1
- digitalhub/entities/_base/material/entity.py +3 -3
- digitalhub/entities/_commons/metrics.py +64 -30
- digitalhub/entities/_commons/utils.py +36 -9
- digitalhub/entities/_processors/base.py +150 -79
- digitalhub/entities/_processors/context.py +363 -212
- digitalhub/entities/_processors/utils.py +74 -30
- digitalhub/entities/artifact/utils.py +28 -13
- digitalhub/entities/dataitem/crud.py +10 -2
- digitalhub/entities/dataitem/table/entity.py +3 -3
- digitalhub/entities/dataitem/utils.py +84 -35
- digitalhub/entities/model/utils.py +28 -13
- digitalhub/entities/task/_base/models.py +12 -3
- digitalhub/factory/factory.py +25 -3
- digitalhub/factory/utils.py +11 -3
- digitalhub/runtimes/_base.py +1 -1
- digitalhub/runtimes/builder.py +18 -1
- digitalhub/stores/client/__init__.py +12 -0
- digitalhub/stores/client/_base/api_builder.py +14 -0
- digitalhub/stores/client/_base/client.py +93 -0
- digitalhub/stores/client/_base/key_builder.py +28 -0
- digitalhub/stores/client/_base/params_builder.py +14 -0
- digitalhub/stores/client/api.py +10 -5
- digitalhub/stores/client/builder.py +3 -1
- digitalhub/stores/client/dhcore/api_builder.py +17 -0
- digitalhub/stores/client/dhcore/client.py +276 -58
- digitalhub/stores/client/dhcore/configurator.py +336 -141
- digitalhub/stores/client/dhcore/error_parser.py +35 -1
- digitalhub/stores/client/dhcore/params_builder.py +113 -17
- digitalhub/stores/client/dhcore/utils.py +32 -14
- digitalhub/stores/client/local/api_builder.py +17 -0
- digitalhub/stores/client/local/client.py +6 -8
- digitalhub/stores/credentials/api.py +8 -8
- digitalhub/stores/credentials/configurator.py +176 -3
- digitalhub/stores/credentials/enums.py +17 -3
- digitalhub/stores/credentials/handler.py +73 -45
- digitalhub/stores/credentials/ini_module.py +59 -27
- digitalhub/stores/credentials/store.py +33 -1
- digitalhub/stores/data/_base/store.py +8 -3
- digitalhub/stores/data/api.py +20 -16
- digitalhub/stores/data/builder.py +69 -13
- digitalhub/stores/data/s3/configurator.py +64 -23
- digitalhub/stores/data/s3/store.py +30 -27
- digitalhub/stores/data/s3/utils.py +9 -9
- digitalhub/stores/data/sql/configurator.py +76 -25
- digitalhub/stores/data/sql/store.py +180 -91
- digitalhub/utils/exceptions.py +6 -0
- digitalhub/utils/file_utils.py +53 -30
- digitalhub/utils/generic_utils.py +41 -33
- digitalhub/utils/git_utils.py +24 -14
- digitalhub/utils/io_utils.py +19 -18
- digitalhub/utils/uri_utils.py +31 -31
- {digitalhub-0.13.0b2.dist-info → digitalhub-0.13.0b4.dist-info}/METADATA +1 -1
- {digitalhub-0.13.0b2.dist-info → digitalhub-0.13.0b4.dist-info}/RECORD +60 -61
- digitalhub/entities/_commons/types.py +0 -9
- {digitalhub-0.13.0b2.dist-info → digitalhub-0.13.0b4.dist-info}/WHEEL +0 -0
- {digitalhub-0.13.0b2.dist-info → digitalhub-0.13.0b4.dist-info}/licenses/AUTHORS +0 -0
- {digitalhub-0.13.0b2.dist-info → digitalhub-0.13.0b4.dist-info}/licenses/LICENSE +0 -0
digitalhub/utils/uri_utils.py
CHANGED
|
@@ -13,7 +13,7 @@ from digitalhub.utils.generic_utils import list_enum
|
|
|
13
13
|
|
|
14
14
|
class S3Schemes(Enum):
|
|
15
15
|
"""
|
|
16
|
-
S3 schemes.
|
|
16
|
+
S3 URI schemes.
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
S3 = "s3"
|
|
@@ -24,7 +24,7 @@ class S3Schemes(Enum):
|
|
|
24
24
|
|
|
25
25
|
class LocalSchemes(Enum):
|
|
26
26
|
"""
|
|
27
|
-
Local schemes.
|
|
27
|
+
Local URI schemes.
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
LOCAL = ""
|
|
@@ -32,7 +32,7 @@ class LocalSchemes(Enum):
|
|
|
32
32
|
|
|
33
33
|
class InvalidLocalSchemes(Enum):
|
|
34
34
|
"""
|
|
35
|
-
|
|
35
|
+
Invalid local URI schemes.
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
38
|
FILE = "file"
|
|
@@ -41,7 +41,7 @@ class InvalidLocalSchemes(Enum):
|
|
|
41
41
|
|
|
42
42
|
class RemoteSchemes(Enum):
|
|
43
43
|
"""
|
|
44
|
-
Remote schemes.
|
|
44
|
+
Remote URI schemes.
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
HTTP = "http"
|
|
@@ -52,7 +52,7 @@ class RemoteSchemes(Enum):
|
|
|
52
52
|
|
|
53
53
|
class SqlSchemes(Enum):
|
|
54
54
|
"""
|
|
55
|
-
|
|
55
|
+
SQL URI schemes.
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
SQL = "sql"
|
|
@@ -61,7 +61,7 @@ class SqlSchemes(Enum):
|
|
|
61
61
|
|
|
62
62
|
class GitSchemes(Enum):
|
|
63
63
|
"""
|
|
64
|
-
Git schemes.
|
|
64
|
+
Git URI schemes.
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
67
|
GIT = "git"
|
|
@@ -71,7 +71,7 @@ class GitSchemes(Enum):
|
|
|
71
71
|
|
|
72
72
|
class SchemeCategory(Enum):
|
|
73
73
|
"""
|
|
74
|
-
|
|
74
|
+
URI scheme categories.
|
|
75
75
|
"""
|
|
76
76
|
|
|
77
77
|
S3 = "s3"
|
|
@@ -83,17 +83,17 @@ class SchemeCategory(Enum):
|
|
|
83
83
|
|
|
84
84
|
def map_uri_scheme(uri: str) -> str:
|
|
85
85
|
"""
|
|
86
|
-
Map
|
|
86
|
+
Map a URI scheme to a common scheme category.
|
|
87
87
|
|
|
88
88
|
Parameters
|
|
89
89
|
----------
|
|
90
90
|
uri : str
|
|
91
|
-
URI.
|
|
91
|
+
URI string.
|
|
92
92
|
|
|
93
93
|
Returns
|
|
94
94
|
-------
|
|
95
95
|
str
|
|
96
|
-
Mapped scheme
|
|
96
|
+
Mapped scheme category (e.g., 'local', 'remote', 's3', 'sql', 'git').
|
|
97
97
|
|
|
98
98
|
Raises
|
|
99
99
|
------
|
|
@@ -122,118 +122,118 @@ def map_uri_scheme(uri: str) -> str:
|
|
|
122
122
|
|
|
123
123
|
def has_local_scheme(uri: str) -> bool:
|
|
124
124
|
"""
|
|
125
|
-
Check if
|
|
125
|
+
Check if a URI has a local scheme.
|
|
126
126
|
|
|
127
127
|
Parameters
|
|
128
128
|
----------
|
|
129
129
|
uri : str
|
|
130
|
-
|
|
130
|
+
URI string.
|
|
131
131
|
|
|
132
132
|
Returns
|
|
133
133
|
-------
|
|
134
134
|
bool
|
|
135
|
-
True if
|
|
135
|
+
True if the URI is local, False otherwise.
|
|
136
136
|
"""
|
|
137
137
|
return map_uri_scheme(uri) == SchemeCategory.LOCAL.value
|
|
138
138
|
|
|
139
139
|
|
|
140
140
|
def has_remote_scheme(uri: str) -> bool:
|
|
141
141
|
"""
|
|
142
|
-
Check if
|
|
142
|
+
Check if a URI has a remote scheme.
|
|
143
143
|
|
|
144
144
|
Parameters
|
|
145
145
|
----------
|
|
146
146
|
uri : str
|
|
147
|
-
|
|
147
|
+
URI string.
|
|
148
148
|
|
|
149
149
|
Returns
|
|
150
150
|
-------
|
|
151
151
|
bool
|
|
152
|
-
True if
|
|
152
|
+
True if the URI is remote, False otherwise.
|
|
153
153
|
"""
|
|
154
154
|
return map_uri_scheme(uri) == SchemeCategory.REMOTE.value
|
|
155
155
|
|
|
156
156
|
|
|
157
157
|
def has_s3_scheme(uri: str) -> bool:
|
|
158
158
|
"""
|
|
159
|
-
Check if
|
|
159
|
+
Check if a URI has an S3 scheme.
|
|
160
160
|
|
|
161
161
|
Parameters
|
|
162
162
|
----------
|
|
163
163
|
uri : str
|
|
164
|
-
|
|
164
|
+
URI string.
|
|
165
165
|
|
|
166
166
|
Returns
|
|
167
167
|
-------
|
|
168
168
|
bool
|
|
169
|
-
True if
|
|
169
|
+
True if the URI is S3, False otherwise.
|
|
170
170
|
"""
|
|
171
171
|
return map_uri_scheme(uri) == SchemeCategory.S3.value
|
|
172
172
|
|
|
173
173
|
|
|
174
174
|
def has_sql_scheme(uri: str) -> bool:
|
|
175
175
|
"""
|
|
176
|
-
Check if
|
|
176
|
+
Check if a URI has an SQL scheme.
|
|
177
177
|
|
|
178
178
|
Parameters
|
|
179
179
|
----------
|
|
180
180
|
uri : str
|
|
181
|
-
|
|
181
|
+
URI string.
|
|
182
182
|
|
|
183
183
|
Returns
|
|
184
184
|
-------
|
|
185
185
|
bool
|
|
186
|
-
True if
|
|
186
|
+
True if the URI is SQL, False otherwise.
|
|
187
187
|
"""
|
|
188
188
|
return map_uri_scheme(uri) == SchemeCategory.SQL.value
|
|
189
189
|
|
|
190
190
|
|
|
191
191
|
def has_git_scheme(uri: str) -> bool:
|
|
192
192
|
"""
|
|
193
|
-
Check if
|
|
193
|
+
Check if a URI has a git scheme.
|
|
194
194
|
|
|
195
195
|
Parameters
|
|
196
196
|
----------
|
|
197
197
|
uri : str
|
|
198
|
-
|
|
198
|
+
URI string.
|
|
199
199
|
|
|
200
200
|
Returns
|
|
201
201
|
-------
|
|
202
202
|
bool
|
|
203
|
-
True if
|
|
203
|
+
True if the URI is git, False otherwise.
|
|
204
204
|
"""
|
|
205
205
|
return map_uri_scheme(uri) == SchemeCategory.GIT.value
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
def has_zip_scheme(uri: str) -> bool:
|
|
209
209
|
"""
|
|
210
|
-
Check if
|
|
210
|
+
Check if a URI has a zip scheme.
|
|
211
211
|
|
|
212
212
|
Parameters
|
|
213
213
|
----------
|
|
214
214
|
uri : str
|
|
215
|
-
|
|
215
|
+
URI string.
|
|
216
216
|
|
|
217
217
|
Returns
|
|
218
218
|
-------
|
|
219
219
|
bool
|
|
220
|
-
True if
|
|
220
|
+
True if the URI is zip, False otherwise.
|
|
221
221
|
"""
|
|
222
222
|
return uri.startswith("zip+")
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
def get_filename_from_uri(uri: str) -> str:
|
|
226
226
|
"""
|
|
227
|
-
Get filename from
|
|
227
|
+
Get the filename from a URI.
|
|
228
228
|
|
|
229
229
|
Parameters
|
|
230
230
|
----------
|
|
231
231
|
uri : str
|
|
232
|
-
|
|
232
|
+
URI string.
|
|
233
233
|
|
|
234
234
|
Returns
|
|
235
235
|
-------
|
|
236
236
|
str
|
|
237
|
-
Filename.
|
|
237
|
+
Filename extracted from the URI.
|
|
238
238
|
"""
|
|
239
239
|
return unquote(urlparse(uri).path).split("/")[-1]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: digitalhub
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.0b4
|
|
4
4
|
Summary: Python SDK for Digitalhub
|
|
5
5
|
Project-URL: Homepage, https://github.com/scc-digitalhub/digitalhub-sdk
|
|
6
6
|
Author-email: Fondazione Bruno Kessler <digitalhub@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
digitalhub/__init__.py,sha256=
|
|
2
|
-
digitalhub/context/api.py,sha256=
|
|
3
|
-
digitalhub/context/builder.py,sha256=
|
|
4
|
-
digitalhub/context/context.py,sha256=
|
|
1
|
+
digitalhub/__init__.py,sha256=JrwZhABki1rBFSP3uHBJOckWQiF213_UXuJRoX7QFHA,2572
|
|
2
|
+
digitalhub/context/api.py,sha256=eIVsYhneu8bEQiUV15sUNlv5WlZu6zV7Dvidvg_0FfA,1500
|
|
3
|
+
digitalhub/context/builder.py,sha256=NM4xcD2n4jXwdTS2hl3MAobf-BVUQH-9LB6U3J_F3pM,2826
|
|
4
|
+
digitalhub/context/context.py,sha256=HyyaYCmCCyr6qF7dfvorX5kNLR7NgceUGhEQGczdC8w,2246
|
|
5
5
|
digitalhub/entities/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
6
6
|
digitalhub/entities/builders.py,sha256=I-RVAFNgnZGmx7Dyz8_n7gfsG-BVgbgfraJal5NWipE,2054
|
|
7
7
|
digitalhub/entities/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
@@ -24,7 +24,7 @@ digitalhub/entities/_base/entity/_constructors/uuid.py,sha256=7QhQ9epJAnYLCKUPY6
|
|
|
24
24
|
digitalhub/entities/_base/executable/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
25
25
|
digitalhub/entities/_base/executable/entity.py,sha256=duxjwi3ROHM4hewYfUzkTpHuETfHQ8WsQ4n3wprj3DA,13321
|
|
26
26
|
digitalhub/entities/_base/material/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
27
|
-
digitalhub/entities/_base/material/entity.py,sha256=
|
|
27
|
+
digitalhub/entities/_base/material/entity.py,sha256=nl0uT4VvFRBmkZuyH3Jec8zdwSLOR3B9BJp8fG99zng,6759
|
|
28
28
|
digitalhub/entities/_base/material/spec.py,sha256=7lF_Pv7zGJUAR2ixmmCt-UPnoASgOLxnb9yffqwBVp8,544
|
|
29
29
|
digitalhub/entities/_base/material/status.py,sha256=vAIb5qti5KxdIPdB9WYmWrCnqwGyUxuF6CpGSpcWxbE,520
|
|
30
30
|
digitalhub/entities/_base/material/utils.py,sha256=diFtnOjCumenzOL1Su0ROA3KdrIJlRq5Jh845axvAtU,2512
|
|
@@ -38,16 +38,15 @@ digitalhub/entities/_base/versioned/builder.py,sha256=DkvMdPwyz45Nyk5Mv0IQQG2X69
|
|
|
38
38
|
digitalhub/entities/_base/versioned/entity.py,sha256=RZp1HkrgZTxSGUR1UcegCrNwG_USo46tsy9EQvUQSRE,1007
|
|
39
39
|
digitalhub/entities/_commons/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
40
40
|
digitalhub/entities/_commons/enums.py,sha256=6V-XMDlDIvLyexwcWtMpSfel1DBonYGCg34qcF4LTd8,2161
|
|
41
|
-
digitalhub/entities/_commons/metrics.py,sha256=
|
|
42
|
-
digitalhub/entities/_commons/
|
|
43
|
-
digitalhub/entities/_commons/utils.py,sha256=6iBhKLnoGVsgEbMWlOZJfi2K7FmyRKzvYoSZIswSzpc,1954
|
|
41
|
+
digitalhub/entities/_commons/metrics.py,sha256=eiN5lHmXRaHQbbN3uAOZlj3QXDxkyADoFqyZ40vdpLc,5378
|
|
42
|
+
digitalhub/entities/_commons/utils.py,sha256=DxBDnCE3A4HXRBw-qHtHLq3t3rrX9XbL_GVM-xd8yoE,2988
|
|
44
43
|
digitalhub/entities/_processors/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
45
|
-
digitalhub/entities/_processors/base.py,sha256=
|
|
46
|
-
digitalhub/entities/_processors/context.py,sha256=
|
|
47
|
-
digitalhub/entities/_processors/utils.py,sha256
|
|
44
|
+
digitalhub/entities/_processors/base.py,sha256=Buh9FhsVnSpvSkYixeFX3iHu1H11IJG-CTbuSgcuEwU,18367
|
|
45
|
+
digitalhub/entities/_processors/context.py,sha256=0dbxHgZHHvsscrkXfcb9Bojnl2ZRf8beso__kt_Vu7k,45129
|
|
46
|
+
digitalhub/entities/_processors/utils.py,sha256=-m9xKAx0Gb4PEaAYbbbXam7DoxnyYNkUYH8AQ3iihtI,6319
|
|
48
47
|
digitalhub/entities/artifact/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
49
48
|
digitalhub/entities/artifact/crud.py,sha256=cPMIXLOe1DNqTzRjCKlQeicZyo-jWD2e1ZJu98PO-Qo,8185
|
|
50
|
-
digitalhub/entities/artifact/utils.py,sha256=
|
|
49
|
+
digitalhub/entities/artifact/utils.py,sha256=0g5lIGP2HYOiLaO1f-H7wF0XQtUsxxHBOoFvYt2kt2U,2447
|
|
51
50
|
digitalhub/entities/artifact/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
52
51
|
digitalhub/entities/artifact/_base/builder.py,sha256=IByi2iCzA68WdYQ4BXLUEByamp1cnlcjlphnryWXR3c,2364
|
|
53
52
|
digitalhub/entities/artifact/_base/entity.py,sha256=i6bpYvbYxtjuQY-qpoqemLq42jbqKuArEYfJJvxfzeI,1215
|
|
@@ -59,8 +58,8 @@ digitalhub/entities/artifact/artifact/entity.py,sha256=__dfLAo5HHbky-l_XQpPag_IE
|
|
|
59
58
|
digitalhub/entities/artifact/artifact/spec.py,sha256=BAbL-7XtOF_tDnLizR39YLmKAdRAr3sCyMNr1K5FVNI,740
|
|
60
59
|
digitalhub/entities/artifact/artifact/status.py,sha256=Aela65491_2NqqZG2OCvTsY9Gfverb1ng-_sYttcUI8,413
|
|
61
60
|
digitalhub/entities/dataitem/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
62
|
-
digitalhub/entities/dataitem/crud.py,sha256=
|
|
63
|
-
digitalhub/entities/dataitem/utils.py,sha256=
|
|
61
|
+
digitalhub/entities/dataitem/crud.py,sha256=doTV39W2bIGYxhSF8dBXZ5MezXF3rmoMCADxyYuFVw8,8836
|
|
62
|
+
digitalhub/entities/dataitem/utils.py,sha256=6-iyFRdxTuXxUJpHO-51mIizSWTxoSKSVKD7V8b1KDo,7567
|
|
64
63
|
digitalhub/entities/dataitem/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
65
64
|
digitalhub/entities/dataitem/_base/builder.py,sha256=uX5vxDJ8GxVk49NW9mHBKYhinJnfzLBObI7zy4J0TB0,2364
|
|
66
65
|
digitalhub/entities/dataitem/_base/entity.py,sha256=6GrqOY-S2p_sljzUdWgl5o_DlAbSbjIyCp7JJh__U_U,1053
|
|
@@ -78,7 +77,7 @@ digitalhub/entities/dataitem/iceberg/spec.py,sha256=vtfaV9OE1WBKTtTHoYSdMnjQfUey
|
|
|
78
77
|
digitalhub/entities/dataitem/iceberg/status.py,sha256=HMBNAzqQplUxmnnIVb57cCcjhmUQ1v8K3wAGUnYdRlA,310
|
|
79
78
|
digitalhub/entities/dataitem/table/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
80
79
|
digitalhub/entities/dataitem/table/builder.py,sha256=FoXrW09HXCZ0XNnCPHNSZs_iLrIG_8WPCZo_5Vq6_YI,824
|
|
81
|
-
digitalhub/entities/dataitem/table/entity.py,sha256=
|
|
80
|
+
digitalhub/entities/dataitem/table/entity.py,sha256=brqBpU6oYyOAJg3iX15bBoEO-dtM38whGUilviwrBxs,4214
|
|
82
81
|
digitalhub/entities/dataitem/table/models.py,sha256=5wqwm4GQjikdJVtDPEn5hwUR_FWxW_7hwIf-GLikqjQ,1269
|
|
83
82
|
digitalhub/entities/dataitem/table/spec.py,sha256=oYgh5XqFrdzIpGxXe1FW5bsGlFHokUJdHJSamuyFs4k,779
|
|
84
83
|
digitalhub/entities/dataitem/table/status.py,sha256=_-_UrcPZh3maGENDZ99pLA8Gz1yrXapvsxs_lPI1skw,306
|
|
@@ -92,7 +91,7 @@ digitalhub/entities/function/_base/spec.py,sha256=qDiqfe6zSFYYH-kXPmm4R_LId985V2
|
|
|
92
91
|
digitalhub/entities/function/_base/status.py,sha256=wjCUr2HoQQUL4fwTjvPE8eubkCeVxbe2VV8zs0BJ5RY,278
|
|
93
92
|
digitalhub/entities/model/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
94
93
|
digitalhub/entities/model/crud.py,sha256=aL6t_EwYHNlmBQTeA4lI4Ka6JFqP5QSKZjdWmuKH404,7966
|
|
95
|
-
digitalhub/entities/model/utils.py,sha256=
|
|
94
|
+
digitalhub/entities/model/utils.py,sha256=cswaUv320jO5rl8EXtxjwuO2nCM-QUMeJLI1aT4KBmM,2444
|
|
96
95
|
digitalhub/entities/model/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
97
96
|
digitalhub/entities/model/_base/builder.py,sha256=6kG8-NNIup2B2GE5ABg9QwV3LoyThnw4KEYABm9kxPg,2343
|
|
98
97
|
digitalhub/entities/model/_base/entity.py,sha256=iSIVUXGiSZu8icogQQNKB3wjw88SLIKTyvJT38HWVtI,5090
|
|
@@ -148,7 +147,7 @@ digitalhub/entities/task/crud.py,sha256=Jpm3WiorsQk4DzVLT22gM-bf1conrD9JZW5lbvqs
|
|
|
148
147
|
digitalhub/entities/task/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
149
148
|
digitalhub/entities/task/_base/builder.py,sha256=1aZxj5z_9mlNWZzXJfd1sVCln6zDn-CMbWK7ToFkHQ8,2466
|
|
150
149
|
digitalhub/entities/task/_base/entity.py,sha256=zzszVSuS-2GDmxgr38EMsLVQOm99055BxUoh0nE7sdU,3632
|
|
151
|
-
digitalhub/entities/task/_base/models.py,sha256=
|
|
150
|
+
digitalhub/entities/task/_base/models.py,sha256=LGS_BmJG95m4WW1jsGHfjWjIbCBcQIArRwKfVYL4ro8,5851
|
|
152
151
|
digitalhub/entities/task/_base/spec.py,sha256=TQ7IXW_QnTGxFvVDk0M22DlaqMWm9Klq1Yk6LGBAhEM,2608
|
|
153
152
|
digitalhub/entities/task/_base/status.py,sha256=9TazT1vKJT8NRvh__ymKJ89CUUcf7UhnLREcvudrFTU,270
|
|
154
153
|
digitalhub/entities/task/_base/utils.py,sha256=27PY09zz0o-AegdYpxSUIeaT9cJgk1dltBUK-DC_7wk,556
|
|
@@ -177,61 +176,61 @@ digitalhub/entities/workflow/_base/entity.py,sha256=8btCq8f80llz8P8UXxw5hp7cwCwh
|
|
|
177
176
|
digitalhub/entities/workflow/_base/spec.py,sha256=3TKGDnf8_47H5hMl38DWz7rXp2d-zsz8wRzV8fSlFb8,382
|
|
178
177
|
digitalhub/entities/workflow/_base/status.py,sha256=sIZJOUBLB7UKqCMnaGBz1l6Kc3wg9u0518ce1ebHInM,278
|
|
179
178
|
digitalhub/factory/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
180
|
-
digitalhub/factory/factory.py,sha256=
|
|
181
|
-
digitalhub/factory/utils.py,sha256=
|
|
179
|
+
digitalhub/factory/factory.py,sha256=lY557N7WxJwfSxWRONj7J-3n3OVF5Dksh_jS0WMtdvs,9950
|
|
180
|
+
digitalhub/factory/utils.py,sha256=mGorhLIqChG0uB029NO-O_tv_FzMBoOxXRRqGmru2AQ,3229
|
|
182
181
|
digitalhub/runtimes/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
183
|
-
digitalhub/runtimes/_base.py,sha256=
|
|
184
|
-
digitalhub/runtimes/builder.py,sha256=
|
|
182
|
+
digitalhub/runtimes/_base.py,sha256=f-L4gPGjjCuOwtqbQH4cq5qVOfI3cq2IFhhzh5EXALU,3082
|
|
183
|
+
digitalhub/runtimes/builder.py,sha256=u49-y40j4ZL3fm4IG8KGHt45xFl5n3mw4unJjsJiZMs,1747
|
|
185
184
|
digitalhub/runtimes/enums.py,sha256=MCaeTOD3Bd6cdXnOlbklmRJ6rBHctJ-iJFiCrRM4Sx0,634
|
|
186
185
|
digitalhub/stores/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
187
|
-
digitalhub/stores/client/__init__.py,sha256=
|
|
188
|
-
digitalhub/stores/client/api.py,sha256=
|
|
189
|
-
digitalhub/stores/client/builder.py,sha256=
|
|
186
|
+
digitalhub/stores/client/__init__.py,sha256=0NWCFXlcnb45II98tUAGtvXUNVMXsIbFePmo7G0ltn8,456
|
|
187
|
+
digitalhub/stores/client/api.py,sha256=uC3GVVC7OOnryUEEmr8QcdFuiOfZNM7NapuuxWLNNC8,1108
|
|
188
|
+
digitalhub/stores/client/builder.py,sha256=J8HHyf67Gtr3i1yccRtJLtcKCcYW7u43Jdvynbozkfs,1417
|
|
190
189
|
digitalhub/stores/client/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
191
|
-
digitalhub/stores/client/_base/api_builder.py,sha256=
|
|
192
|
-
digitalhub/stores/client/_base/client.py,sha256=
|
|
193
|
-
digitalhub/stores/client/_base/key_builder.py,sha256=
|
|
194
|
-
digitalhub/stores/client/_base/params_builder.py,sha256=
|
|
190
|
+
digitalhub/stores/client/_base/api_builder.py,sha256=hh30o2MfEY91VzhQyqP3gkBClC8FYYPNyTmBA99cqqA,786
|
|
191
|
+
digitalhub/stores/client/_base/client.py,sha256=E33xRleSQoWQ271wTPnmDzpD50m64Nwvo2aTuDt55l4,5797
|
|
192
|
+
digitalhub/stores/client/_base/key_builder.py,sha256=hCsufQuDPRqHIzBATiF_46-wtE5ud6ytgduDbaMLNU0,1904
|
|
193
|
+
digitalhub/stores/client/_base/params_builder.py,sha256=Vo1yaAcp0X8H43ypJnStB6xP-KH-Cz3K-bjP4537Lys,877
|
|
195
194
|
digitalhub/stores/client/dhcore/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
196
|
-
digitalhub/stores/client/dhcore/api_builder.py,sha256=
|
|
197
|
-
digitalhub/stores/client/dhcore/client.py,sha256=
|
|
198
|
-
digitalhub/stores/client/dhcore/configurator.py,sha256=
|
|
195
|
+
digitalhub/stores/client/dhcore/api_builder.py,sha256=tKmwPsiWWAGIHmAZ4RNjC7Q9bGTYmuKA4sL93nT-StM,4495
|
|
196
|
+
digitalhub/stores/client/dhcore/client.py,sha256=JJGQE7zX4JLOjPpR9eP_UE8PwqqOdyrGrNNIj1A7XwE,19554
|
|
197
|
+
digitalhub/stores/client/dhcore/configurator.py,sha256=M4L_jRt4E8s2EWeNE6uvMwAN7uvu7pTuc7bBvIyPVs4,24548
|
|
199
198
|
digitalhub/stores/client/dhcore/enums.py,sha256=M4a3vArPQ8wUFuFcW2m_nQUAFJgaxQZyZ5hKILYkUQc,755
|
|
200
|
-
digitalhub/stores/client/dhcore/error_parser.py,sha256=
|
|
199
|
+
digitalhub/stores/client/dhcore/error_parser.py,sha256=iQHyk_3WQSK8fue8slgBMHsTjVd-iO-8LkmHhPHqRcI,4618
|
|
201
200
|
digitalhub/stores/client/dhcore/key_builder.py,sha256=wD8kB0LHOvf669pzF8D6ksZ3GJfWmbDYDFbGs3TnaPo,1432
|
|
202
201
|
digitalhub/stores/client/dhcore/models.py,sha256=YPBG7ySfNBPKQtvgNVe2FRSVNxvZf_dCDhfQh7WkDro,750
|
|
203
|
-
digitalhub/stores/client/dhcore/params_builder.py,sha256=
|
|
204
|
-
digitalhub/stores/client/dhcore/utils.py,sha256=
|
|
202
|
+
digitalhub/stores/client/dhcore/params_builder.py,sha256=pEwmfpukjkUeL67GoR4KlvJcEwXKoxG-eOPxTj3tWwg,10928
|
|
203
|
+
digitalhub/stores/client/dhcore/utils.py,sha256=EsE4f8CCLbz4lVzm3R-R_PrwtQnMfqsBKJ-UmlB3vFk,2831
|
|
205
204
|
digitalhub/stores/client/local/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
206
|
-
digitalhub/stores/client/local/api_builder.py,sha256=
|
|
207
|
-
digitalhub/stores/client/local/client.py,sha256=
|
|
205
|
+
digitalhub/stores/client/local/api_builder.py,sha256=D-bhX6w7gaTA6kkxbGJzdNFrjzZ5LY5qcf2dQ5R_ZgM,3563
|
|
206
|
+
digitalhub/stores/client/local/client.py,sha256=oDb3cSZL6BlF5smg0JKydrF2vZEi8Ped5cVCzk8tjnY,18275
|
|
208
207
|
digitalhub/stores/client/local/enums.py,sha256=J4xf23H2AO8OKYPim2XO143A7j_X6dqfPSm03Sbi0AI,258
|
|
209
208
|
digitalhub/stores/client/local/key_builder.py,sha256=ijISHvPcMyx591gHlSP1IZdiRrFi0oVh8AqaWe1L_g0,1431
|
|
210
209
|
digitalhub/stores/client/local/params_builder.py,sha256=_hR4bwn0bpGc74iKb3PM3WUJ6s3GAgsc1zcXoWjy560,3589
|
|
211
210
|
digitalhub/stores/credentials/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
212
|
-
digitalhub/stores/credentials/api.py,sha256=
|
|
213
|
-
digitalhub/stores/credentials/configurator.py,sha256=
|
|
214
|
-
digitalhub/stores/credentials/enums.py,sha256=
|
|
215
|
-
digitalhub/stores/credentials/handler.py,sha256=
|
|
216
|
-
digitalhub/stores/credentials/ini_module.py,sha256=
|
|
217
|
-
digitalhub/stores/credentials/store.py,sha256=
|
|
211
|
+
digitalhub/stores/credentials/api.py,sha256=mwClY8tCG62eAhbwrmK-kzYQzEJ5ZmCW52WmYsQ-004,738
|
|
212
|
+
digitalhub/stores/credentials/configurator.py,sha256=60vxnaGuctiv0Rjf2vxBlNzBq1iVga6sdmQ7EUt_Kdk,5487
|
|
213
|
+
digitalhub/stores/credentials/enums.py,sha256=uRJ6af0ujk3Ki4DXM9rFqBROyhlbf4EYNWml_CSdJL8,1665
|
|
214
|
+
digitalhub/stores/credentials/handler.py,sha256=CHrs3vmTkCQrtTenvVQ9QlRIntyrOOqZN-9BBJFG6JI,4355
|
|
215
|
+
digitalhub/stores/credentials/ini_module.py,sha256=ouHCGuAA_odbpKJKuwfCQMt40jRCCh9wLID_HucKo5o,3750
|
|
216
|
+
digitalhub/stores/credentials/store.py,sha256=IaldhWeW6x_6PR7hPeCcuGqqblBLBLfZ_wyJCCocevs,2191
|
|
218
217
|
digitalhub/stores/data/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
219
|
-
digitalhub/stores/data/api.py,sha256=
|
|
220
|
-
digitalhub/stores/data/builder.py,sha256=
|
|
218
|
+
digitalhub/stores/data/api.py,sha256=pzvPseP6MnnW59Jms4JoWxGxloILiEfU5Kw5Tq8WR2A,1739
|
|
219
|
+
digitalhub/stores/data/builder.py,sha256=QZdJNZ4CNNLuxOsbdMiEwg_WySEJmjtA-bwR3XzX8p0,4866
|
|
221
220
|
digitalhub/stores/data/enums.py,sha256=8pO_tUZmKB4BpjW29lQN9rLGPOrJoqDVYJYzzxeDXW4,305
|
|
222
221
|
digitalhub/stores/data/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
223
|
-
digitalhub/stores/data/_base/store.py,sha256=
|
|
222
|
+
digitalhub/stores/data/_base/store.py,sha256=dtCMQcUWBPEBlSzNSx9KNtSw7dJIkJU8NX6ul1HC5II,5874
|
|
224
223
|
digitalhub/stores/data/local/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
225
224
|
digitalhub/stores/data/local/store.py,sha256=_XuIp3HpEa7hxxMfQhK05EscPA_RBiQyb61U464kflo,7368
|
|
226
225
|
digitalhub/stores/data/remote/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
227
226
|
digitalhub/stores/data/remote/store.py,sha256=DTrBW62zc1ix7UbLnY6YeqN0_8kGeUH_h9k7Br2HY3k,6130
|
|
228
227
|
digitalhub/stores/data/s3/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
229
|
-
digitalhub/stores/data/s3/configurator.py,sha256=
|
|
230
|
-
digitalhub/stores/data/s3/store.py,sha256=
|
|
231
|
-
digitalhub/stores/data/s3/utils.py,sha256=
|
|
228
|
+
digitalhub/stores/data/s3/configurator.py,sha256=7B0sLUfjiBz-u1gBxsaeU6rgB_zK1hkLf3eWTLOd9tk,3701
|
|
229
|
+
digitalhub/stores/data/s3/store.py,sha256=hwcvTkKaBWcCc7fDGuoddgT2v5b8Jr5LtTojja9tdZ8,19583
|
|
230
|
+
digitalhub/stores/data/s3/utils.py,sha256=jCzXp9X2tnF3iHRSmvfnp1e5ahbZkMaMMC35FfysFZw,1894
|
|
232
231
|
digitalhub/stores/data/sql/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
233
|
-
digitalhub/stores/data/sql/configurator.py,sha256=
|
|
234
|
-
digitalhub/stores/data/sql/store.py,sha256=
|
|
232
|
+
digitalhub/stores/data/sql/configurator.py,sha256=NluShAlwoy0GXNcnBeFeoAwEF5b2mUpA6EY2OdqdYjQ,4017
|
|
233
|
+
digitalhub/stores/data/sql/store.py,sha256=xpo6rA_l54iMK53apakeLl-MfaLt05zFLMO2TGPEtHM,16940
|
|
235
234
|
digitalhub/stores/readers/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
236
235
|
digitalhub/stores/readers/data/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
237
236
|
digitalhub/stores/readers/data/api.py,sha256=jn2AwCcTRbAOeAhs-3D1OpjhvFf8y537upvzVAgHxl4,1966
|
|
@@ -245,16 +244,16 @@ digitalhub/stores/readers/data/pandas/reader.py,sha256=SNZLhT4Fw7SWZoQRxacSmESBK
|
|
|
245
244
|
digitalhub/stores/readers/query/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
246
245
|
digitalhub/utils/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
247
246
|
digitalhub/utils/enums.py,sha256=FvvBBkryy2-Ji0MhBMeJC6oLnd_ba0b0y1uCcWT-mvU,377
|
|
248
|
-
digitalhub/utils/exceptions.py,sha256=
|
|
249
|
-
digitalhub/utils/file_utils.py,sha256=
|
|
250
|
-
digitalhub/utils/generic_utils.py,sha256=
|
|
251
|
-
digitalhub/utils/git_utils.py,sha256=
|
|
252
|
-
digitalhub/utils/io_utils.py,sha256=
|
|
247
|
+
digitalhub/utils/exceptions.py,sha256=RKLlLlMqQXWfMyT6npLjc3NPeKxzpWH-nrCv8VQC2x4,1435
|
|
248
|
+
digitalhub/utils/file_utils.py,sha256=KI4ZEiNbR617d-Xjve9cHqDetLDjzOO2Tr3ht0YTZ5w,6232
|
|
249
|
+
digitalhub/utils/generic_utils.py,sha256=eKYqG5rilY8zpHRCH4H3ph7hToJ68pAZNqifvQMr5L0,6241
|
|
250
|
+
digitalhub/utils/git_utils.py,sha256=hjGNqeu7EKYTbjXKcV8YD8nbEQ99SQkilfPt-YwCPrg,4005
|
|
251
|
+
digitalhub/utils/io_utils.py,sha256=p2K9VFJGzl3PmXc7GfXKZkPyg5hImduvXlfYVpnsMck,3506
|
|
253
252
|
digitalhub/utils/logger.py,sha256=hH3gGE35L8jRxrg8EPXGZZAK1OA5-CvWnayuBZzteBM,545
|
|
254
253
|
digitalhub/utils/types.py,sha256=orCxY43zXMJfKZsOj6FUR85u9wRBPJ0wdkzrBHTnVW8,217
|
|
255
|
-
digitalhub/utils/uri_utils.py,sha256=
|
|
256
|
-
digitalhub-0.13.
|
|
257
|
-
digitalhub-0.13.
|
|
258
|
-
digitalhub-0.13.
|
|
259
|
-
digitalhub-0.13.
|
|
260
|
-
digitalhub-0.13.
|
|
254
|
+
digitalhub/utils/uri_utils.py,sha256=Go787CxAOo2MMjFIEt8XssomtyV8vTdIrpyjSQK3gAM,4408
|
|
255
|
+
digitalhub-0.13.0b4.dist-info/METADATA,sha256=rYzv9l666BndcEnYjzwJzMPZ8y3JNO9QQ4Hcixy1ypk,18028
|
|
256
|
+
digitalhub-0.13.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
257
|
+
digitalhub-0.13.0b4.dist-info/licenses/AUTHORS,sha256=iDleK_2EAMmh0o8Te_E9mdXQCP4rBfFr9dW9d0-pCno,301
|
|
258
|
+
digitalhub-0.13.0b4.dist-info/licenses/LICENSE,sha256=z3xQCHfGmTnigfoUe3uidW_GUSVeFBdos30w9VNTRec,11361
|
|
259
|
+
digitalhub-0.13.0b4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|