lamindb_setup 1.9.0__py3-none-any.whl → 1.9.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_setup/__init__.py +107 -107
- lamindb_setup/_cache.py +87 -87
- lamindb_setup/_check_setup.py +166 -166
- lamindb_setup/_connect_instance.py +328 -342
- lamindb_setup/_delete.py +141 -141
- lamindb_setup/_disconnect.py +32 -32
- lamindb_setup/_init_instance.py +440 -440
- lamindb_setup/_migrate.py +266 -266
- lamindb_setup/_register_instance.py +35 -35
- lamindb_setup/_schema_metadata.py +441 -441
- lamindb_setup/_set_managed_storage.py +70 -70
- lamindb_setup/_setup_user.py +133 -133
- lamindb_setup/core/__init__.py +21 -21
- lamindb_setup/core/_aws_options.py +223 -223
- lamindb_setup/core/_hub_client.py +248 -248
- lamindb_setup/core/_hub_core.py +665 -665
- lamindb_setup/core/_hub_crud.py +227 -227
- lamindb_setup/core/_private_django_api.py +83 -83
- lamindb_setup/core/_settings.py +377 -377
- lamindb_setup/core/_settings_instance.py +569 -569
- lamindb_setup/core/_settings_load.py +141 -141
- lamindb_setup/core/_settings_save.py +95 -95
- lamindb_setup/core/_settings_storage.py +429 -429
- lamindb_setup/core/_settings_store.py +91 -91
- lamindb_setup/core/_settings_user.py +55 -55
- lamindb_setup/core/_setup_bionty_sources.py +44 -44
- lamindb_setup/core/cloud_sqlite_locker.py +240 -240
- lamindb_setup/core/django.py +305 -296
- lamindb_setup/core/exceptions.py +1 -1
- lamindb_setup/core/hashing.py +134 -134
- lamindb_setup/core/types.py +1 -1
- lamindb_setup/core/upath.py +1013 -1013
- lamindb_setup/errors.py +70 -70
- lamindb_setup/types.py +20 -20
- {lamindb_setup-1.9.0.dist-info → lamindb_setup-1.9.1.dist-info}/METADATA +1 -1
- lamindb_setup-1.9.1.dist-info/RECORD +50 -0
- lamindb_setup-1.9.0.dist-info/RECORD +0 -50
- {lamindb_setup-1.9.0.dist-info → lamindb_setup-1.9.1.dist-info}/LICENSE +0 -0
- {lamindb_setup-1.9.0.dist-info → lamindb_setup-1.9.1.dist-info}/WHEEL +0 -0
lamindb_setup/errors.py
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
"""Errors.
|
|
2
|
-
|
|
3
|
-
.. autosummary::
|
|
4
|
-
:toctree: .
|
|
5
|
-
|
|
6
|
-
InstanceNotSetupError
|
|
7
|
-
ModuleWasntConfigured
|
|
8
|
-
StorageAlreadyManaged
|
|
9
|
-
StorageNotEmpty
|
|
10
|
-
InstanceLockedException
|
|
11
|
-
SettingsEnvFileOutdated
|
|
12
|
-
CannotSwitchDefaultInstance
|
|
13
|
-
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
|
-
from __future__ import annotations
|
|
17
|
-
|
|
18
|
-
import click
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class DefaultMessageException(Exception):
|
|
22
|
-
default_message: str | None = None
|
|
23
|
-
|
|
24
|
-
def __init__(self, message: str | None = None):
|
|
25
|
-
if message is None:
|
|
26
|
-
message = self.default_message
|
|
27
|
-
super().__init__(message)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class InstanceNotSetupError(DefaultMessageException):
|
|
31
|
-
default_message = """\
|
|
32
|
-
To use lamindb, you need to connect to an instance.
|
|
33
|
-
|
|
34
|
-
Connect to an instance: `ln.connect()`. Init an instance: `ln.setup.init()`.
|
|
35
|
-
|
|
36
|
-
If you used the CLI to set up lamindb in a notebook, restart the Python session.
|
|
37
|
-
"""
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
MODULE_WASNT_CONFIGURED_MESSAGE_TEMPLATE = (
|
|
41
|
-
"'{}' wasn't configured for this instance -- "
|
|
42
|
-
"if you want it, go to your instance settings page and add it under 'schema modules' (or ask an admin to do so)"
|
|
43
|
-
)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
class ModuleWasntConfigured(Exception):
|
|
47
|
-
pass
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
class StorageAlreadyManaged(Exception):
|
|
51
|
-
pass
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
class StorageNotEmpty(click.ClickException):
|
|
55
|
-
def show(self, file=None):
|
|
56
|
-
pass
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
# raise if a cloud SQLite instance is already locked
|
|
60
|
-
# ignored by unlock_cloud_sqlite_upon_exception
|
|
61
|
-
class InstanceLockedException(Exception):
|
|
62
|
-
pass
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
class SettingsEnvFileOutdated(Exception):
|
|
66
|
-
pass
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
class CannotSwitchDefaultInstance(Exception):
|
|
70
|
-
pass
|
|
1
|
+
"""Errors.
|
|
2
|
+
|
|
3
|
+
.. autosummary::
|
|
4
|
+
:toctree: .
|
|
5
|
+
|
|
6
|
+
InstanceNotSetupError
|
|
7
|
+
ModuleWasntConfigured
|
|
8
|
+
StorageAlreadyManaged
|
|
9
|
+
StorageNotEmpty
|
|
10
|
+
InstanceLockedException
|
|
11
|
+
SettingsEnvFileOutdated
|
|
12
|
+
CannotSwitchDefaultInstance
|
|
13
|
+
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
|
|
18
|
+
import click
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class DefaultMessageException(Exception):
|
|
22
|
+
default_message: str | None = None
|
|
23
|
+
|
|
24
|
+
def __init__(self, message: str | None = None):
|
|
25
|
+
if message is None:
|
|
26
|
+
message = self.default_message
|
|
27
|
+
super().__init__(message)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class InstanceNotSetupError(DefaultMessageException):
|
|
31
|
+
default_message = """\
|
|
32
|
+
To use lamindb, you need to connect to an instance.
|
|
33
|
+
|
|
34
|
+
Connect to an instance: `ln.connect()`. Init an instance: `ln.setup.init()`.
|
|
35
|
+
|
|
36
|
+
If you used the CLI to set up lamindb in a notebook, restart the Python session.
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
MODULE_WASNT_CONFIGURED_MESSAGE_TEMPLATE = (
|
|
41
|
+
"'{}' wasn't configured for this instance -- "
|
|
42
|
+
"if you want it, go to your instance settings page and add it under 'schema modules' (or ask an admin to do so)"
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class ModuleWasntConfigured(Exception):
|
|
47
|
+
pass
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class StorageAlreadyManaged(Exception):
|
|
51
|
+
pass
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
class StorageNotEmpty(click.ClickException):
|
|
55
|
+
def show(self, file=None):
|
|
56
|
+
pass
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# raise if a cloud SQLite instance is already locked
|
|
60
|
+
# ignored by unlock_cloud_sqlite_upon_exception
|
|
61
|
+
class InstanceLockedException(Exception):
|
|
62
|
+
pass
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
class SettingsEnvFileOutdated(Exception):
|
|
66
|
+
pass
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class CannotSwitchDefaultInstance(Exception):
|
|
70
|
+
pass
|
lamindb_setup/types.py
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
"""Types.
|
|
2
|
-
|
|
3
|
-
.. autosummary::
|
|
4
|
-
:toctree: .
|
|
5
|
-
|
|
6
|
-
UPathStr
|
|
7
|
-
StorageType
|
|
8
|
-
"""
|
|
9
|
-
|
|
10
|
-
from __future__ import annotations
|
|
11
|
-
|
|
12
|
-
# we need Union here because __future__ annotations doesn't work with TypeAlias
|
|
13
|
-
from pathlib import Path
|
|
14
|
-
from typing import Literal, Union
|
|
15
|
-
|
|
16
|
-
# UPath is subclass of Path, hence, it's not necessary to list UPath
|
|
17
|
-
# we keep it in the name of the TypeAlias to make it clear to users that
|
|
18
|
-
# cloud paths are allowed / PathStr is often associated with local paths
|
|
19
|
-
UPathStr = Union[str, Path] # typing.TypeAlias, >3.10 on but already deprecated
|
|
20
|
-
StorageType = Literal["local", "s3", "gs", "hf", "http", "https"]
|
|
1
|
+
"""Types.
|
|
2
|
+
|
|
3
|
+
.. autosummary::
|
|
4
|
+
:toctree: .
|
|
5
|
+
|
|
6
|
+
UPathStr
|
|
7
|
+
StorageType
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
# we need Union here because __future__ annotations doesn't work with TypeAlias
|
|
13
|
+
from pathlib import Path
|
|
14
|
+
from typing import Literal, Union
|
|
15
|
+
|
|
16
|
+
# UPath is subclass of Path, hence, it's not necessary to list UPath
|
|
17
|
+
# we keep it in the name of the TypeAlias to make it clear to users that
|
|
18
|
+
# cloud paths are allowed / PathStr is often associated with local paths
|
|
19
|
+
UPathStr = Union[str, Path] # typing.TypeAlias, >3.10 on but already deprecated
|
|
20
|
+
StorageType = Literal["local", "s3", "gs", "hf", "http", "https"]
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
lamindb_setup/__init__.py,sha256=67s2tV9E7d6XrxoUNepBdL8qqLbg7g-PH3MdeH-D8j8,2889
|
|
2
|
+
lamindb_setup/_cache.py,sha256=fbCQwmpaN9dmNWFXT1P4yDBJBm_5D9a7Bu5yRPa5gSU,2863
|
|
3
|
+
lamindb_setup/_check.py,sha256=28PcG8Kp6OpjSLSi1r2boL2Ryeh6xkaCL87HFbjs6GA,129
|
|
4
|
+
lamindb_setup/_check_setup.py,sha256=ReIdFG-aO43ydt5Mwl0K2LdsbNk81xd-RWCsEjbvb48,5873
|
|
5
|
+
lamindb_setup/_connect_instance.py,sha256=rzDJ798ASfeKgGQPAV-0aJa79sSvSKygX7ajErz6fUs,13130
|
|
6
|
+
lamindb_setup/_delete.py,sha256=sXk7whNnLFPUz7z_u2x6MZn8NGu3FhfuHF8FHokWznA,5817
|
|
7
|
+
lamindb_setup/_disconnect.py,sha256=xzdI0zET115AyYRMCyfCbngRuzjqDKmhOgOu4-Kg6oM,1124
|
|
8
|
+
lamindb_setup/_django.py,sha256=uIQflpkp8l3axyPaKURlk3kacgpElVP5KOKmFxYSMGk,1454
|
|
9
|
+
lamindb_setup/_entry_points.py,sha256=sKwXPX9xjOotoAjvgkU5LBwjjHLWVkh0ZGdiSsrch9k,522
|
|
10
|
+
lamindb_setup/_exportdb.py,sha256=QLjoH4dEwqa01A12naKaDPglCCzl2_VLKWFfJRE_uSg,2113
|
|
11
|
+
lamindb_setup/_importdb.py,sha256=fKv9ev5OOj_-bmzC8XZ1GxOcjIjI486yrHSHDWQrJeI,1874
|
|
12
|
+
lamindb_setup/_init_instance.py,sha256=wrF2MgcKOPPdOlYe4Ba2VmhauTpr4JMKNWGPn7o9qTQ,15760
|
|
13
|
+
lamindb_setup/_migrate.py,sha256=6oZPv6k7zZ5kvVCF0GRMnxRd6MYAga-06Fdk1zjfzjY,10313
|
|
14
|
+
lamindb_setup/_register_instance.py,sha256=9NPl9RQGB5FOLsYoR1sMOuMyMhmX6DGvYUhWMCMme4Q,1250
|
|
15
|
+
lamindb_setup/_schema.py,sha256=b3uzhhWpV5mQtDwhMINc2MabGCnGLESy51ito3yl6Wc,679
|
|
16
|
+
lamindb_setup/_schema_metadata.py,sha256=QIme7wafJEfsfXG2HU3NtCPJPXewYrkCs2Lii7uyXzo,15339
|
|
17
|
+
lamindb_setup/_set_managed_storage.py,sha256=e2Pv4wppxn7GnFdEC2SuUy43J5LPK0Le0ZKfnmf-82k,2831
|
|
18
|
+
lamindb_setup/_setup_user.py,sha256=wnWXKpb-dfhPXeWhDkyAfKiu5b9W2nfaZD9aS6UWEZ0,4628
|
|
19
|
+
lamindb_setup/_silence_loggers.py,sha256=AKF_YcHvX32eGXdsYK8MJlxEaZ-Uo2f6QDRzjKFCtws,1568
|
|
20
|
+
lamindb_setup/errors.py,sha256=ETpyRNUN9jUpU5RP3vcPYpSCUo1C8YIZCO-o2f64h6Y,1563
|
|
21
|
+
lamindb_setup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
lamindb_setup/types.py,sha256=-55QmE-_b47Cyoj4uj6m2AkAPN6jaN8smyObd74nyH8,634
|
|
23
|
+
lamindb_setup/core/__init__.py,sha256=RT0_vHfzOqau3BqFF2ejaSXGk9lmajEdaaXlabK1BKs,431
|
|
24
|
+
lamindb_setup/core/_aws_options.py,sha256=zSGB23J9lnkah82F0GtR40ePCKWRP7oLFoXwTv2TVVk,8315
|
|
25
|
+
lamindb_setup/core/_aws_storage.py,sha256=nEjeUv4xUVpoV0Lx-zjjmyb9w804bDyaeiM-OqbfwM0,1799
|
|
26
|
+
lamindb_setup/core/_deprecated.py,sha256=HN7iUBdEgahw5e4NHCd1VJooUfieNb6GRzS5x8jU-q8,2549
|
|
27
|
+
lamindb_setup/core/_docs.py,sha256=3k-YY-oVaJd_9UIY-LfBg_u8raKOCNfkZQPA73KsUhs,276
|
|
28
|
+
lamindb_setup/core/_hub_client.py,sha256=_aLJTxiEaENcL1mSuHVaoTqKe5XAQWoZ4z1RyYZhicE,8926
|
|
29
|
+
lamindb_setup/core/_hub_core.py,sha256=9lSmdAMcZmiDGWgVj3tXBxXghuUjBiGZjbjo6s5cgHI,24671
|
|
30
|
+
lamindb_setup/core/_hub_crud.py,sha256=yrvKI86QzFlj7qpPxMWt4z0Uu43kU9-uDSnAkKR-0p0,5957
|
|
31
|
+
lamindb_setup/core/_hub_utils.py,sha256=6dyDGyzYFgVfR_lE3VN3CP1jGp98gxPtr-T91PAP05U,2687
|
|
32
|
+
lamindb_setup/core/_private_django_api.py,sha256=QuQqK2FJRse7jOGD4wWy2XENlLEnjr7HEQ1bK77534c,2739
|
|
33
|
+
lamindb_setup/core/_settings.py,sha256=uXDNKqGcTF4qNKlYmsq2UrjaB2rcZhYKg1EG9JP6Xz4,13841
|
|
34
|
+
lamindb_setup/core/_settings_instance.py,sha256=5AZgbI77kOis954Ed6st9ju2M2C50QGi_Y0MZNKNy-8,22469
|
|
35
|
+
lamindb_setup/core/_settings_load.py,sha256=KhSO0vAEEU8CYWV9W8w7Y2gCAhzYP4jh7XWmYBcj_G4,5317
|
|
36
|
+
lamindb_setup/core/_settings_save.py,sha256=iLxY9Q5pfKj4R4QKhuIwDt5D0p7Z0nTZMtKf4lnBIzY,3357
|
|
37
|
+
lamindb_setup/core/_settings_storage.py,sha256=9G4q3koXgKlX2xBg0pqHZW9YXQCNLw_G7m58MrUzBkc,15907
|
|
38
|
+
lamindb_setup/core/_settings_store.py,sha256=8NTD7mOx_bOX6MR2HtjNWVHmWuNCJP4SZIUVrz8xtsY,2805
|
|
39
|
+
lamindb_setup/core/_settings_user.py,sha256=j5h5gnE_ap2PQga2e_RfYF12N5HKJFMGM_pGXHpmzEo,1508
|
|
40
|
+
lamindb_setup/core/_setup_bionty_sources.py,sha256=ntwBXVRCmamL_zW4qQp5VREkfx8GzS9cTEZS13ChZbM,1549
|
|
41
|
+
lamindb_setup/core/cloud_sqlite_locker.py,sha256=gdQJwdafvkcoK-n7GxQvhY9e9S0SZyasiIBMtuWcs0k,7444
|
|
42
|
+
lamindb_setup/core/django.py,sha256=6jPcGtXzAN_jHM5fKTPGdexPu8LIOmSoobjODb9qWxY,10552
|
|
43
|
+
lamindb_setup/core/exceptions.py,sha256=kvXBCWYjS_GghDrbJ05BYLdBbs0yYIUEiGRFmHacz1I,85
|
|
44
|
+
lamindb_setup/core/hashing.py,sha256=dNsggCJhMLoHyzn_2d6IgZctgQHTU_astwnkpcCfJv0,3814
|
|
45
|
+
lamindb_setup/core/types.py,sha256=A_D-hVsBK-zPHyMsQmXG_ylQJP-sD9qOtCRRYSB_I8Y,68
|
|
46
|
+
lamindb_setup/core/upath.py,sha256=75trIKewqk8mx1CGbAryP7mCrQS0koLraKrBPajm5lc,36592
|
|
47
|
+
lamindb_setup-1.9.1.dist-info/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
48
|
+
lamindb_setup-1.9.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
49
|
+
lamindb_setup-1.9.1.dist-info/METADATA,sha256=woIXBO_TSGW2j23D0idBesjIQrTP824n9XlEI2_w9uo,1797
|
|
50
|
+
lamindb_setup-1.9.1.dist-info/RECORD,,
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
lamindb_setup/__init__.py,sha256=Jbjaf2q8Kw_0mAn3bdeDDIxcH4BcJFFFj2AmGWVOlsc,2782
|
|
2
|
-
lamindb_setup/_cache.py,sha256=5o749NuW6zi6uP4rmBtwxg7ifWpAHXVngzC0tEgXLgo,2776
|
|
3
|
-
lamindb_setup/_check.py,sha256=28PcG8Kp6OpjSLSi1r2boL2Ryeh6xkaCL87HFbjs6GA,129
|
|
4
|
-
lamindb_setup/_check_setup.py,sha256=eeg7Vr7tUaTDObxq1X7J3TDPQZeitb_Uy6dxqa9xfzs,5707
|
|
5
|
-
lamindb_setup/_connect_instance.py,sha256=PDvtAEHYJQVy-aMPNupN1u6PG9Rb_85JNKcjrOeHNy0,13478
|
|
6
|
-
lamindb_setup/_delete.py,sha256=2KnZOqd5Kgr45XzjiDE9der35LODDUajZD6_hcurGtQ,5676
|
|
7
|
-
lamindb_setup/_disconnect.py,sha256=p6tRLhixU4CuSxMKqzGTr-ovKmTRlZ8aID5dWQxOsg8,1092
|
|
8
|
-
lamindb_setup/_django.py,sha256=uIQflpkp8l3axyPaKURlk3kacgpElVP5KOKmFxYSMGk,1454
|
|
9
|
-
lamindb_setup/_entry_points.py,sha256=sKwXPX9xjOotoAjvgkU5LBwjjHLWVkh0ZGdiSsrch9k,522
|
|
10
|
-
lamindb_setup/_exportdb.py,sha256=QLjoH4dEwqa01A12naKaDPglCCzl2_VLKWFfJRE_uSg,2113
|
|
11
|
-
lamindb_setup/_importdb.py,sha256=fKv9ev5OOj_-bmzC8XZ1GxOcjIjI486yrHSHDWQrJeI,1874
|
|
12
|
-
lamindb_setup/_init_instance.py,sha256=jNNE7ZWIl1V28YqfdbaiyZ_One6K2vv0RMubxdvvb74,15320
|
|
13
|
-
lamindb_setup/_migrate.py,sha256=lkbEa_4qLxrQYSrLWKbXYQW32Yb1MBUa2hdfxCHnKUA,10047
|
|
14
|
-
lamindb_setup/_register_instance.py,sha256=zmk7UrOF6qED_zTEaTM8GbZurMSP1SwddkRy7rpYmUY,1215
|
|
15
|
-
lamindb_setup/_schema.py,sha256=b3uzhhWpV5mQtDwhMINc2MabGCnGLESy51ito3yl6Wc,679
|
|
16
|
-
lamindb_setup/_schema_metadata.py,sha256=yMSuLZc-7iWUV7tETNuKmcDeMW0wtUr5ypKxsKC-m7k,14898
|
|
17
|
-
lamindb_setup/_set_managed_storage.py,sha256=2muJxbjhZTSgMcyLuLS0PyXlCl5tSYI3BVaSYjrFYkM,2761
|
|
18
|
-
lamindb_setup/_setup_user.py,sha256=8BSGsW5jfmB4FlkhMt5osYXBbVCdOQeAVATb-oAYxa0,4495
|
|
19
|
-
lamindb_setup/_silence_loggers.py,sha256=AKF_YcHvX32eGXdsYK8MJlxEaZ-Uo2f6QDRzjKFCtws,1568
|
|
20
|
-
lamindb_setup/errors.py,sha256=H1UM-bii0U2vPyjprOBgZK4ijZJgzgCViyGWPd8v5yU,1493
|
|
21
|
-
lamindb_setup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
lamindb_setup/types.py,sha256=XlXLb4nmbc68uBj5Hp3xpDRezYGJIBZv6jAAqqN0p10,614
|
|
23
|
-
lamindb_setup/core/__init__.py,sha256=5M4A6CVHBO_T5Rr9MeLaPW3WTk4-y00cgRYEgUJVU5U,410
|
|
24
|
-
lamindb_setup/core/_aws_options.py,sha256=UbwnaEX2KcZBDOa2W2NbH62cNrKJQ78Hrn7zcszhQvU,8092
|
|
25
|
-
lamindb_setup/core/_aws_storage.py,sha256=nEjeUv4xUVpoV0Lx-zjjmyb9w804bDyaeiM-OqbfwM0,1799
|
|
26
|
-
lamindb_setup/core/_deprecated.py,sha256=HN7iUBdEgahw5e4NHCd1VJooUfieNb6GRzS5x8jU-q8,2549
|
|
27
|
-
lamindb_setup/core/_docs.py,sha256=3k-YY-oVaJd_9UIY-LfBg_u8raKOCNfkZQPA73KsUhs,276
|
|
28
|
-
lamindb_setup/core/_hub_client.py,sha256=Pl3sEG2rasdJp4Rh5HNY0VsPVls-nfY0OxD5QzrYF9A,8678
|
|
29
|
-
lamindb_setup/core/_hub_core.py,sha256=eOz7JcdpUz50BYkuOJDkdqnnBgXbamB-erLl1mAut0c,24006
|
|
30
|
-
lamindb_setup/core/_hub_crud.py,sha256=Jz0d8wFKM1Pv9B9byyUJPlCIMkIzk56Jd-c3Awpm9Xw,5730
|
|
31
|
-
lamindb_setup/core/_hub_utils.py,sha256=6dyDGyzYFgVfR_lE3VN3CP1jGp98gxPtr-T91PAP05U,2687
|
|
32
|
-
lamindb_setup/core/_private_django_api.py,sha256=By63l3vIEtK1pq246FhHq3tslxsaTJGKm5VakYluWp4,2656
|
|
33
|
-
lamindb_setup/core/_settings.py,sha256=tCYkTwNRnxmgApmN5m9cjoBn4NBB5ZafS0cUVA1ipNM,13464
|
|
34
|
-
lamindb_setup/core/_settings_instance.py,sha256=kkTbtOrezfZ97rXkyX8JvxVQxy2H6DSenmaAy9XoOS8,21900
|
|
35
|
-
lamindb_setup/core/_settings_load.py,sha256=JWd0_hBy04xjKo-tH4y8C9RkaywjrmoT0PsKzVme0n4,5176
|
|
36
|
-
lamindb_setup/core/_settings_save.py,sha256=XZx-vow7BT6y3JpRBB2UOJp2vwc7jOGea4wSgOPqjPU,3262
|
|
37
|
-
lamindb_setup/core/_settings_storage.py,sha256=S9AvKLzJX0M_RsYcBKZB_P84CYtTY0hyeffYE3UqrQA,15478
|
|
38
|
-
lamindb_setup/core/_settings_store.py,sha256=QmeWIGdIyq7UmjfHiEB_0xRD8hY-8-ZR2WntIKfwTKI,2714
|
|
39
|
-
lamindb_setup/core/_settings_user.py,sha256=gFfyMf-738onbh1Mf4wsmLlenQJPtjQfpUgKnOlqc2o,1453
|
|
40
|
-
lamindb_setup/core/_setup_bionty_sources.py,sha256=ox3X-SHiHa2lNPSWjwZhINypbLacX6kGwH6hVVrSFZc,1505
|
|
41
|
-
lamindb_setup/core/cloud_sqlite_locker.py,sha256=H_CTUCjURFXwD1cCtV_Jn0_60iztZTkaesLLXIBgIxc,7204
|
|
42
|
-
lamindb_setup/core/django.py,sha256=jDwNJ3ZtkYezzNTGEW9NQZRwspc0akWQnCFWTgu3c1Q,9889
|
|
43
|
-
lamindb_setup/core/exceptions.py,sha256=qjMzqy_uzPA7mCOdnoWnS_fdA6OWbdZGftz-YYplrY0,84
|
|
44
|
-
lamindb_setup/core/hashing.py,sha256=Y8Uc5uSGTfU6L2R_gb5w8DdHhGRog7RnkK-e9FEMjPY,3680
|
|
45
|
-
lamindb_setup/core/types.py,sha256=T7NwspfRHgIIpYsXDcApks8jkOlGeGRW-YbVLB7jNIo,67
|
|
46
|
-
lamindb_setup/core/upath.py,sha256=reRwNJUOdeZ5n9m7Xi7RoNjmw0kqMPq_BkLPq6_fg-g,35468
|
|
47
|
-
lamindb_setup-1.9.0.dist-info/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
48
|
-
lamindb_setup-1.9.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
49
|
-
lamindb_setup-1.9.0.dist-info/METADATA,sha256=OmqlVQmuG8Iu_h9rPsfCgdfSo_6jH2aZJwq5jl6haH4,1797
|
|
50
|
-
lamindb_setup-1.9.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|