digitalhub 0.6.0b6__py3-none-any.whl → 0.6.0b7__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 +4 -0
- {digitalhub-0.6.0b6.dist-info → digitalhub-0.6.0b7.dist-info}/METADATA +1 -1
- {digitalhub-0.6.0b6.dist-info → digitalhub-0.6.0b7.dist-info}/RECORD +7 -7
- test/testkfp.py +2 -2
- {digitalhub-0.6.0b6.dist-info → digitalhub-0.6.0b7.dist-info}/LICENSE.txt +0 -0
- {digitalhub-0.6.0b6.dist-info → digitalhub-0.6.0b7.dist-info}/WHEEL +0 -0
- {digitalhub-0.6.0b6.dist-info → digitalhub-0.6.0b7.dist-info}/top_level.txt +0 -0
digitalhub/__init__.py
CHANGED
|
@@ -24,6 +24,7 @@ from digitalhub_core import (
|
|
|
24
24
|
list_secrets,
|
|
25
25
|
list_tasks,
|
|
26
26
|
list_workflows,
|
|
27
|
+
log_artifact,
|
|
27
28
|
new_artifact,
|
|
28
29
|
new_function,
|
|
29
30
|
new_run,
|
|
@@ -51,6 +52,7 @@ if not _PROJECT_IMPORTED:
|
|
|
51
52
|
get_dataitem,
|
|
52
53
|
import_dataitem,
|
|
53
54
|
list_dataitems,
|
|
55
|
+
log_dataitem,
|
|
54
56
|
new_dataitem,
|
|
55
57
|
update_dataitem,
|
|
56
58
|
)
|
|
@@ -63,6 +65,7 @@ if not _PROJECT_IMPORTED:
|
|
|
63
65
|
import_project,
|
|
64
66
|
list_models,
|
|
65
67
|
load_project,
|
|
68
|
+
log_model,
|
|
66
69
|
new_model,
|
|
67
70
|
new_project,
|
|
68
71
|
update_model,
|
|
@@ -83,6 +86,7 @@ if not _PROJECT_IMPORTED:
|
|
|
83
86
|
import_project,
|
|
84
87
|
list_dataitems,
|
|
85
88
|
load_project,
|
|
89
|
+
log_dataitem,
|
|
86
90
|
new_dataitem,
|
|
87
91
|
new_project,
|
|
88
92
|
update_dataitem,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
digitalhub/__init__.py,sha256=
|
|
1
|
+
digitalhub/__init__.py,sha256=pbQcmIzxxFwWySXp-Fnu7QhBHjltgdYVKfd2G67NryY,2311
|
|
2
2
|
test/test_crud_artifacts.py,sha256=yjlY_Bx99LPtMh15ufqFVU3KdogkmMjbbIGFkyVg25I,2511
|
|
3
3
|
test/test_crud_dataitems.py,sha256=-xAQ4UxSBqWPwsSLDSqy0EXp8uElymh-MAak3NqnOcs,2504
|
|
4
4
|
test/test_crud_functions.py,sha256=gYIBpPTE0spTVoM8li2N64nCa4zSTgh2CRu0FReWsEg,2769
|
|
5
5
|
test/test_crud_runs.py,sha256=s8LG1SpsQe4pisFGmq-hlHiJr3RQcXsfjggRKtLGCCA,2220
|
|
6
6
|
test/test_crud_tasks.py,sha256=XhSTj0hQNwJ61MbdSczYKMXYUIf_e6alwls9TnIpEiY,2111
|
|
7
7
|
test/test_imports.py,sha256=2Uuo-pa0HgA-qASl1ZpUj6tVze8_2PlmBapuyvDgLDQ,1269
|
|
8
|
-
test/testkfp.py,sha256=
|
|
8
|
+
test/testkfp.py,sha256=JnJkFGRhFAP7DdBVGQEduisNGyR1Eek8SgbK_4wYdF4,1078
|
|
9
9
|
test/testkfp_pipeline.py,sha256=WceFrCp-avHI7PcwIvnv7Kgs2xK3oQqU6sjaonGamg8,622
|
|
10
|
-
digitalhub-0.6.
|
|
11
|
-
digitalhub-0.6.
|
|
12
|
-
digitalhub-0.6.
|
|
13
|
-
digitalhub-0.6.
|
|
14
|
-
digitalhub-0.6.
|
|
10
|
+
digitalhub-0.6.0b7.dist-info/LICENSE.txt,sha256=_yVOtnbW7Ss28mp058UEEc1X4Rgj8-kQBP_kj8_Sc88,11585
|
|
11
|
+
digitalhub-0.6.0b7.dist-info/METADATA,sha256=b_74f7QTVBM2oBl-xshr1K7BNh1NDO4ZM93HQNN6Zf8,14666
|
|
12
|
+
digitalhub-0.6.0b7.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
|
13
|
+
digitalhub-0.6.0b7.dist-info/top_level.txt,sha256=ae9pDfCF27ZoaVAxuBKONMP0lm5P-N_I-e-no1WlvD8,16
|
|
14
|
+
digitalhub-0.6.0b7.dist-info/RECORD,,
|
test/testkfp.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import time
|
|
3
3
|
|
|
4
|
-
import digitalhub as
|
|
4
|
+
import digitalhub as dh
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def _is_finished(state: str):
|
|
@@ -13,7 +13,7 @@ os.environ["DIGITALHUB_CORE_WORKFLOW_IMAGE"] = "localhost:5000/dhcoreworkflow9:l
|
|
|
13
13
|
os.environ["KFP_ENDPOINT"] = "http://localhost:8888/"
|
|
14
14
|
|
|
15
15
|
# Get or create project
|
|
16
|
-
project =
|
|
16
|
+
project = dh.get_or_create_project("project-kfp2")
|
|
17
17
|
|
|
18
18
|
url = "https://gist.githubusercontent.com/kevin336/acbb2271e66c10a5b73aacf82ca82784/raw/e38afe62e088394d61ed30884dd50a6826eee0a8/employees.csv"
|
|
19
19
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|