lamindb 0.63.5__py3-none-any.whl → 0.64.1__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 +5 -4
- lamindb/{_file.py → _artifact.py} +265 -210
- lamindb/_dataset.py +87 -115
- lamindb/_delete.py +2 -2
- lamindb/_filter.py +2 -2
- lamindb/_parents.py +7 -7
- lamindb/_query_manager.py +5 -2
- lamindb/_registry.py +3 -3
- lamindb/_save.py +63 -63
- lamindb/dev/_data.py +10 -9
- lamindb/dev/_feature_manager.py +10 -10
- lamindb/dev/_label_manager.py +4 -4
- lamindb/dev/_run_context.py +2 -2
- lamindb/dev/_settings.py +5 -4
- lamindb/dev/_view_tree.py +5 -5
- lamindb/dev/datasets/_core.py +6 -6
- lamindb/dev/hashing.py +11 -1
- lamindb/dev/storage/__init__.py +1 -1
- lamindb/dev/storage/_backed_access.py +6 -6
- lamindb/dev/storage/file.py +36 -31
- lamindb/dev/versioning.py +3 -3
- {lamindb-0.63.5.dist-info → lamindb-0.64.1.dist-info}/METADATA +5 -5
- lamindb-0.64.1.dist-info/RECORD +48 -0
- lamindb-0.63.5.dist-info/RECORD +0 -48
- {lamindb-0.63.5.dist-info → lamindb-0.64.1.dist-info}/LICENSE +0 -0
- {lamindb-0.63.5.dist-info → lamindb-0.64.1.dist-info}/WHEEL +0 -0
lamindb/__init__.py
CHANGED
@@ -5,7 +5,7 @@ LaminDB helps you manage data batches with two basic registries:
|
|
5
5
|
.. autosummary::
|
6
6
|
:toctree: .
|
7
7
|
|
8
|
-
|
8
|
+
Artifact
|
9
9
|
Dataset
|
10
10
|
|
11
11
|
Four registries track provenance of data batches:
|
@@ -54,7 +54,7 @@ Modules & settings:
|
|
54
54
|
|
55
55
|
"""
|
56
56
|
|
57
|
-
__version__ = "0.
|
57
|
+
__version__ = "0.64.1" # denote a release candidate for 0.1.0 with 0.1rc1
|
58
58
|
|
59
59
|
import os as _os
|
60
60
|
|
@@ -91,10 +91,10 @@ if _INSTANCE_SETUP:
|
|
91
91
|
del InstanceNotSetupError
|
92
92
|
del __getattr__ # delete so that imports work out
|
93
93
|
from lnschema_core import ( # noqa
|
94
|
+
Artifact,
|
94
95
|
Dataset,
|
95
96
|
Feature,
|
96
97
|
FeatureSet,
|
97
|
-
File,
|
98
98
|
Run,
|
99
99
|
Storage,
|
100
100
|
Transform,
|
@@ -102,10 +102,11 @@ if _INSTANCE_SETUP:
|
|
102
102
|
User,
|
103
103
|
)
|
104
104
|
|
105
|
+
File = Artifact # backward compat
|
106
|
+
from . import _artifact # noqa
|
105
107
|
from . import _dataset # noqa
|
106
108
|
from . import _feature # noqa
|
107
109
|
from . import _feature_set # noqa
|
108
|
-
from . import _file # noqa
|
109
110
|
from . import _parents # noqa
|
110
111
|
from . import _registry # noqa
|
111
112
|
from . import _run # noqa
|