lamindb 0.69.2__py3-none-any.whl → 0.69.4__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.
lamindb/__init__.py CHANGED
@@ -15,7 +15,7 @@ Registries:
15
15
  Feature
16
16
  FeatureSet
17
17
 
18
- Functions:
18
+ Key functionality:
19
19
 
20
20
  .. autosummary::
21
21
  :toctree: .
@@ -23,6 +23,7 @@ Functions:
23
23
  connect
24
24
  track
25
25
  finish
26
+ Annotate
26
27
  view
27
28
  save
28
29
 
@@ -31,7 +32,7 @@ Modules & settings:
31
32
  .. autosummary::
32
33
  :toctree: .
33
34
 
34
- validation
35
+ integrations
35
36
  settings
36
37
  setup
37
38
  UPath
@@ -39,7 +40,7 @@ Modules & settings:
39
40
 
40
41
  """
41
42
 
42
- __version__ = "0.69.2" # denote a release candidate for 0.1.0 with 0.1rc1
43
+ __version__ = "0.69.4" # denote a release candidate for 0.1.0 with 0.1rc1
43
44
 
44
45
  import os as _os
45
46
 
@@ -71,7 +72,9 @@ if _check_instance_setup(from_lamindb=True):
71
72
  )
72
73
 
73
74
  from . import (
75
+ _annotate,
74
76
  _artifact,
77
+ _can_validate,
75
78
  _collection,
76
79
  _feature,
77
80
  _feature_set,
@@ -82,11 +85,12 @@ if _check_instance_setup(from_lamindb=True):
82
85
  _storage,
83
86
  _transform,
84
87
  _ulabel,
85
- _validate,
86
88
  core,
87
89
  )
88
90
 
89
91
  dev = core # backward compat
92
+ from . import integrations
93
+ from ._annotate import Annotate
90
94
  from ._finish import finish
91
95
  from ._save import save
92
96
  from ._view import view