lamin_cli 1.11.0__py2.py3-none-any.whl → 1.12.1__py2.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.
lamin_cli/__init__.py CHANGED
@@ -1,27 +1,27 @@
1
- """Lamin CLI.
2
-
3
- This is the command line interface for interacting with LaminDB & LaminHub.
4
-
5
- The interface is defined in `__main__.py`.
6
- The root API here is used by LaminR to replicate the CLI functionality.
7
- """
8
-
9
- __version__ = "1.11.0"
10
-
11
- from lamindb_setup import disconnect, logout
12
- from lamindb_setup._connect_instance import _connect_cli as connect
13
- from lamindb_setup._init_instance import init
14
- from lamindb_setup._setup_user import login
15
-
16
- from ._delete import delete
17
- from ._save import save
18
-
19
- __all__ = [
20
- "save",
21
- "init",
22
- "connect",
23
- "delete",
24
- "login",
25
- "logout",
26
- "disconnect",
27
- ]
1
+ """Lamin CLI.
2
+
3
+ This is the command line interface for interacting with LaminDB & LaminHub.
4
+
5
+ The interface is defined in `__main__.py`.
6
+ The root API here is used by LaminR to replicate the CLI functionality.
7
+ """
8
+
9
+ __version__ = "1.12.1"
10
+
11
+ from lamindb_setup import disconnect, logout
12
+ from lamindb_setup._connect_instance import _connect_cli as connect
13
+ from lamindb_setup._init_instance import init
14
+ from lamindb_setup._setup_user import login
15
+
16
+ from ._delete import delete
17
+ from ._save import save
18
+
19
+ __all__ = [
20
+ "save",
21
+ "init",
22
+ "connect",
23
+ "delete",
24
+ "login",
25
+ "logout",
26
+ "disconnect",
27
+ ]