digitalhub 0.11.0b6__py3-none-any.whl → 0.12.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.

Potentially problematic release.


This version of digitalhub might be problematic. Click here for more details.

Files changed (265) hide show
  1. digitalhub/__init__.py +3 -0
  2. digitalhub/context/api.py +4 -0
  3. digitalhub/context/builder.py +4 -0
  4. digitalhub/context/context.py +4 -0
  5. digitalhub/entities/__init__.py +3 -0
  6. digitalhub/entities/_base/__init__.py +3 -0
  7. digitalhub/entities/_base/_base/__init__.py +3 -0
  8. digitalhub/entities/_base/_base/entity.py +4 -0
  9. digitalhub/entities/_base/context/__init__.py +3 -0
  10. digitalhub/entities/_base/context/entity.py +4 -0
  11. digitalhub/entities/_base/entity/__init__.py +3 -0
  12. digitalhub/entities/_base/entity/_constructors/__init__.py +3 -0
  13. digitalhub/entities/_base/entity/_constructors/metadata.py +4 -0
  14. digitalhub/entities/_base/entity/_constructors/name.py +4 -0
  15. digitalhub/entities/_base/entity/_constructors/spec.py +4 -0
  16. digitalhub/entities/_base/entity/_constructors/status.py +4 -0
  17. digitalhub/entities/_base/entity/_constructors/uuid.py +4 -0
  18. digitalhub/entities/_base/entity/builder.py +4 -0
  19. digitalhub/entities/_base/entity/entity.py +4 -0
  20. digitalhub/entities/_base/entity/metadata.py +4 -0
  21. digitalhub/entities/_base/entity/spec.py +4 -0
  22. digitalhub/entities/_base/entity/status.py +4 -0
  23. digitalhub/entities/_base/executable/__init__.py +3 -0
  24. digitalhub/entities/_base/executable/entity.py +32 -7
  25. digitalhub/entities/_base/material/__init__.py +3 -0
  26. digitalhub/entities/_base/material/entity.py +4 -0
  27. digitalhub/entities/_base/material/spec.py +4 -0
  28. digitalhub/entities/_base/material/status.py +4 -0
  29. digitalhub/entities/_base/material/utils.py +4 -0
  30. digitalhub/entities/_base/runtime_entity/__init__.py +3 -0
  31. digitalhub/entities/_base/runtime_entity/builder.py +4 -0
  32. digitalhub/entities/_base/unversioned/__init__.py +3 -0
  33. digitalhub/entities/_base/unversioned/builder.py +4 -0
  34. digitalhub/entities/_base/unversioned/entity.py +4 -0
  35. digitalhub/entities/_base/versioned/__init__.py +3 -0
  36. digitalhub/entities/_base/versioned/builder.py +4 -0
  37. digitalhub/entities/_base/versioned/entity.py +4 -0
  38. digitalhub/entities/_commons/__init__.py +3 -0
  39. digitalhub/entities/_commons/enums.py +5 -0
  40. digitalhub/entities/_commons/metrics.py +4 -0
  41. digitalhub/entities/_commons/types.py +4 -0
  42. digitalhub/entities/_commons/utils.py +4 -0
  43. digitalhub/entities/_processors/__init__.py +3 -0
  44. digitalhub/entities/_processors/base.py +4 -0
  45. digitalhub/entities/_processors/context.py +4 -0
  46. digitalhub/entities/_processors/utils.py +4 -0
  47. digitalhub/entities/artifact/__init__.py +3 -0
  48. digitalhub/entities/artifact/_base/__init__.py +3 -0
  49. digitalhub/entities/artifact/_base/builder.py +4 -0
  50. digitalhub/entities/artifact/_base/entity.py +4 -0
  51. digitalhub/entities/artifact/_base/spec.py +4 -0
  52. digitalhub/entities/artifact/_base/status.py +4 -0
  53. digitalhub/entities/artifact/artifact/__init__.py +3 -0
  54. digitalhub/entities/artifact/artifact/builder.py +4 -0
  55. digitalhub/entities/artifact/artifact/entity.py +4 -0
  56. digitalhub/entities/artifact/artifact/spec.py +4 -0
  57. digitalhub/entities/artifact/artifact/status.py +4 -0
  58. digitalhub/entities/artifact/crud.py +4 -0
  59. digitalhub/entities/artifact/utils.py +4 -0
  60. digitalhub/entities/builders.py +4 -0
  61. digitalhub/entities/dataitem/__init__.py +3 -0
  62. digitalhub/entities/dataitem/_base/__init__.py +3 -0
  63. digitalhub/entities/dataitem/_base/builder.py +4 -0
  64. digitalhub/entities/dataitem/_base/entity.py +4 -0
  65. digitalhub/entities/dataitem/_base/spec.py +4 -0
  66. digitalhub/entities/dataitem/_base/status.py +4 -0
  67. digitalhub/entities/dataitem/crud.py +4 -0
  68. digitalhub/entities/dataitem/dataitem/__init__.py +3 -0
  69. digitalhub/entities/dataitem/dataitem/builder.py +4 -0
  70. digitalhub/entities/dataitem/dataitem/entity.py +4 -0
  71. digitalhub/entities/dataitem/dataitem/spec.py +4 -0
  72. digitalhub/entities/dataitem/dataitem/status.py +4 -0
  73. digitalhub/entities/dataitem/iceberg/__init__.py +3 -0
  74. digitalhub/entities/dataitem/iceberg/builder.py +4 -0
  75. digitalhub/entities/dataitem/iceberg/entity.py +4 -0
  76. digitalhub/entities/dataitem/iceberg/spec.py +4 -0
  77. digitalhub/entities/dataitem/iceberg/status.py +4 -0
  78. digitalhub/entities/dataitem/table/__init__.py +3 -0
  79. digitalhub/entities/dataitem/table/builder.py +4 -0
  80. digitalhub/entities/dataitem/table/entity.py +4 -0
  81. digitalhub/entities/dataitem/table/models.py +4 -0
  82. digitalhub/entities/dataitem/table/spec.py +4 -0
  83. digitalhub/entities/dataitem/table/status.py +4 -0
  84. digitalhub/entities/dataitem/table/utils.py +4 -0
  85. digitalhub/entities/dataitem/utils.py +4 -0
  86. digitalhub/entities/function/__init__.py +3 -0
  87. digitalhub/entities/function/_base/__init__.py +3 -0
  88. digitalhub/entities/function/_base/builder.py +4 -0
  89. digitalhub/entities/function/_base/entity.py +4 -46
  90. digitalhub/entities/function/_base/spec.py +4 -0
  91. digitalhub/entities/function/_base/status.py +4 -0
  92. digitalhub/entities/function/crud.py +4 -0
  93. digitalhub/entities/model/__init__.py +3 -0
  94. digitalhub/entities/model/_base/__init__.py +3 -0
  95. digitalhub/entities/model/_base/builder.py +4 -0
  96. digitalhub/entities/model/_base/entity.py +4 -0
  97. digitalhub/entities/model/_base/spec.py +4 -0
  98. digitalhub/entities/model/_base/status.py +4 -0
  99. digitalhub/entities/model/crud.py +4 -0
  100. digitalhub/entities/model/huggingface/__init__.py +3 -0
  101. digitalhub/entities/model/huggingface/builder.py +4 -0
  102. digitalhub/entities/model/huggingface/entity.py +4 -0
  103. digitalhub/entities/model/huggingface/spec.py +4 -0
  104. digitalhub/entities/model/huggingface/status.py +4 -0
  105. digitalhub/entities/model/mlflow/__init__.py +3 -0
  106. digitalhub/entities/model/mlflow/builder.py +4 -0
  107. digitalhub/entities/model/mlflow/entity.py +4 -0
  108. digitalhub/entities/model/mlflow/models.py +4 -0
  109. digitalhub/entities/model/mlflow/spec.py +4 -0
  110. digitalhub/entities/model/mlflow/status.py +4 -0
  111. digitalhub/entities/model/mlflow/utils.py +4 -0
  112. digitalhub/entities/model/model/__init__.py +3 -0
  113. digitalhub/entities/model/model/builder.py +4 -0
  114. digitalhub/entities/model/model/entity.py +4 -0
  115. digitalhub/entities/model/model/spec.py +4 -0
  116. digitalhub/entities/model/model/status.py +4 -0
  117. digitalhub/entities/model/sklearn/__init__.py +3 -0
  118. digitalhub/entities/model/sklearn/builder.py +4 -0
  119. digitalhub/entities/model/sklearn/entity.py +4 -0
  120. digitalhub/entities/model/sklearn/spec.py +4 -0
  121. digitalhub/entities/model/sklearn/status.py +4 -0
  122. digitalhub/entities/model/utils.py +4 -0
  123. digitalhub/entities/project/__init__.py +3 -0
  124. digitalhub/entities/project/_base/__init__.py +3 -0
  125. digitalhub/entities/project/_base/builder.py +4 -0
  126. digitalhub/entities/project/_base/entity.py +4 -0
  127. digitalhub/entities/project/_base/models.py +4 -0
  128. digitalhub/entities/project/_base/spec.py +4 -0
  129. digitalhub/entities/project/_base/status.py +4 -0
  130. digitalhub/entities/project/crud.py +4 -0
  131. digitalhub/entities/project/utils.py +4 -0
  132. digitalhub/entities/run/__init__.py +3 -0
  133. digitalhub/entities/run/_base/__init__.py +3 -0
  134. digitalhub/entities/run/_base/builder.py +4 -0
  135. digitalhub/entities/run/_base/entity.py +4 -0
  136. digitalhub/entities/run/_base/spec.py +4 -0
  137. digitalhub/entities/run/_base/status.py +4 -0
  138. digitalhub/entities/run/crud.py +4 -0
  139. digitalhub/entities/secret/__init__.py +3 -0
  140. digitalhub/entities/secret/_base/__init__.py +3 -0
  141. digitalhub/entities/secret/_base/builder.py +4 -0
  142. digitalhub/entities/secret/_base/entity.py +4 -0
  143. digitalhub/entities/secret/_base/spec.py +4 -0
  144. digitalhub/entities/secret/_base/status.py +4 -0
  145. digitalhub/entities/secret/crud.py +4 -0
  146. digitalhub/entities/task/__init__.py +3 -0
  147. digitalhub/entities/task/_base/__init__.py +3 -0
  148. digitalhub/entities/task/_base/builder.py +4 -0
  149. digitalhub/entities/task/_base/entity.py +4 -0
  150. digitalhub/entities/task/_base/models.py +4 -0
  151. digitalhub/entities/task/_base/spec.py +4 -0
  152. digitalhub/entities/task/_base/status.py +4 -0
  153. digitalhub/entities/task/_base/utils.py +4 -0
  154. digitalhub/entities/task/crud.py +4 -0
  155. digitalhub/entities/trigger/__init__.py +3 -0
  156. digitalhub/entities/trigger/_base/__init__.py +3 -0
  157. digitalhub/entities/trigger/_base/builder.py +4 -0
  158. digitalhub/entities/trigger/_base/entity.py +4 -0
  159. digitalhub/entities/trigger/_base/spec.py +19 -5
  160. digitalhub/entities/trigger/_base/status.py +4 -0
  161. digitalhub/entities/trigger/crud.py +11 -1
  162. digitalhub/entities/trigger/lifecycle/__init__.py +3 -0
  163. digitalhub/entities/trigger/lifecycle/builder.py +23 -0
  164. digitalhub/entities/trigger/lifecycle/entity.py +36 -0
  165. digitalhub/entities/trigger/lifecycle/spec.py +42 -0
  166. digitalhub/entities/trigger/lifecycle/status.py +13 -0
  167. digitalhub/entities/trigger/scheduler/__init__.py +3 -0
  168. digitalhub/entities/trigger/scheduler/builder.py +4 -0
  169. digitalhub/entities/trigger/scheduler/entity.py +4 -0
  170. digitalhub/entities/trigger/scheduler/spec.py +13 -2
  171. digitalhub/entities/trigger/scheduler/status.py +4 -0
  172. digitalhub/entities/workflow/__init__.py +3 -0
  173. digitalhub/entities/workflow/_base/__init__.py +3 -0
  174. digitalhub/entities/workflow/_base/builder.py +4 -0
  175. digitalhub/entities/workflow/_base/entity.py +4 -0
  176. digitalhub/entities/workflow/_base/spec.py +4 -0
  177. digitalhub/entities/workflow/_base/status.py +4 -0
  178. digitalhub/entities/workflow/crud.py +4 -0
  179. digitalhub/factory/__init__.py +3 -0
  180. digitalhub/factory/factory.py +4 -0
  181. digitalhub/factory/utils.py +4 -0
  182. digitalhub/runtimes/__init__.py +3 -0
  183. digitalhub/runtimes/_base.py +4 -0
  184. digitalhub/runtimes/builder.py +4 -0
  185. digitalhub/runtimes/enums.py +4 -0
  186. digitalhub/stores/__init__.py +3 -0
  187. digitalhub/stores/client/__init__.py +3 -0
  188. digitalhub/stores/client/_base/__init__.py +3 -0
  189. digitalhub/stores/client/_base/api_builder.py +4 -0
  190. digitalhub/stores/client/_base/client.py +4 -0
  191. digitalhub/stores/client/_base/key_builder.py +4 -0
  192. digitalhub/stores/client/_base/params_builder.py +4 -0
  193. digitalhub/stores/client/api.py +4 -0
  194. digitalhub/stores/client/builder.py +4 -0
  195. digitalhub/stores/client/dhcore/__init__.py +3 -0
  196. digitalhub/stores/client/dhcore/api_builder.py +4 -0
  197. digitalhub/stores/client/dhcore/client.py +4 -0
  198. digitalhub/stores/client/dhcore/configurator.py +4 -0
  199. digitalhub/stores/client/dhcore/enums.py +4 -0
  200. digitalhub/stores/client/dhcore/error_parser.py +4 -0
  201. digitalhub/stores/client/dhcore/key_builder.py +4 -0
  202. digitalhub/stores/client/dhcore/models.py +4 -0
  203. digitalhub/stores/client/dhcore/params_builder.py +4 -0
  204. digitalhub/stores/client/dhcore/utils.py +4 -0
  205. digitalhub/stores/client/local/__init__.py +3 -0
  206. digitalhub/stores/client/local/api_builder.py +4 -0
  207. digitalhub/stores/client/local/client.py +4 -0
  208. digitalhub/stores/client/local/enums.py +4 -0
  209. digitalhub/stores/client/local/key_builder.py +4 -0
  210. digitalhub/stores/client/local/params_builder.py +4 -0
  211. digitalhub/stores/configurator/__init__.py +3 -0
  212. digitalhub/stores/configurator/api.py +4 -0
  213. digitalhub/stores/configurator/configurator.py +4 -0
  214. digitalhub/stores/configurator/credentials_store.py +4 -0
  215. digitalhub/stores/configurator/enums.py +4 -0
  216. digitalhub/stores/configurator/ini_module.py +4 -0
  217. digitalhub/stores/data/__init__.py +3 -0
  218. digitalhub/stores/data/_base/__init__.py +3 -0
  219. digitalhub/stores/data/_base/store.py +4 -0
  220. digitalhub/stores/data/api.py +4 -0
  221. digitalhub/stores/data/builder.py +4 -0
  222. digitalhub/stores/data/enums.py +4 -0
  223. digitalhub/stores/data/local/__init__.py +3 -0
  224. digitalhub/stores/data/local/store.py +4 -0
  225. digitalhub/stores/data/remote/__init__.py +3 -0
  226. digitalhub/stores/data/remote/store.py +4 -0
  227. digitalhub/stores/data/s3/__init__.py +3 -0
  228. digitalhub/stores/data/s3/configurator.py +4 -0
  229. digitalhub/stores/data/s3/enums.py +4 -0
  230. digitalhub/stores/data/s3/store.py +4 -0
  231. digitalhub/stores/data/s3/utils.py +4 -0
  232. digitalhub/stores/data/sql/__init__.py +3 -0
  233. digitalhub/stores/data/sql/configurator.py +4 -0
  234. digitalhub/stores/data/sql/enums.py +4 -0
  235. digitalhub/stores/data/sql/store.py +4 -0
  236. digitalhub/stores/data/utils.py +4 -0
  237. digitalhub/stores/readers/__init__.py +3 -0
  238. digitalhub/stores/readers/data/__init__.py +3 -0
  239. digitalhub/stores/readers/data/_base/__init__.py +3 -0
  240. digitalhub/stores/readers/data/_base/builder.py +4 -0
  241. digitalhub/stores/readers/data/_base/reader.py +4 -0
  242. digitalhub/stores/readers/data/api.py +4 -0
  243. digitalhub/stores/readers/data/factory.py +4 -0
  244. digitalhub/stores/readers/data/pandas/__init__.py +3 -0
  245. digitalhub/stores/readers/data/pandas/builder.py +4 -0
  246. digitalhub/stores/readers/data/pandas/reader.py +4 -0
  247. digitalhub/stores/readers/query/__init__.py +3 -0
  248. digitalhub/utils/__init__.py +3 -0
  249. digitalhub/utils/enums.py +4 -0
  250. digitalhub/utils/exceptions.py +4 -0
  251. digitalhub/utils/file_utils.py +4 -0
  252. digitalhub/utils/generic_utils.py +4 -0
  253. digitalhub/utils/git_utils.py +4 -0
  254. digitalhub/utils/io_utils.py +4 -0
  255. digitalhub/utils/logger.py +4 -0
  256. digitalhub/utils/types.py +4 -0
  257. digitalhub/utils/uri_utils.py +4 -0
  258. digitalhub-0.12.0.dist-info/METADATA +301 -0
  259. digitalhub-0.12.0.dist-info/RECORD +262 -0
  260. digitalhub-0.12.0.dist-info/licenses/AUTHORS +5 -0
  261. digitalhub-0.12.0.dist-info/licenses/LICENSE +201 -0
  262. digitalhub-0.11.0b6.dist-info/METADATA +0 -259
  263. digitalhub-0.11.0b6.dist-info/RECORD +0 -256
  264. digitalhub-0.11.0b6.dist-info/licenses/LICENSE.txt +0 -216
  265. {digitalhub-0.11.0b6.dist-info → digitalhub-0.12.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,301 @@
1
+ Metadata-Version: 2.4
2
+ Name: digitalhub
3
+ Version: 0.12.0
4
+ Summary: Python SDK for Digitalhub
5
+ Project-URL: Homepage, https://github.com/scc-digitalhub/digitalhub-sdk
6
+ Author-email: Fondazione Bruno Kessler <digitalhub@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
7
+ License: Apache License
8
+ Version 2.0, January 2004
9
+ http://www.apache.org/licenses/
10
+
11
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
12
+
13
+ 1. Definitions.
14
+
15
+ "License" shall mean the terms and conditions for use, reproduction,
16
+ and distribution as defined by Sections 1 through 9 of this document.
17
+
18
+ "Licensor" shall mean the copyright owner or entity authorized by
19
+ the copyright owner that is granting the License.
20
+
21
+ "Legal Entity" shall mean the union of the acting entity and all
22
+ other entities that control, are controlled by, or are under common
23
+ control with that entity. For the purposes of this definition,
24
+ "control" means (i) the power, direct or indirect, to cause the
25
+ direction or management of such entity, whether by contract or
26
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
27
+ outstanding shares, or (iii) beneficial ownership of such entity.
28
+
29
+ "You" (or "Your") shall mean an individual or Legal Entity
30
+ exercising permissions granted by this License.
31
+
32
+ "Source" form shall mean the preferred form for making modifications,
33
+ including but not limited to software source code, documentation
34
+ source, and configuration files.
35
+
36
+ "Object" form shall mean any form resulting from mechanical
37
+ transformation or translation of a Source form, including but
38
+ not limited to compiled object code, generated documentation,
39
+ and conversions to other media types.
40
+
41
+ "Work" shall mean the work of authorship, whether in Source or
42
+ Object form, made available under the License, as indicated by a
43
+ copyright notice that is included in or attached to the work
44
+ (an example is provided in the Appendix below).
45
+
46
+ "Derivative Works" shall mean any work, whether in Source or Object
47
+ form, that is based on (or derived from) the Work and for which the
48
+ editorial revisions, annotations, elaborations, or other modifications
49
+ represent, as a whole, an original work of authorship. For the purposes
50
+ of this License, Derivative Works shall not include works that remain
51
+ separable from, or merely link (or bind by name) to the interfaces of,
52
+ the Work and Derivative Works thereof.
53
+
54
+ "Contribution" shall mean any work of authorship, including
55
+ the original version of the Work and any modifications or additions
56
+ to that Work or Derivative Works thereof, that is intentionally
57
+ submitted to Licensor for inclusion in the Work by the copyright owner
58
+ or by an individual or Legal Entity authorized to submit on behalf of
59
+ the copyright owner. For the purposes of this definition, "submitted"
60
+ means any form of electronic, verbal, or written communication sent
61
+ to the Licensor or its representatives, including but not limited to
62
+ communication on electronic mailing lists, source code control systems,
63
+ and issue tracking systems that are managed by, or on behalf of, the
64
+ Licensor for the purpose of discussing and improving the Work, but
65
+ excluding communication that is conspicuously marked or otherwise
66
+ designated in writing by the copyright owner as "Not a Contribution."
67
+
68
+ "Contributor" shall mean Licensor and any individual or Legal Entity
69
+ on behalf of whom a Contribution has been received by Licensor and
70
+ subsequently incorporated within the Work.
71
+
72
+ 2. Grant of Copyright License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ copyright license to reproduce, prepare Derivative Works of,
76
+ publicly display, publicly perform, sublicense, and distribute the
77
+ Work and such Derivative Works in Source or Object form.
78
+
79
+ 3. Grant of Patent License. Subject to the terms and conditions of
80
+ this License, each Contributor hereby grants to You a perpetual,
81
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
82
+ (except as stated in this section) patent license to make, have made,
83
+ use, offer to sell, sell, import, and otherwise transfer the Work,
84
+ where such license applies only to those patent claims licensable
85
+ by such Contributor that are necessarily infringed by their
86
+ Contribution(s) alone or by combination of their Contribution(s)
87
+ with the Work to which such Contribution(s) was submitted. If You
88
+ institute patent litigation against any entity (including a
89
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
90
+ or a Contribution incorporated within the Work constitutes direct
91
+ or contributory patent infringement, then any patent licenses
92
+ granted to You under this License for that Work shall terminate
93
+ as of the date such litigation is filed.
94
+
95
+ 4. Redistribution. You may reproduce and distribute copies of the
96
+ Work or Derivative Works thereof in any medium, with or without
97
+ modifications, and in Source or Object form, provided that You
98
+ meet the following conditions:
99
+
100
+ (a) You must give any other recipients of the Work or
101
+ Derivative Works a copy of this License; and
102
+
103
+ (b) You must cause any modified files to carry prominent notices
104
+ stating that You changed the files; and
105
+
106
+ (c) You must retain, in the Source form of any Derivative Works
107
+ that You distribute, all copyright, patent, trademark, and
108
+ attribution notices from the Source form of the Work,
109
+ excluding those notices that do not pertain to any part of
110
+ the Derivative Works; and
111
+
112
+ (d) If the Work includes a "NOTICE" text file as part of its
113
+ distribution, then any Derivative Works that You distribute must
114
+ include a readable copy of the attribution notices contained
115
+ within such NOTICE file, excluding those notices that do not
116
+ pertain to any part of the Derivative Works, in at least one
117
+ of the following places: within a NOTICE text file distributed
118
+ as part of the Derivative Works; within the Source form or
119
+ documentation, if provided along with the Derivative Works; or,
120
+ within a display generated by the Derivative Works, if and
121
+ wherever such third-party notices normally appear. The contents
122
+ of the NOTICE file are for informational purposes only and
123
+ do not modify the License. You may add Your own attribution
124
+ notices within Derivative Works that You distribute, alongside
125
+ or as an addendum to the NOTICE text from the Work, provided
126
+ that such additional attribution notices cannot be construed
127
+ as modifying the License.
128
+
129
+ You may add Your own copyright statement to Your modifications and
130
+ may provide additional or different license terms and conditions
131
+ for use, reproduction, or distribution of Your modifications, or
132
+ for any such Derivative Works as a whole, provided Your use,
133
+ reproduction, and distribution of the Work otherwise complies with
134
+ the conditions stated in this License.
135
+
136
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
137
+ any Contribution intentionally submitted for inclusion in the Work
138
+ by You to the Licensor shall be under the terms and conditions of
139
+ this License, without any additional terms or conditions.
140
+ Notwithstanding the above, nothing herein shall supersede or modify
141
+ the terms of any separate license agreement you may have executed
142
+ with Licensor regarding such Contributions.
143
+
144
+ 6. Trademarks. This License does not grant permission to use the trade
145
+ names, trademarks, service marks, or product names of the Licensor,
146
+ except as required for reasonable and customary use in describing the
147
+ origin of the Work and reproducing the content of the NOTICE file.
148
+
149
+ 7. Disclaimer of Warranty. Unless required by applicable law or
150
+ agreed to in writing, Licensor provides the Work (and each
151
+ Contributor provides its Contributions) on an "AS IS" BASIS,
152
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
153
+ implied, including, without limitation, any warranties or conditions
154
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
155
+ PARTICULAR PURPOSE. You are solely responsible for determining the
156
+ appropriateness of using or redistributing the Work and assume any
157
+ risks associated with Your exercise of permissions under this License.
158
+
159
+ 8. Limitation of Liability. In no event and under no legal theory,
160
+ whether in tort (including negligence), contract, or otherwise,
161
+ unless required by applicable law (such as deliberate and grossly
162
+ negligent acts) or agreed to in writing, shall any Contributor be
163
+ liable to You for damages, including any direct, indirect, special,
164
+ incidental, or consequential damages of any character arising as a
165
+ result of this License or out of the use or inability to use the
166
+ Work (including but not limited to damages for loss of goodwill,
167
+ work stoppage, computer failure or malfunction, or any and all
168
+ other commercial damages or losses), even if such Contributor
169
+ has been advised of the possibility of such damages.
170
+
171
+ 9. Accepting Warranty or Additional Liability. While redistributing
172
+ the Work or Derivative Works thereof, You may choose to offer,
173
+ and charge a fee for, acceptance of support, warranty, indemnity,
174
+ or other liability obligations and/or rights consistent with this
175
+ License. However, in accepting such obligations, You may act only
176
+ on Your own behalf and on Your sole responsibility, not on behalf
177
+ of any other Contributor, and only if You agree to indemnify,
178
+ defend, and hold each Contributor harmless for any liability
179
+ incurred by, or claims asserted against, such Contributor by reason
180
+ of your accepting any such warranty or additional liability.
181
+
182
+ END OF TERMS AND CONDITIONS
183
+
184
+ APPENDIX: How to apply the Apache License to your work.
185
+
186
+ To apply the Apache License to your work, attach the following
187
+ boilerplate notice, with the fields enclosed by brackets "{}"
188
+ replaced with your own identifying information. (Don't include
189
+ the brackets!) The text should be enclosed in the appropriate
190
+ comment syntax for the file format. We also recommend that a
191
+ file or class name and description of purpose be included on the
192
+ same "printed page" as the copyright notice for easier
193
+ identification within third-party archives.
194
+
195
+ Copyright 2025 DSLab, Fondazione Bruno Kessler
196
+
197
+ Licensed under the Apache License, Version 2.0 (the "License");
198
+ you may not use this file except in compliance with the License.
199
+ You may obtain a copy of the License at
200
+
201
+ http://www.apache.org/licenses/LICENSE-2.0
202
+
203
+ Unless required by applicable law or agreed to in writing, software
204
+ distributed under the License is distributed on an "AS IS" BASIS,
205
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
206
+ See the License for the specific language governing permissions and
207
+ limitations under the License.
208
+ License-File: AUTHORS
209
+ License-File: LICENSE
210
+ Keywords: data,dataops,kubernetes
211
+ Classifier: License :: OSI Approved :: Apache Software License
212
+ Classifier: Programming Language :: Python :: 3.9
213
+ Classifier: Programming Language :: Python :: 3.10
214
+ Classifier: Programming Language :: Python :: 3.11
215
+ Classifier: Programming Language :: Python :: 3.12
216
+ Requires-Python: <3.13,>=3.9
217
+ Requires-Dist: boto3
218
+ Requires-Dist: gitpython>=3
219
+ Requires-Dist: numpy
220
+ Requires-Dist: psycopg2-binary
221
+ Requires-Dist: pyarrow
222
+ Requires-Dist: pydantic
223
+ Requires-Dist: python-slugify
224
+ Requires-Dist: pyyaml
225
+ Requires-Dist: requests
226
+ Requires-Dist: sqlalchemy
227
+ Provides-Extra: dev
228
+ Requires-Dist: bumpver; extra == 'dev'
229
+ Requires-Dist: jsonschema; extra == 'dev'
230
+ Requires-Dist: pytest; extra == 'dev'
231
+ Requires-Dist: pytest-cov; extra == 'dev'
232
+ Provides-Extra: full
233
+ Requires-Dist: mlflow; extra == 'full'
234
+ Requires-Dist: pandas; extra == 'full'
235
+ Provides-Extra: mlflow
236
+ Requires-Dist: mlflow; extra == 'mlflow'
237
+ Provides-Extra: pandas
238
+ Requires-Dist: pandas; extra == 'pandas'
239
+ Description-Content-Type: text/markdown
240
+
241
+ # DigitalHub SDK
242
+
243
+ [![license](https://img.shields.io/badge/license-Apache%202.0-blue)](https://github.com/scc-digitalhub/digitalhub-sdk/LICENSE) ![GitHub Release](https://img.shields.io/github/v/release/scc-digitalhub/digitalhub-sdk)
244
+ ![Status](https://img.shields.io/badge/status-stable-gold)
245
+
246
+ The Digitalhub library is a python tool for managing projects, entities and executions in Digitalhub. It exposes CRUD methods to create, read, update and delete entities, tools to execute functions or workflows, collect or store execution results and data.
247
+
248
+ Explore the full documentation at the [link](https://scc-digitalhub.github.io/sdk-docs/).
249
+
250
+ ## Quick start
251
+
252
+ To install the Digitalhub, you can use pip:
253
+
254
+ ```bash
255
+ pip install digitalhub
256
+ ```
257
+
258
+ To be able to create and execute functions or workflows, you need to install the runtime you want to use. The Digitalhub SDK supports multiple runtimes, each with its own installation instructions:
259
+
260
+ - [Digitalhub SDK Runtime Python](https://github.com/scc-digitalhub/digitalhub-sdk-runtime-python)
261
+ - [Digitalhub SDK Runtime Dbt](https://github.com/scc-digitalhub/digitalhub-sdk-runtime-dbt)
262
+ - [Digitalhub SDK Runtime Container](https://github.com/scc-digitalhub/digitalhub-sdk-runtime-container)
263
+ - [Digitalhub SDK Runtime Kfp](https://github.com/scc-digitalhub/digitalhub-sdk-runtime-kfp)
264
+ - [Digitalhub SDK Runtime Modelserve](https://github.com/scc-digitalhub/digitalhub-sdk-runtime-modelserve)
265
+
266
+ ## Development
267
+
268
+ See CONTRIBUTING for contribution instructions.
269
+
270
+ ## Security Policy
271
+
272
+ The current release is the supported version. Security fixes are released together with all other fixes in each new release.
273
+
274
+ If you discover a security vulnerability in this project, please do not open a public issue.
275
+
276
+ Instead, report it privately by emailing us at digitalhub@fbk.eu. Include as much detail as possible to help us understand and address the issue quickly and responsibly.
277
+
278
+ ## Contributing
279
+
280
+ To report a bug or request a feature, please first check the existing issues to avoid duplicates. If none exist, open a new issue with a clear title and a detailed description, including any steps to reproduce if it's a bug.
281
+
282
+ To contribute code, start by forking the repository. Clone your fork locally and create a new branch for your changes. Make sure your commits follow the [Conventional Commits v1.0](https://www.conventionalcommits.org/en/v1.0.0/) specification to keep history readable and consistent.
283
+
284
+ Once your changes are ready, push your branch to your fork and open a pull request against the main branch. Be sure to include a summary of what you changed and why. If your pull request addresses an issue, mention it in the description (e.g., “Closes #123”).
285
+
286
+ Please note that new contributors may be asked to sign a Contributor License Agreement (CLA) before their pull requests can be merged. This helps us ensure compliance with open source licensing standards.
287
+
288
+ We appreciate contributions and help in improving the project!
289
+
290
+ ## Authors
291
+
292
+ This project is developed and maintained by **DSLab – Fondazione Bruno Kessler**, with contributions from the open source community. A complete list of contributors is available in the project’s commit history and pull requests.
293
+
294
+ For questions or inquiries, please contact: [digitalhub@fbk.eu](mailto:digitalhub@fbk.eu)
295
+
296
+ ## Copyright and license
297
+
298
+ Copyright © 2025 DSLab – Fondazione Bruno Kessler and individual contributors.
299
+
300
+ This project is licensed under the Apache License, Version 2.0.
301
+ You may not use this file except in compliance with the License. Ownership of contributions remains with the original authors and is governed by the terms of the Apache 2.0 License, including the requirement to grant a license to the project.
@@ -0,0 +1,262 @@
1
+ digitalhub/__init__.py,sha256=bNRsaXjlun6oYs0sS5_TMcQFT6ps6kAsJoJsFy48DLE,2565
2
+ digitalhub/context/api.py,sha256=A7h-IOZwjRbnGB9Sf7OFTwRwjP6ui5qyUh9LMicNlvk,1484
3
+ digitalhub/context/builder.py,sha256=RuDhIFncesERKBvQ5FQu2EXIasieSk2Mr5Schkc0lyA,2844
4
+ digitalhub/context/context.py,sha256=0DpTZqlTCoHXqxbvSIithSe2fJMHGU48_MICkfWpYXQ,2153
5
+ digitalhub/entities/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
6
+ digitalhub/entities/builders.py,sha256=I-RVAFNgnZGmx7Dyz8_n7gfsG-BVgbgfraJal5NWipE,2054
7
+ digitalhub/entities/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
8
+ digitalhub/entities/_base/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
9
+ digitalhub/entities/_base/_base/entity.py,sha256=Uu_C1xpw8j4bRAJhA-rD3SF8jvluoAEvUS66pE9Y_0g,2282
10
+ digitalhub/entities/_base/context/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
11
+ digitalhub/entities/_base/context/entity.py,sha256=lTw0U1OQnOJfjjvu5oJhOucTJqGL6xPtKhW0YPn5utY,3408
12
+ digitalhub/entities/_base/entity/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
13
+ digitalhub/entities/_base/entity/builder.py,sha256=GyeG1CSeerd1dPBNMoAHBzu4-oJXU33tAplKBAAPO2g,4919
14
+ digitalhub/entities/_base/entity/entity.py,sha256=dHjDjX5k4EPsXq4LQdseiCJekIkeWOSxXBOypQaWLu0,3331
15
+ digitalhub/entities/_base/entity/metadata.py,sha256=iX_dwpABPh3EBPTJs5mtSrwnylw4Bm7zjZnNdOG__UU,2369
16
+ digitalhub/entities/_base/entity/spec.py,sha256=nGlE8xgAZXT5zs1annWaPLvPRYaqxqzjjrhAhvNiQkA,1608
17
+ digitalhub/entities/_base/entity/status.py,sha256=0txG13WDPJE-vRAUkJQYEHMsSzer6qTvTo7xqzbg66Y,1152
18
+ digitalhub/entities/_base/entity/_constructors/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
19
+ digitalhub/entities/_base/entity/_constructors/metadata.py,sha256=VxZw341nIw92iR_3-o2_y8I7xle1TTBAs1M5hx2eXpo,1699
20
+ digitalhub/entities/_base/entity/_constructors/name.py,sha256=NihAyRls8rztOxYautJcLtKIYOrQUWWubq_-S2uYQ3o,595
21
+ digitalhub/entities/_base/entity/_constructors/spec.py,sha256=vtCcVTYu8Rg6KRvr5awvtkvCAyLtQGlve6aPiyOtLPU,958
22
+ digitalhub/entities/_base/entity/_constructors/status.py,sha256=PrnouXDllZxS7t6pzbMohTov8QTne0cx3WVE37JGoSw,1298
23
+ digitalhub/entities/_base/entity/_constructors/uuid.py,sha256=7QhQ9epJAnYLCKUPY6AMXOe72nPT8xZRnNM98p_vTnM,663
24
+ digitalhub/entities/_base/executable/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
25
+ digitalhub/entities/_base/executable/entity.py,sha256=XNzJK8I9M0WKQlo5mSK9ZUBasm7W31D-Tdu78_aGCuc,11695
26
+ digitalhub/entities/_base/material/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
27
+ digitalhub/entities/_base/material/entity.py,sha256=Dk6htF3H4akcC8oc2_zK2B7yrTEeHu5cI6cukqh7ymU,7123
28
+ digitalhub/entities/_base/material/spec.py,sha256=7lF_Pv7zGJUAR2ixmmCt-UPnoASgOLxnb9yffqwBVp8,544
29
+ digitalhub/entities/_base/material/status.py,sha256=vAIb5qti5KxdIPdB9WYmWrCnqwGyUxuF6CpGSpcWxbE,520
30
+ digitalhub/entities/_base/material/utils.py,sha256=xUl0jAW-upPwYjSSmkY4VqtLMxyaGv59XF_Zz-zmgPE,2514
31
+ digitalhub/entities/_base/runtime_entity/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
32
+ digitalhub/entities/_base/runtime_entity/builder.py,sha256=VvhNKHeMj434q-bMQsoBN_abz2igvQAqIFYQ-abzX8c,2522
33
+ digitalhub/entities/_base/unversioned/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
34
+ digitalhub/entities/_base/unversioned/builder.py,sha256=7wCE8FgFOBJ6ocBAU0hG3ZyEJFmIEEywz3rx0XatK3Y,1942
35
+ digitalhub/entities/_base/unversioned/entity.py,sha256=N8uco8trn6uF07TkwX6xsJoL_PRlNiY46Xcid00PbxU,984
36
+ digitalhub/entities/_base/versioned/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
37
+ digitalhub/entities/_base/versioned/builder.py,sha256=DkvMdPwyz45Nyk5Mv0IQQG2X69aA0rQmhAq67ZXCM6M,2004
38
+ digitalhub/entities/_base/versioned/entity.py,sha256=RZp1HkrgZTxSGUR1UcegCrNwG_USo46tsy9EQvUQSRE,1007
39
+ digitalhub/entities/_commons/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
40
+ digitalhub/entities/_commons/enums.py,sha256=6V-XMDlDIvLyexwcWtMpSfel1DBonYGCg34qcF4LTd8,2161
41
+ digitalhub/entities/_commons/metrics.py,sha256=Jd8jHuz8SYdSZ4aKbbapbVDmw9oK9ZZwXiOgc6br2IY,3513
42
+ digitalhub/entities/_commons/types.py,sha256=YvHDcgssDdfAvLHI3mXnXvvK6O_CwA1-o4wQS3IU9lk,226
43
+ digitalhub/entities/_commons/utils.py,sha256=6iBhKLnoGVsgEbMWlOZJfi2K7FmyRKzvYoSZIswSzpc,1954
44
+ digitalhub/entities/_processors/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
45
+ digitalhub/entities/_processors/base.py,sha256=HGWBdZCBHa2rP2cg5WsvtwBjWf4dDo6HBhCRmzFc54Y,13548
46
+ digitalhub/entities/_processors/context.py,sha256=gTKO9t0H6tYLm2AHkZmqP2-kwlNfsq5DK45CyvdK_yo,34679
47
+ digitalhub/entities/_processors/utils.py,sha256=sWWDbKO-UlR0V9n89fq2ixAaor8NvRhsgwrXuPklhqM,3899
48
+ digitalhub/entities/artifact/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
49
+ digitalhub/entities/artifact/crud.py,sha256=POGZNEGsxKvo9QcHa1uwsvokDuRhDKItqqIfsWCoy6w,8091
50
+ digitalhub/entities/artifact/utils.py,sha256=voZNwwg3qjPaJ7idNnGRGe_sRk4Pc3em2LNjEEJyCAk,1431
51
+ digitalhub/entities/artifact/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
52
+ digitalhub/entities/artifact/_base/builder.py,sha256=IByi2iCzA68WdYQ4BXLUEByamp1cnlcjlphnryWXR3c,2364
53
+ digitalhub/entities/artifact/_base/entity.py,sha256=i6bpYvbYxtjuQY-qpoqemLq42jbqKuArEYfJJvxfzeI,1215
54
+ digitalhub/entities/artifact/_base/spec.py,sha256=LbGtitYKD9Xv4ywlHbMIsUuWaVWWdNSL--Z50GW9Ays,408
55
+ digitalhub/entities/artifact/_base/status.py,sha256=l8GayduOgw0uh3p0V9EJUjemnhoDeitDEajOgZQ21QE,296
56
+ digitalhub/entities/artifact/artifact/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
57
+ digitalhub/entities/artifact/artifact/builder.py,sha256=rARa5dLamd08TjSTI5TAKGh-EPvJi_uEKXvHQGui2qY,866
58
+ digitalhub/entities/artifact/artifact/entity.py,sha256=__dfLAo5HHbky-l_XQpPag_IEkk2MDSdfjWpIP7Echg,990
59
+ digitalhub/entities/artifact/artifact/spec.py,sha256=BAbL-7XtOF_tDnLizR39YLmKAdRAr3sCyMNr1K5FVNI,740
60
+ digitalhub/entities/artifact/artifact/status.py,sha256=Aela65491_2NqqZG2OCvTsY9Gfverb1ng-_sYttcUI8,413
61
+ digitalhub/entities/dataitem/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
62
+ digitalhub/entities/dataitem/crud.py,sha256=maI2IvVPsEsr9SVpYYDGKyonvM3v3jXdxkcyiNv8oq4,8688
63
+ digitalhub/entities/dataitem/utils.py,sha256=Hl3CtX04NRlXOb8SOqgu49lVNmL7Fh3zqcY0hDcTtlQ,4507
64
+ digitalhub/entities/dataitem/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
65
+ digitalhub/entities/dataitem/_base/builder.py,sha256=uX5vxDJ8GxVk49NW9mHBKYhinJnfzLBObI7zy4J0TB0,2364
66
+ digitalhub/entities/dataitem/_base/entity.py,sha256=6GrqOY-S2p_sljzUdWgl5o_DlAbSbjIyCp7JJh__U_U,1053
67
+ digitalhub/entities/dataitem/_base/spec.py,sha256=k6ox9OB5R1Ulu2yWV6xfUC0XdezLEaIX4YUTAw-NZvs,408
68
+ digitalhub/entities/dataitem/_base/status.py,sha256=yPVy5M8aKGs5SRJ-bvMsFNK0ebg5xXmVLKjiR2YuqII,575
69
+ digitalhub/entities/dataitem/dataitem/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
70
+ digitalhub/entities/dataitem/dataitem/builder.py,sha256=nQrCZIydaI_dN2yHusLC3RqNAykBhPkt0bdyVDWs9iw,866
71
+ digitalhub/entities/dataitem/dataitem/entity.py,sha256=Mfm9G0l4-gDBFbBHa69h-bLHDhyGaNoSt7Cwoz1l6z0,990
72
+ digitalhub/entities/dataitem/dataitem/spec.py,sha256=rljAfdYugqjQCwig9mzS99sEdGaVF_dPVJl8LgYT594,440
73
+ digitalhub/entities/dataitem/dataitem/status.py,sha256=RgiUvjjDXidDZUc-U_9BIY1z_IyXOeuQRr_PjsLpvAM,312
74
+ digitalhub/entities/dataitem/iceberg/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
75
+ digitalhub/entities/dataitem/iceberg/builder.py,sha256=5vg6DcStmMd9WAuH2ZBxvtyvM3oghDTcWc7jiMmjL7c,852
76
+ digitalhub/entities/dataitem/iceberg/entity.py,sha256=fTGF9pyK2xQVE8Dv3mX9G3tc-UcXQII5NPH2BpuXutk,980
77
+ digitalhub/entities/dataitem/iceberg/spec.py,sha256=vtfaV9OE1WBKTtTHoYSdMnjQfUeyULeR1q25VM_93tw,436
78
+ digitalhub/entities/dataitem/iceberg/status.py,sha256=HMBNAzqQplUxmnnIVb57cCcjhmUQ1v8K3wAGUnYdRlA,310
79
+ digitalhub/entities/dataitem/table/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
80
+ digitalhub/entities/dataitem/table/builder.py,sha256=FoXrW09HXCZ0XNnCPHNSZs_iLrIG_8WPCZo_5Vq6_YI,824
81
+ digitalhub/entities/dataitem/table/entity.py,sha256=F1lUFJTpxOzgBfu8olHMttTf1_FlIasp1r6D3vlmizU,4256
82
+ digitalhub/entities/dataitem/table/models.py,sha256=5wqwm4GQjikdJVtDPEn5hwUR_FWxW_7hwIf-GLikqjQ,1269
83
+ digitalhub/entities/dataitem/table/spec.py,sha256=oYgh5XqFrdzIpGxXe1FW5bsGlFHokUJdHJSamuyFs4k,779
84
+ digitalhub/entities/dataitem/table/status.py,sha256=_-_UrcPZh3maGENDZ99pLA8Gz1yrXapvsxs_lPI1skw,306
85
+ digitalhub/entities/dataitem/table/utils.py,sha256=lKo977VKvjtq3EPLIf-V6-LAwSz7ZPgadvaAmK42ML8,2555
86
+ digitalhub/entities/function/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
87
+ digitalhub/entities/function/crud.py,sha256=59PrfyIWydouTKGVnPOxw0kKqZZCOXDSmJEzi-gtweQ,6770
88
+ digitalhub/entities/function/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
89
+ digitalhub/entities/function/_base/builder.py,sha256=tmpcf5VGi5T24AQaa_lvmdi53mliObGMd59eDAwlWlw,2143
90
+ digitalhub/entities/function/_base/entity.py,sha256=hQQMMxr5vZAf0gC5Qs8Jlqxzdp3bKhJ6uawJemdCnKs,3189
91
+ digitalhub/entities/function/_base/spec.py,sha256=qDiqfe6zSFYYH-kXPmm4R_LId985V24hO2ikFApv-6U,382
92
+ digitalhub/entities/function/_base/status.py,sha256=wjCUr2HoQQUL4fwTjvPE8eubkCeVxbe2VV8zs0BJ5RY,278
93
+ digitalhub/entities/model/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
94
+ digitalhub/entities/model/crud.py,sha256=xSLnWpXqkwCVyDKtrNlIJm7S-sfw-GqtFghVQzY_nyM,7872
95
+ digitalhub/entities/model/utils.py,sha256=NJeevJM5QbWzRPXkFyINS9qR1epPVJKV9djTjmwdpMI,1428
96
+ digitalhub/entities/model/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
97
+ digitalhub/entities/model/_base/builder.py,sha256=6kG8-NNIup2B2GE5ABg9QwV3LoyThnw4KEYABm9kxPg,2343
98
+ digitalhub/entities/model/_base/entity.py,sha256=iSIVUXGiSZu8icogQQNKB3wjw88SLIKTyvJT38HWVtI,5090
99
+ digitalhub/entities/model/_base/spec.py,sha256=O0Gk08r6AtSL7tfYPdb-XkK2agqaIOISh9hgk8R1Bqs,973
100
+ digitalhub/entities/model/_base/status.py,sha256=iL7342J6-Dj0gpXANDYh9FOICunKMEgBqTs7SEC8OoI,574
101
+ digitalhub/entities/model/huggingface/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
102
+ digitalhub/entities/model/huggingface/builder.py,sha256=wLfr_Dc1_3PyKDLpYqFXk3Qk0A8B1Sl6OVGOUQCliDA,857
103
+ digitalhub/entities/model/huggingface/entity.py,sha256=s07jiNYmW2Gc01tFuKK9J8WNyWGQcl5AaPrXemPcTmw,981
104
+ digitalhub/entities/model/huggingface/spec.py,sha256=_BgP7n04UVpcSTPaO8VBGOTcFggUg-shIAcsbHXe9bc,1307
105
+ digitalhub/entities/model/huggingface/status.py,sha256=ABeP_XcYgjy_5ezJC0BPqXeD-heKI__6mWGBsOf0y24,303
106
+ digitalhub/entities/model/mlflow/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
107
+ digitalhub/entities/model/mlflow/builder.py,sha256=deKm6Ej7B7wGi6lp0UapXx7xrPR1prP3AMsp18Iyh6M,786
108
+ digitalhub/entities/model/mlflow/entity.py,sha256=7ADdfGjBg8NJl5M5S1-kMzsQflvR3x_atDwjE5tBvrw,931
109
+ digitalhub/entities/model/mlflow/models.py,sha256=lVbTTn32upzZ9HAU0POuB4xRd4XLO0pbuD7EnJzSncE,774
110
+ digitalhub/entities/model/mlflow/spec.py,sha256=rG6tG_LFYbCSTAYh2Q-9RzmVw3sDVL-aaTiH6KBuyWE,1435
111
+ digitalhub/entities/model/mlflow/status.py,sha256=QdLks4orC45JjugQXwZm9K2c8u5LXMUOUAqpUwGPFN8,293
112
+ digitalhub/entities/model/mlflow/utils.py,sha256=0ER5TmK0UYMGKrCKUHI6iHt4luXSkk8TiAULd-SnuU4,2981
113
+ digitalhub/entities/model/model/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
114
+ digitalhub/entities/model/model/builder.py,sha256=Y9v98sNF9dtGPIp5O7dfe91jNHj4SdlztS0XCjHcotk,774
115
+ digitalhub/entities/model/model/entity.py,sha256=zdRNjq__PnxlxjLLb9Y9MZ-U11nEF5GO4SG2e76I67A,921
116
+ digitalhub/entities/model/model/spec.py,sha256=hQJK46PiB4bhnWeJR748c_N1MCRhkXoyl7Zy40fGGhY,401
117
+ digitalhub/entities/model/model/status.py,sha256=75x66HcmkvHzA4uMNyl88IhxKUmISc5UVBiI-T9_46Q,291
118
+ digitalhub/entities/model/sklearn/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
119
+ digitalhub/entities/model/sklearn/builder.py,sha256=XjHEg2LO9MHqBPDt28qLOyNkt_p6FPYAINP6ZxdfFlk,801
120
+ digitalhub/entities/model/sklearn/entity.py,sha256=PvjW0xMyLEPH3bO8FAOEdu1H1hp1re0NGvzX5vHobPA,941
121
+ digitalhub/entities/model/sklearn/spec.py,sha256=AEoiRp2T46z8IrQ-BHx1rtd4b_yaEZJSQ_necKjkjjw,409
122
+ digitalhub/entities/model/sklearn/status.py,sha256=YBf5joe8hJH59U92m0JKFlmLCRpNj0EyR3mA7DKiVrQ,295
123
+ digitalhub/entities/project/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
124
+ digitalhub/entities/project/crud.py,sha256=ceN7EQNjzgmwz2-nT5kPOBJh1urMIo0LRJImsJwBtyA,8456
125
+ digitalhub/entities/project/utils.py,sha256=-w09JUVOETxpfL0BXPv_vzV0gfxUlrSZKwAGjb8zDWI,1119
126
+ digitalhub/entities/project/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
127
+ digitalhub/entities/project/_base/builder.py,sha256=PGOqTHUsCn5CtnJusnT6U2zytxKpSNBBsFnXBgBUe2k,3884
128
+ digitalhub/entities/project/_base/entity.py,sha256=KGNLes6-ZsxNJ0vJQd4d3LEtw1GX9GaOudphw0TGavo,57318
129
+ digitalhub/entities/project/_base/models.py,sha256=_TvjQgMd6EwzGIks9dNszBNMT5BHTwtLce-TDTObSoY,482
130
+ digitalhub/entities/project/_base/spec.py,sha256=AHW9qBJvjdhyUOu2V9Fu7CCzcjWawHsFfqNtN9Zhqrk,1777
131
+ digitalhub/entities/project/_base/status.py,sha256=afEb5CGeovM5VLPsxzP4k2QGEZjhhGkpEmVlK0Fh7sE,276
132
+ digitalhub/entities/run/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
133
+ digitalhub/entities/run/crud.py,sha256=0_Ly_k5svwo9Y1lYSjGYOF94ibCe6hkHNm3FndRxdiY,5045
134
+ digitalhub/entities/run/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
135
+ digitalhub/entities/run/_base/builder.py,sha256=nzQln5Hvl9teYJgSql1z5rr-8iizunK0MSz4iIGb-BE,2562
136
+ digitalhub/entities/run/_base/entity.py,sha256=GjzLB5w0kEuKkZAuL4hP893Xwwem_qQ-f833VzMY2-8,11181
137
+ digitalhub/entities/run/_base/spec.py,sha256=n6S-hUBJDaHiqHqJCAdOzzAFpp0pvEa96PafND-HYdw,1830
138
+ digitalhub/entities/run/_base/status.py,sha256=BFHUlvFJHXWNsawThd2WpfwisFBnzyTy5KVPAIJGeNM,638
139
+ digitalhub/entities/secret/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
140
+ digitalhub/entities/secret/crud.py,sha256=8LWbkUPHgdSxuCGFjxk3GYIp4gq8hDVeOPHI2Pya9mo,7080
141
+ digitalhub/entities/secret/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
142
+ digitalhub/entities/secret/_base/builder.py,sha256=_jx7lgvbnFNpqbwT8-HYb5GNiNSg_KWA3Ngzz6l9bc4,2303
143
+ digitalhub/entities/secret/_base/entity.py,sha256=LBgVS8FRZJAsLl1QMjvpVDmf_Q1qm3_feZr6F9Fv-_4,1928
144
+ digitalhub/entities/secret/_base/spec.py,sha256=r0wCaHLLBg2MDYPLgud8NbJ0UgjwBCoSkpCFAjvycTw,884
145
+ digitalhub/entities/secret/_base/status.py,sha256=cpHwYdk4hhPIXzjkqgF9cvqSCR5CKFaY-ffyV46LBsA,274
146
+ digitalhub/entities/task/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
147
+ digitalhub/entities/task/crud.py,sha256=Jpm3WiorsQk4DzVLT22gM-bf1conrD9JZW5lbvqsNBo,5503
148
+ digitalhub/entities/task/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
149
+ digitalhub/entities/task/_base/builder.py,sha256=1aZxj5z_9mlNWZzXJfd1sVCln6zDn-CMbWK7ToFkHQ8,2466
150
+ digitalhub/entities/task/_base/entity.py,sha256=zzszVSuS-2GDmxgr38EMsLVQOm99055BxUoh0nE7sdU,3632
151
+ digitalhub/entities/task/_base/models.py,sha256=mCthumC_xViTzW8hhN06V9OpwhSFcwSLLpUTHa2ykWE,5664
152
+ digitalhub/entities/task/_base/spec.py,sha256=TQ7IXW_QnTGxFvVDk0M22DlaqMWm9Klq1Yk6LGBAhEM,2608
153
+ digitalhub/entities/task/_base/status.py,sha256=9TazT1vKJT8NRvh__ymKJ89CUUcf7UhnLREcvudrFTU,270
154
+ digitalhub/entities/task/_base/utils.py,sha256=27PY09zz0o-AegdYpxSUIeaT9cJgk1dltBUK-DC_7wk,556
155
+ digitalhub/entities/trigger/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
156
+ digitalhub/entities/trigger/crud.py,sha256=HCbNjDk57TLoGE9m_5zMu0T-MtuQLU0v8BOsxLfWzLc,6997
157
+ digitalhub/entities/trigger/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
158
+ digitalhub/entities/trigger/_base/builder.py,sha256=JhRVtp6JMue-05zr-bQ3gjm4Dh_g0bnBhzdJi6OR5Y0,1835
159
+ digitalhub/entities/trigger/_base/entity.py,sha256=YC1_AVPowB4CE0yqtlVDaNdTwa37kax9uPX3hfdha5c,1045
160
+ digitalhub/entities/trigger/_base/spec.py,sha256=WvGjEIitoRFTHfFgU-nd-_eRoEQVk4-yJl9FC6h5P_g,882
161
+ digitalhub/entities/trigger/_base/status.py,sha256=9WFjIiX7SjikTVDrZn2ntIk2moBa-ChlTXCUDN0ecxU,276
162
+ digitalhub/entities/trigger/lifecycle/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
163
+ digitalhub/entities/trigger/lifecycle/builder.py,sha256=-1XMDMCBvSjF9FKbNDGX0Bon_IUxjeM2qcfOUGfWxmA,863
164
+ digitalhub/entities/trigger/lifecycle/entity.py,sha256=frEvXNR8uq0JZSNAQS-z6O9QBTz90_y9TaFxrYxLU7A,987
165
+ digitalhub/entities/trigger/lifecycle/spec.py,sha256=vEoql1Yq0hfIswz-h6s23OHuf2h5zMRIDDjUZ3_wWc4,971
166
+ digitalhub/entities/trigger/lifecycle/status.py,sha256=Y9HAAvA-8NckLoVv8lgAo84E-d0HT6Q4uUEFGeLS0cg,309
167
+ digitalhub/entities/trigger/scheduler/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
168
+ digitalhub/entities/trigger/scheduler/builder.py,sha256=xHNbkNC-h5unkDsGqMBLJ22rDXYYcmUTh8ZvGfHhQAs,863
169
+ digitalhub/entities/trigger/scheduler/entity.py,sha256=05VLQK0np31QPu0Dwp8mpC2VR1in8_3Id5eqcFIpwlo,987
170
+ digitalhub/entities/trigger/scheduler/spec.py,sha256=xU6Oh1okj_toJmMyaAy7QufPxIw_QIuwQG6OizVgdm0,784
171
+ digitalhub/entities/trigger/scheduler/status.py,sha256=uSyUnryssv70w-6k6F2qmrnd-OtuUwHarexjN7OconA,309
172
+ digitalhub/entities/workflow/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
173
+ digitalhub/entities/workflow/crud.py,sha256=xjNlUO-vvXqIBscvB1GAmyAtopx-OROHX94Mty3ATUw,6695
174
+ digitalhub/entities/workflow/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
175
+ digitalhub/entities/workflow/_base/builder.py,sha256=G0IyxVzHa_640vZiljTcCKF8hmfBQfrQsOj8QInU2Ok,2143
176
+ digitalhub/entities/workflow/_base/entity.py,sha256=8btCq8f80llz8P8UXxw5hp7cwCwhTqlY4vn3iW59zoc,2612
177
+ digitalhub/entities/workflow/_base/spec.py,sha256=3TKGDnf8_47H5hMl38DWz7rXp2d-zsz8wRzV8fSlFb8,382
178
+ digitalhub/entities/workflow/_base/status.py,sha256=sIZJOUBLB7UKqCMnaGBz1l6Kc3wg9u0518ce1ebHInM,278
179
+ digitalhub/factory/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
180
+ digitalhub/factory/factory.py,sha256=otdsA1LBMXhkIdF5SP_Kz5gmOL6wbuc3P3oIAQujGcg,9584
181
+ digitalhub/factory/utils.py,sha256=kdyMg0P4LsE8UTAq4Rzh7QZKfaCJJtx4c2xMNi-BeGQ,3159
182
+ digitalhub/runtimes/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
183
+ digitalhub/runtimes/_base.py,sha256=IVqCnNnx098HmsFicLG3lrU97975F0q7uyWWfd-7deU,3089
184
+ digitalhub/runtimes/builder.py,sha256=24DkmWAkny6UJWWObSvEP1870PQIXLDfwTtjgdcG1QM,1246
185
+ digitalhub/runtimes/enums.py,sha256=MCaeTOD3Bd6cdXnOlbklmRJ6rBHctJ-iJFiCrRM4Sx0,634
186
+ digitalhub/stores/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
187
+ digitalhub/stores/client/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
188
+ digitalhub/stores/client/api.py,sha256=CxuZ7rWujc0mH4orrO4tblhVS733oqrCYUQlsy827bI,708
189
+ digitalhub/stores/client/builder.py,sha256=dHy2OXgoavmgcaEFNUY3guQii8udzGywQeT1gazLjIg,1324
190
+ digitalhub/stores/client/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
191
+ digitalhub/stores/client/_base/api_builder.py,sha256=_9V9Z9fkQCBW-HslwX9-fHokqqlUDHaDSUGMJepMEkE,488
192
+ digitalhub/stores/client/_base/client.py,sha256=QcAHTr0I8dBRiXjfFtLCBeBT5TRkXD8uhKph3HHMvqw,3780
193
+ digitalhub/stores/client/_base/key_builder.py,sha256=AxKZfF282phwA6fpBw8ykL5HfKMsto_fVIWIaICA1-0,1263
194
+ digitalhub/stores/client/_base/params_builder.py,sha256=FW4EV3argXAZvR83pWjWH1Wr-aCcqiEv4HeTmph1NBE,535
195
+ digitalhub/stores/client/dhcore/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
196
+ digitalhub/stores/client/dhcore/api_builder.py,sha256=VOreSbN0kptqjL38HsozLs6kXbo9IlRBNjuEiGNAEVA,4083
197
+ digitalhub/stores/client/dhcore/client.py,sha256=IDL5c5N9tvT8EwUCe_CAuoJt5owDGL323fRo1oR2CGk,9998
198
+ digitalhub/stores/client/dhcore/configurator.py,sha256=3s71vAW4-S_5Ujc_lKBYrSIWJUJDgR75ZOYiRMr2Zf4,11301
199
+ digitalhub/stores/client/dhcore/enums.py,sha256=bJGd3Q8IZDKqtMYtUNW4o5VLbzv1ogL0sNY9biuRMDI,631
200
+ digitalhub/stores/client/dhcore/error_parser.py,sha256=8Kq16vVhWOQlfHhCzJbSyFHQ5_xgtnyUcf4NjExW11M,3413
201
+ digitalhub/stores/client/dhcore/key_builder.py,sha256=wD8kB0LHOvf669pzF8D6ksZ3GJfWmbDYDFbGs3TnaPo,1432
202
+ digitalhub/stores/client/dhcore/models.py,sha256=YPBG7ySfNBPKQtvgNVe2FRSVNxvZf_dCDhfQh7WkDro,750
203
+ digitalhub/stores/client/dhcore/params_builder.py,sha256=qtXpk-mYwcZ5YUBVXgh-g1WZaxImtR0rbPz0yp0d4zw,5955
204
+ digitalhub/stores/client/dhcore/utils.py,sha256=3c-wfHK4tV6IxsRKAv6Yt6HYBtgi_P3Ck020W5plsMA,2047
205
+ digitalhub/stores/client/local/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
206
+ digitalhub/stores/client/local/api_builder.py,sha256=4gT8P5cV-ngfWWn-KHmxef4dWInJ3Ru5mJ-DGodGSIQ,3151
207
+ digitalhub/stores/client/local/client.py,sha256=qAwJjZOA0Vr5NG9VC5kxjuOdPdO29wUGJ53yDEto9Hs,18223
208
+ digitalhub/stores/client/local/enums.py,sha256=J4xf23H2AO8OKYPim2XO143A7j_X6dqfPSm03Sbi0AI,258
209
+ digitalhub/stores/client/local/key_builder.py,sha256=ijISHvPcMyx591gHlSP1IZdiRrFi0oVh8AqaWe1L_g0,1431
210
+ digitalhub/stores/client/local/params_builder.py,sha256=_hR4bwn0bpGc74iKb3PM3WUJ6s3GAgsc1zcXoWjy560,3589
211
+ digitalhub/stores/configurator/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
212
+ digitalhub/stores/configurator/api.py,sha256=OVW2YN5mgwe5x5NpSshUPPqPFvYrVuKgQs6Opao31RM,668
213
+ digitalhub/stores/configurator/configurator.py,sha256=Xqdc5OZN_w24Vxi1ZElXJdv5UH2BLVEsUbGJplUtHuA,4870
214
+ digitalhub/stores/configurator/credentials_store.py,sha256=YwXS3109sa0O2dFXh0hED3O0qBiihdbgRiocPsZyWa0,1616
215
+ digitalhub/stores/configurator/enums.py,sha256=AqHhMjK5QGJAUyKdcrNMa5ZUy8U6_GorVphvTmhE-bA,396
216
+ digitalhub/stores/configurator/ini_module.py,sha256=_HKJXAfu4FtwH_1jJ5UDfpaKIOsdp8y221Zoddrs0qc,3031
217
+ digitalhub/stores/data/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
218
+ digitalhub/stores/data/api.py,sha256=bn-mveRJM86_N9m1kWMg0FqDQF8DHEv5Q6wgNLD6dfI,651
219
+ digitalhub/stores/data/builder.py,sha256=HlWiBF7PaFqdtu3q9hDT5B08ylMb1B6m_FVG81Su-kM,2399
220
+ digitalhub/stores/data/enums.py,sha256=8pO_tUZmKB4BpjW29lQN9rLGPOrJoqDVYJYzzxeDXW4,305
221
+ digitalhub/stores/data/utils.py,sha256=rv8hMYeZrWUi7GLWZg6DbWvc4WYFwo4C7ZD94Odv-G4,1059
222
+ digitalhub/stores/data/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
223
+ digitalhub/stores/data/_base/store.py,sha256=RyjCtRjD5F06NqqXhdq9CcnJT5hrFgLs7ssyV1MbcUE,5349
224
+ digitalhub/stores/data/local/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
225
+ digitalhub/stores/data/local/store.py,sha256=WUYddHc3xY8SB80wdaHhRZ7nzWd8ssaaker9JHIq_9E,7444
226
+ digitalhub/stores/data/remote/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
227
+ digitalhub/stores/data/remote/store.py,sha256=gKK0U_8N5o43ZNuZ0vYjuYel3rkZ1eyrbCCsztta7vE,6206
228
+ digitalhub/stores/data/s3/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
229
+ digitalhub/stores/data/s3/configurator.py,sha256=RlFMRfs5Lzp5tn6yWKzNCjgHCt0fg59EZakM7oARurw,3756
230
+ digitalhub/stores/data/s3/enums.py,sha256=X80OYrvVtwutiMsxg8yIRArxG8ibQ-gNSvFodISv9-k,472
231
+ digitalhub/stores/data/s3/store.py,sha256=aEF6DuAYaCediLbpmtmIKprk7lNlbNCKKJPGy3MF6AI,19793
232
+ digitalhub/stores/data/s3/utils.py,sha256=MkOgZFUh9iYdRvO8DgdS8tsjjHbk7diJpyLGFo63ro8,1758
233
+ digitalhub/stores/data/sql/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
234
+ digitalhub/stores/data/sql/configurator.py,sha256=UHPYBs53WlXAZI_WA_QzKbHmKzOUH9vpSM01yRSNknY,3338
235
+ digitalhub/stores/data/sql/enums.py,sha256=EQ13SwI_lpW0pfmintrv2Kj4i8X2iU-X9sjgf3JZc_g,392
236
+ digitalhub/stores/data/sql/store.py,sha256=5CyPoVn45FQePF77moZy4VYaMPsz97xVMiSG3xsHxYg,11809
237
+ digitalhub/stores/readers/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
238
+ digitalhub/stores/readers/data/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
239
+ digitalhub/stores/readers/data/api.py,sha256=jn2AwCcTRbAOeAhs-3D1OpjhvFf8y537upvzVAgHxl4,1966
240
+ digitalhub/stores/readers/data/factory.py,sha256=3a2lovXeoO9Vt5y2j0SON55gY942G1St8JGuPRz2_O8,3773
241
+ digitalhub/stores/readers/data/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
242
+ digitalhub/stores/readers/data/_base/builder.py,sha256=N_e5qlGrxyqnyr8F7SvbSLrgtqfirLlVjI_wQ5NiC4I,752
243
+ digitalhub/stores/readers/data/_base/reader.py,sha256=q6s37uI_2J1cJlpvRzwr2Az8aD9lDsKvzbi82CUO3PU,1862
244
+ digitalhub/stores/readers/data/pandas/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
245
+ digitalhub/stores/readers/data/pandas/builder.py,sha256=ucnW7ReZgQ9XmGifYMkaDxpBVc_0XMMazOyPnUlY4os,804
246
+ digitalhub/stores/readers/data/pandas/reader.py,sha256=SNZLhT4Fw7SWZoQRxacSmESBKUebPYev2cQ-VliRBRE,8089
247
+ digitalhub/stores/readers/query/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
248
+ digitalhub/utils/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
249
+ digitalhub/utils/enums.py,sha256=FvvBBkryy2-Ji0MhBMeJC6oLnd_ba0b0y1uCcWT-mvU,377
250
+ digitalhub/utils/exceptions.py,sha256=7qMXp9eHVRcS6Oy7fpJ7GVyhAfvYbzx5qb8Dl1ira38,1341
251
+ digitalhub/utils/file_utils.py,sha256=Xg0vo1oxjbVc6S5Pda-UrHnVzzTU-Nl4quEhOnZpUNU,5218
252
+ digitalhub/utils/generic_utils.py,sha256=kU5pTbrdNOzerI2COQvxJF8ocZXg-e-U9QTDUDbkJFU,5669
253
+ digitalhub/utils/git_utils.py,sha256=jYof3EtqU9YYkf9OyikIyuwkA2pSmHuxn6FnTeIHYoY,3515
254
+ digitalhub/utils/io_utils.py,sha256=21E3x9bDbafqfc_Vt4ZVwsIlEsFsr_EzbuIoARvRMHg,3407
255
+ digitalhub/utils/logger.py,sha256=hH3gGE35L8jRxrg8EPXGZZAK1OA5-CvWnayuBZzteBM,545
256
+ digitalhub/utils/types.py,sha256=orCxY43zXMJfKZsOj6FUR85u9wRBPJ0wdkzrBHTnVW8,217
257
+ digitalhub/utils/uri_utils.py,sha256=7S2Xld-SsYBK_ZWhWUNKSzvukvtbbjKOu5mK1w2UMZE,4129
258
+ digitalhub-0.12.0.dist-info/METADATA,sha256=daa6Tnwf3Hb_riR7segTl2c3tpmAM3oTlDxzhUiC69Q,18026
259
+ digitalhub-0.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
260
+ digitalhub-0.12.0.dist-info/licenses/AUTHORS,sha256=iDleK_2EAMmh0o8Te_E9mdXQCP4rBfFr9dW9d0-pCno,301
261
+ digitalhub-0.12.0.dist-info/licenses/LICENSE,sha256=z3xQCHfGmTnigfoUe3uidW_GUSVeFBdos30w9VNTRec,11361
262
+ digitalhub-0.12.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ AUTHORS
2
+
3
+ This project is developed and maintained by DSLab – Fondazione Bruno Kessler, with contributions from the open source community. A complete list of contributors is available in the project’s commit history and pull requests.
4
+
5
+ For questions or inquiries, please contact: digitalhub@fbk.eu