lamindb 1.11a1__py3-none-any.whl → 1.11.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/models/save.py CHANGED
@@ -47,11 +47,10 @@ def save(
47
47
 
48
48
  Args:
49
49
  records: Multiple :class:`~lamindb.models.SQLRecord` objects.
50
- ignore_conflicts: If ``True``, do not error if some records violate a
51
- unique or another constraint. However, it won't inplace update the id
52
- fields of records. If you need records with ids, you need to query
53
- them from the database.
54
- batch_size: Number of records to process in each batch. Defaults to 10000.
50
+ ignore_conflicts: If `True`, do not error if some records violate a unique or another constraint.
51
+ However, it won't inplace update the id fields of records.
52
+ If you need records with ids, you need to query them from the database.
53
+ batch_size: Number of records to process in each batch.
55
54
  Large batch sizes can improve performance but may lead to memory issues.
56
55
 
57
56
  Examples:
@@ -130,7 +129,7 @@ def bulk_create(
130
129
  Args:
131
130
  records: Iterable of SQLRecord objects to create
132
131
  ignore_conflicts: Whether to ignore conflicts during creation
133
- batch_size: Number of records to process in each batch. Defaults to 10000.
132
+ batch_size: Number of records to process in each batch.
134
133
  """
135
134
  records_by_orm = defaultdict(list)
136
135
  for record in records:
@@ -332,8 +331,7 @@ def store_artifacts(
332
331
  from .artifact import Artifact
333
332
 
334
333
  exception: Exception | None = None
335
- # because uploads might fail, we need to maintain a new list
336
- # of the succeeded uploads
334
+ # because uploads might fail, we need to maintain a new list of the succeeded uploads
337
335
  stored_artifacts = []
338
336
 
339
337
  # upload new local artifacts
@@ -319,6 +319,43 @@ def suggest_records_with_similar_names(
319
319
  return None
320
320
 
321
321
 
322
+ def delete_record(record: BaseSQLRecord, is_soft: bool = True):
323
+ def delete():
324
+ if is_soft:
325
+ record.branch_id = -1
326
+ record.save()
327
+ else:
328
+ super(BaseSQLRecord, record).delete()
329
+
330
+ # deal with versioned records
331
+ # if _ovewrite_version = True, there is only a single version and
332
+ # no need to set the new latest version because all versions are deleted
333
+ # when deleting the latest version
334
+ if (
335
+ isinstance(record, IsVersioned)
336
+ and record.is_latest
337
+ and not getattr(record, "_overwrite_versions", False)
338
+ ):
339
+ new_latest = (
340
+ record.__class__.objects.using(record._state.db)
341
+ .filter(is_latest=False, uid__startswith=record.stem_uid)
342
+ .exclude(branch_id=-1) # exclude candidates in the trash
343
+ .order_by("-created_at")
344
+ .first()
345
+ )
346
+ if new_latest is not None:
347
+ new_latest.is_latest = True
348
+ if is_soft:
349
+ record.is_latest = False
350
+ with transaction.atomic():
351
+ new_latest.save()
352
+ delete()
353
+ logger.warning(f"new latest version is: {new_latest}")
354
+ return None
355
+ # deal with all other cases of the nested if condition now
356
+ delete()
357
+
358
+
322
359
  RECORD_REGISTRY_EXAMPLE = """Example::
323
360
 
324
361
  from lamindb import SQLRecord, fields
@@ -589,7 +626,7 @@ class Registry(ModelBase):
589
626
  # this just retrives the full connection string from iresult
590
627
  db = update_db_using_local(iresult, settings_file)
591
628
  cache_using_filepath.write_text(
592
- f"{iresult['lnid']}\n{iresult['schema_str']}"
629
+ f"{iresult['lnid']}\n{iresult['schema_str']}", encoding="utf-8"
593
630
  )
594
631
  # need to set the token if it is a fine_grained_access and the user is jwt (not public)
595
632
  is_fine_grained_access = (
@@ -602,7 +639,7 @@ class Registry(ModelBase):
602
639
  source_modules = isettings.modules
603
640
  db = isettings.db
604
641
  cache_using_filepath.write_text(
605
- f"{isettings.uid}\n{','.join(source_modules)}"
642
+ f"{isettings.uid}\n{','.join(source_modules)}", encoding="utf-8"
606
643
  )
607
644
  # need to set the token if it is a fine_grained_access and the user is jwt (not public)
608
645
  is_fine_grained_access = (
@@ -881,7 +918,7 @@ class BaseSQLRecord(models.Model, metaclass=Registry):
881
918
  ):
882
919
  raise NoWriteAccess(
883
920
  f"You’re not allowed to write to the space '{self.space.name}'.\n"
884
- "Please contact an administrator of the space if you need write access."
921
+ "Please contact administrators of the space if you need write access."
885
922
  ) from None
886
923
  else:
887
924
  raise
@@ -929,29 +966,7 @@ class BaseSQLRecord(models.Model, metaclass=Registry):
929
966
 
930
967
  def delete(self) -> None:
931
968
  """Delete."""
932
- # deal with versioned records
933
- # _overwrite_versions is set to True for folder artifacts
934
- # no need to set the new latest version becase all versions are deleted
935
- # when deleting the latest version of a folder artifact
936
- if (
937
- isinstance(self, IsVersioned)
938
- and self.is_latest
939
- and not getattr(self, "_overwrite_versions", False)
940
- ):
941
- new_latest = (
942
- self.__class__.objects.using(self._state.db)
943
- .filter(is_latest=False, uid__startswith=self.stem_uid)
944
- .order_by("-created_at")
945
- .first()
946
- )
947
- if new_latest is not None:
948
- new_latest.is_latest = True
949
- with transaction.atomic():
950
- new_latest.save()
951
- super().delete() # type: ignore
952
- logger.warning(f"new latest version is: {new_latest}")
953
- return None
954
- super().delete()
969
+ delete_record(self, is_soft=False)
955
970
 
956
971
 
957
972
  class Space(BaseSQLRecord):
@@ -1009,7 +1024,7 @@ class Space(BaseSQLRecord):
1009
1024
  *args,
1010
1025
  **kwargs,
1011
1026
  ):
1012
- if "uid" not in kwargs:
1027
+ if not args and "uid" not in kwargs:
1013
1028
  warn = False
1014
1029
  msg = ""
1015
1030
  isettings = setup_settings.instance
@@ -1183,9 +1198,8 @@ class SQLRecord(BaseSQLRecord, metaclass=Registry):
1183
1198
  # change branch_id to trash
1184
1199
  trash_branch_id = -1
1185
1200
  if self.branch_id > trash_branch_id and permanent is not True:
1186
- self.branch_id = trash_branch_id
1187
- self.save()
1188
- logger.warning(f"moved record to trash (`branch_id = -1`): {self}")
1201
+ delete_record(self, is_soft=True)
1202
+ logger.warning(f"moved record to trash (branch_id = -1): {self}")
1189
1203
  return
1190
1204
 
1191
1205
  # permanent delete
@@ -1194,11 +1208,11 @@ class SQLRecord(BaseSQLRecord, metaclass=Registry):
1194
1208
  f"Record {self.uid} is already in trash! Are you sure you want to delete it from your"
1195
1209
  " database? You can't undo this action. (y/n) "
1196
1210
  )
1197
- delete_record = response == "y"
1211
+ confirm_delete = response == "y"
1198
1212
  else:
1199
- delete_record = permanent
1213
+ confirm_delete = permanent
1200
1214
 
1201
- if delete_record:
1215
+ if confirm_delete:
1202
1216
  if name_with_module == "Run":
1203
1217
  from .run import delete_run_artifacts
1204
1218
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lamindb
3
- Version: 1.11a1
3
+ Version: 1.11.1
4
4
  Summary: A data framework for biology.
5
5
  Author-email: Lamin Labs <open-source@lamin.ai>
6
6
  Requires-Python: >=3.10,<3.14
@@ -10,8 +10,14 @@ Classifier: Programming Language :: Python :: 3.11
10
10
  Classifier: Programming Language :: Python :: 3.12
11
11
  Classifier: Programming Language :: Python :: 3.13
12
12
  Requires-Dist: lamin_utils==0.15.0
13
- Requires-Dist: lamin_cli==1.7.0
14
- Requires-Dist: lamindb_setup[aws]==1.10.0
13
+ Requires-Dist: lamin_cli==1.7.1
14
+ Requires-Dist: lamindb_setup[aws]==1.10.1
15
+ Requires-Dist: bionty>=1.7a1
16
+ Requires-Dist: wetlab>=1.5a1
17
+ Requires-Dist: nbproject==0.11.1
18
+ Requires-Dist: jupytext
19
+ Requires-Dist: nbconvert>=7.2.1
20
+ Requires-Dist: mistune!=3.1.0
15
21
  Requires-Dist: pyyaml
16
22
  Requires-Dist: pyarrow
17
23
  Requires-Dist: pandera>=0.24.0
@@ -23,8 +29,6 @@ Requires-Dist: anndata>=0.8.0,<=0.12.1
23
29
  Requires-Dist: fsspec
24
30
  Requires-Dist: graphviz
25
31
  Requires-Dist: psycopg2-binary
26
- Requires-Dist: bionty>=1.6.1rc1 ; extra == "bionty"
27
- Requires-Dist: clinicore>=1.2.1 ; extra == "clinicore"
28
32
  Requires-Dist: tomlkit ; extra == "dev"
29
33
  Requires-Dist: line_profiler ; extra == "dev"
30
34
  Requires-Dist: pre-commit ; extra == "dev"
@@ -32,28 +36,19 @@ Requires-Dist: nox ; extra == "dev"
32
36
  Requires-Dist: laminci>=0.3 ; extra == "dev"
33
37
  Requires-Dist: pytest>=6.0 ; extra == "dev"
34
38
  Requires-Dist: coverage ; extra == "dev"
35
- Requires-Dist: pytest-cov ; extra == "dev"
39
+ Requires-Dist: pytest-cov<7.0.0 ; extra == "dev"
36
40
  Requires-Dist: mudata ; extra == "dev"
37
41
  Requires-Dist: nbproject_test>=0.6.0 ; extra == "dev"
38
42
  Requires-Dist: faker-biology ; extra == "dev"
39
43
  Requires-Dist: pronto ; extra == "dev"
40
44
  Requires-Dist: readfcs>=2.0.1 ; extra == "fcs"
41
45
  Requires-Dist: lamindb_setup[gcp] ; extra == "gcp"
42
- Requires-Dist: nbproject==0.11.1 ; extra == "jupyter"
43
- Requires-Dist: jupytext ; extra == "jupyter"
44
- Requires-Dist: nbconvert>=7.2.1 ; extra == "jupyter"
45
- Requires-Dist: mistune!=3.1.0 ; extra == "jupyter"
46
- Requires-Dist: wetlab>=1.3.1 ; extra == "wetlab"
47
46
  Requires-Dist: numcodecs<0.16.0 ; extra == "zarr"
48
47
  Requires-Dist: zarr>=2.16.0,<3.0.0a0 ; extra == "zarr"
49
48
  Project-URL: Home, https://github.com/laminlabs/lamindb
50
- Provides-Extra: bionty
51
- Provides-Extra: clinicore
52
49
  Provides-Extra: dev
53
50
  Provides-Extra: fcs
54
51
  Provides-Extra: gcp
55
- Provides-Extra: jupyter
56
- Provides-Extra: wetlab
57
52
  Provides-Extra: zarr
58
53
 
59
54
  [![Stars](https://img.shields.io/github/stars/laminlabs/lamindb?logo=GitHub)](https://github.com/laminlabs/lamindb)
@@ -77,7 +72,7 @@ It lets you track data transformations, validate & annotate datasets, and query
77
72
  Install the `lamindb` Python package:
78
73
 
79
74
  ```shell
80
- pip install 'lamindb[jupyter,bionty]' # support notebooks & biological ontologies
75
+ pip install lamindb
81
76
  ```
82
77
 
83
78
  Create a LaminDB instance:
@@ -134,7 +129,7 @@ Conversely, you can query artifacts by the script that created them.
134
129
  ln.Artifact.get(transform__key="create-fasta.py") # query artifact by transform key
135
130
  ```
136
131
 
137
- Data lineage is just one type of metadata to help analysis and model training through queries, validation, and annotation. Here is a more [comprehensive example](https://lamin.ai/laminlabs/lamindata/artifact/fgKBV8qdSnbIga0i).
132
+ Data lineage is just one type of metadata to help analysis and model training through queries, validation, and annotation. Here is a more [comprehensive example](https://lamin.ai/laminlabs/lamindata/artifact/9K1dteZ6Qx0EXK8g).
138
133
 
139
134
  <img src="https://lamin-site-assets.s3.amazonaws.com/.lamindb/6sofuDVvTANB0f480001.png" width="850">
140
135
 
@@ -1,8 +1,8 @@
1
- lamindb/__init__.py,sha256=UgOWRQFmu9TorkWyzPRHcCsWBk0Dx0dzSj4rbr6RMik,3241
2
- lamindb/_finish.py,sha256=t2-ccJ3qDMjUjvJo14l_z7M2BGidHRMdzZAeXFLzuc0,21305
1
+ lamindb/__init__.py,sha256=jO-XCxfKHm4hUoqFpHDOPFPoKbknvdkm0oImBWGod8A,3241
2
+ lamindb/_finish.py,sha256=4KkFyb9d-GEGjDw_zDrnGt_bq3auQ_OQu0hV-2U73AQ,21355
3
3
  lamindb/_tracked.py,sha256=fls9yd7EEGO9Ni51kA_pcBkeLpzm2HZrWtwYGQequNE,4395
4
4
  lamindb/_view.py,sha256=GOKTfwnEaly9fdeWo9SlhYRc3UWEyLDmTlIUzjFXMYY,4960
5
- lamindb/errors.py,sha256=efqBQ1ca3jMsgCYj2Dssf-SQ9nN70we-eEWnwhQesio,2192
5
+ lamindb/errors.py,sha256=kHKRWXPGQPnzTo0D0vQxJjY_8bGH_Xx1IGFgM-dYN3E,2277
6
6
  lamindb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  lamindb/base/__init__.py,sha256=u623ZDoNCwwyLLt_Jhtp3KDeum0LOg6cwAqn5TEgz_E,313
8
8
  lamindb/base/dtypes.py,sha256=Bfrca8Slb3vIAIMLd-mjG4_9bTHz-LlThSIUHvfNmhA,3189
@@ -13,7 +13,7 @@ lamindb/base/uids.py,sha256=cLBi5mIlsf1ltkTb17r1FLzlOjlGmjvsCygoVJHQ-A8,2116
13
13
  lamindb/base/users.py,sha256=8MSmAvCKoUF15YsDE6BGLBXsFWpfoEEg8iDTKZ7kD48,848
14
14
  lamindb/core/__init__.py,sha256=I9F-GugBMZwFLpUPb1MXyLfccIVAj021Gb_00h_18MY,633
15
15
  lamindb/core/_compat.py,sha256=NLnKk1qk4xdgMV-QwFDnBnbio02ujjlF86icvhpdv4c,2029
16
- lamindb/core/_context.py,sha256=5edP0M5_m8zgNXu7-1XaRLOv20i5LaWHBkEvMHsSiB0,40376
16
+ lamindb/core/_context.py,sha256=wPRNcQ0tPrwvYkYbHxZz0VzdxeBZEuorWOIqpucnbFk,40444
17
17
  lamindb/core/_mapped_collection.py,sha256=osquwC6ee0wJ_I6O-8AZwnQUa_r9zqa0MN82Q-nBI3Y,25746
18
18
  lamindb/core/_settings.py,sha256=519bOSopRb7_nE874KDJB263v1xFlk4TOqhBNNeO4yw,10992
19
19
  lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
@@ -37,25 +37,25 @@ lamindb/core/subsettings/_annotation_settings.py,sha256=o-yTYw-NmjFmtehbKU8qnf7t
37
37
  lamindb/core/subsettings/_creation_settings.py,sha256=NGHWKqCFSzVNBxAr2VnmdYguiFdW29XUK7T9wRsVshg,906
38
38
  lamindb/curators/__init__.py,sha256=WLnaVxrhQGZxGB3pjg-SM4oUu6DaKA78S_J3BfVKLEg,496
39
39
  lamindb/curators/_legacy.py,sha256=Ay2nd4u2OPL59aYC6rKNE9YpfVTC-MMPvnyzS3fM6xg,55172
40
- lamindb/curators/core.py,sha256=TQYzw4HOsXMcZE0o_RFd_VPvS8GUPFmv8SovyIVUVuE,78056
40
+ lamindb/curators/core.py,sha256=PbkRxt8ngAxnfTXXxKNKCCEgtUxoyp3_I2f4UVyB7tE,78316
41
41
  lamindb/examples/__init__.py,sha256=f0pBxijIA26ULUBnsP2sa1e4CLqMTeUUEqNeINJIf9o,179
42
42
  lamindb/examples/cellxgene/__init__.py,sha256=0itpr7sthjaZAbL5nGTVTisL5OeP-3WqKFr8zyDWxYM,247
43
- lamindb/examples/cellxgene/_cellxgene.py,sha256=9Q6cB-sowTQgdtegEAHm5jveXrtl7gp0Aops7XTQGbE,12879
43
+ lamindb/examples/cellxgene/_cellxgene.py,sha256=Vgot8L9ZmaX_PwOlsghmVKsnstxj979yRGjWNtDclUw,12885
44
44
  lamindb/examples/cellxgene/cellxgene_schema_versions.csv,sha256=IbtgPbrMksqr3q9z0t2-D1ZTPnMO_i29W7crtgpN52w,2534
45
- lamindb/examples/croissant/__init__.py,sha256=dkcT9zkRDBPpds6LnF804o8fcFddjY1KNO_-jLCacag,1548
45
+ lamindb/examples/croissant/__init__.py,sha256=dfkL6MJ-L0qdPd4ZzGlMAlQHCB5wIGpSuQVwXBEeQwQ,2322
46
46
  lamindb/examples/croissant/mini_immuno.anndata.zarr_metadata.json,sha256=XhY4wnFyMoK4Thkaolh2yJxtU6sX0bdFsJvRvt942k8,2921
47
47
  lamindb/examples/datasets/__init__.py,sha256=SKeX5kgjfXtNkUek4GfLYsgn-bGO8UsuF4Qf3R_zN-4,1988
48
- lamindb/examples/datasets/_core.py,sha256=OCz981_GuhQ6qW2ETl_3MOUpOUWWkTUTZ1PhUIKrWUU,21308
48
+ lamindb/examples/datasets/_core.py,sha256=JIHf8NrvGYHYtt-ILxCIb4tOQUIPpFBXw357fDlbU2I,21553
49
49
  lamindb/examples/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
50
50
  lamindb/examples/datasets/_small.py,sha256=wHJb6eXzkQC_Ma8VqX7Orb3nGuAbyNdrr0jxJ93jjxc,4852
51
- lamindb/examples/datasets/mini_immuno.py,sha256=HLeO5Xhp4DGQ4AjVf-VgBWfBJe1EefzbGzABbr5XgUk,6142
51
+ lamindb/examples/datasets/mini_immuno.py,sha256=ZEL9T4zhCKm8ggqU7VVhuihVKPR3MmlkJNOtdygH2v4,6107
52
52
  lamindb/examples/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- lamindb/examples/fixtures/sheets.py,sha256=2oRAY2jQYCJuW_gCTGAs90XerYQHIe3pivoi0vzgXpc,9035
53
+ lamindb/examples/fixtures/sheets.py,sha256=YrkHLSjXIzIJlvZFuYppGqDcQKif93O37CcRobZkNDQ,9506
54
54
  lamindb/examples/schemas/__init__.py,sha256=NPDp7VjMOHStEIthx3xW9NSHtY7jnnMzrNPcSDgxT3M,241
55
55
  lamindb/examples/schemas/_anndata.py,sha256=TAQrnBLZhH4TgbznrJDdGK_Gze6cf1MvyXuCcKIvb1g,1210
56
56
  lamindb/examples/schemas/_simple.py,sha256=Dspj5QRmv241IstBxuc1E1Q5YeEqTOnOvakg7ChPj1k,911
57
57
  lamindb/integrations/__init__.py,sha256=Zh0ROuRmob1QGV2mCo3A7cFmdheJGq4CUdo7G16pRHU,286
58
- lamindb/integrations/_croissant.py,sha256=9zRkOg2pkaiylKslfKfxYzZ5I5813qhCfA4Er3Q3bB4,4166
58
+ lamindb/integrations/_croissant.py,sha256=RNX6dDPPun1QG6t456GxK19t071_FJWzwmUXiVDkHFE,5200
59
59
  lamindb/integrations/_vitessce.py,sha256=s2F8KPpYVG0zUOTaDJgH1XAJtQDg1zrD_SxC4ZHUkHk,4035
60
60
  lamindb/migrations/0069_squashed.py,sha256=7XdiRW0MBtr3Jck9dbIy_9qxmB_sjtLM1SH9x062d2k,62631
61
61
  lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
@@ -110,30 +110,30 @@ lamindb/migrations/0118_alter_recordproject_value_projectrecord.py,sha256=aNC_o3
110
110
  lamindb/migrations/0119_rename_records_project_linked_in_records.py,sha256=Feh4rCfoGD4kiGG-sk_IQx7cplDn-yVIlzI5FzE8utI,688
111
111
  lamindb/migrations/0119_squashed.py,sha256=mY1gpmPqEDEZjjPFgiDJSSGhP9TmNi-T7b5bNmRDztM,166975
112
112
  lamindb/migrations/0120_add_record_fk_constraint.py,sha256=KvYuA0ET6hoVugu9gwAk29_dSM5HKeOzNvQARjjyK5U,1815
113
- lamindb/migrations/0121_recorduser.py,sha256=Od4CNk2K-IvPdQkIaoOiVA1IW7lCFOwxz9phR0r0oWo,1729
113
+ lamindb/migrations/0121_recorduser.py,sha256=aDz6P-dSUn2bsLKuNPpMk2bSY1DeDftQPBBIVtNCpAI,1980
114
114
  lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- lamindb/models/__init__.py,sha256=Cm1j6A8YwYfPFg3F-si5haanb7belkRqOi8DH3FQZds,2468
115
+ lamindb/models/__init__.py,sha256=Owupnxv_JnoOenlSpn6iT997VRnwayBowh5MAfT-Eqs,2484
116
116
  lamindb/models/_describe.py,sha256=Co6_whJG7Pm2Sl6YDmGoYL28XZyJ7VqICHTfgGedxvw,10919
117
117
  lamindb/models/_django.py,sha256=go0sAhIGJ-JkYe5OMviWUm-ZwHdqDuBgnPbFvncA-lQ,12347
118
- lamindb/models/_feature_manager.py,sha256=Epw9YDkrrvmMupy9Cronwiz4nsC5cECud5mNfJN_hjw,55111
118
+ lamindb/models/_feature_manager.py,sha256=35CylDvaq-awUTSpjqgMDyBU78wfkRou3OteUfmtZo0,57502
119
119
  lamindb/models/_from_values.py,sha256=ymR8b0Qa3ZiTFTIuMsFYiBNH16ggDPlYeFjCaFgGETA,13372
120
120
  lamindb/models/_is_versioned.py,sha256=zCnn5Z5HehBlKX-NXFhqfr3lbVOMRhlvG4ljtLbXl4A,7590
121
121
  lamindb/models/_label_manager.py,sha256=12RV8uEpWILGUkNHb7JMccF341ArmrIbHfI9KAo742Q,12118
122
122
  lamindb/models/_relations.py,sha256=zHYLujy9vkuB9jVq5844TpzLSP__iYNCQcsl-FzK1Jw,3700
123
- lamindb/models/artifact.py,sha256=T_euX9aqHAWDGpIjzfUp635a2awPYzYbGBEVnyMmZlg,124675
124
- lamindb/models/artifact_set.py,sha256=tiQNlamIMCGzpU_esX0J8lbFnq6U-mpZ0UPFrUMP7Sc,5174
123
+ lamindb/models/artifact.py,sha256=L0DF6HFU1MXHXC3MqE7vWQrRefg4T9A5SFkzA4Sh-J8,125097
124
+ lamindb/models/artifact_set.py,sha256=TfRxmuY9mRzkIeG_vWIDxq4_R_efnXuTbz4xxz7S5Kg,5389
125
125
  lamindb/models/can_curate.py,sha256=_w7k8-gPju7owHzX79phtcL7VRy7wAaz-90MzOz8UUQ,29313
126
126
  lamindb/models/collection.py,sha256=OqPhDppzCx2y7xEqtmV83el4iNrvOO1KvkE-y8ZEvm4,27372
127
127
  lamindb/models/feature.py,sha256=6kI3UZMp3gBi75NhXBp_jn-1tRlc42YdJOEJFNgjtNo,41814
128
128
  lamindb/models/has_parents.py,sha256=Ok-Tsh4-oBDjkyevyMSuOCb0mzDiswiO_0ufTqWz8o4,20341
129
129
  lamindb/models/project.py,sha256=AhaY24iE8ilpS5dRFYzY6xQNVlqPHWMk72ib2OI_N8U,18732
130
130
  lamindb/models/query_manager.py,sha256=zjO31kbj1t08WTxeZB9-BPjooz6axh06EFu90dfvpSA,11358
131
- lamindb/models/query_set.py,sha256=rxK0DR86PM9cFjat0DC-_9jAZrUUQZEejwHMEP2whYo,35831
132
- lamindb/models/record.py,sha256=v6DT03QKRgzYTvoVzfrBiuI0ZUzeGsdDRTcbtwo1W8s,12881
133
- lamindb/models/run.py,sha256=pF_xsAXRPxIzN0n0q0_RNVDsm0IUYWGx1NkMjTQ-X10,15586
134
- lamindb/models/save.py,sha256=jXha2jfY-pWsKuP2dwaEROhUGxhM8fTWQGWAzA_xsM0,16777
131
+ lamindb/models/query_set.py,sha256=y18mzqWUNbjOmcS1oW25ZxYtvEMtXYGB8c10OGxNZ4c,39117
132
+ lamindb/models/record.py,sha256=2eKEDqpiX5-aN2kUVXLuTVvQUspqQ5h10onbQM6Ta7g,13041
133
+ lamindb/models/run.py,sha256=LVZ2z5QV4aVYYsqGcLmMfqvPpKj4EGGHVts_RR8_c-E,14443
134
+ lamindb/models/save.py,sha256=gBt74RqfwgTa8PnTE153p17PruTAt6WGmGk9ZEBrojI,16719
135
135
  lamindb/models/schema.py,sha256=LQuPQhyLitloRGxq6DWZMHcR-xDZY1NctPHjrC6t1iw,49827
136
- lamindb/models/sqlrecord.py,sha256=webBBeKZ2UXAvfTD-osxN4Ju3EYAwaZrD43ihGQeowo,72308
136
+ lamindb/models/sqlrecord.py,sha256=L_-60qCyWuG00IZvGiXA_bcVbYd2GKv-ax2TDQcn8IA,72679
137
137
  lamindb/models/storage.py,sha256=n7jth0RQ19K0W8ICbrAO942d5jBm1-h7DsrSjMJgAB0,15551
138
138
  lamindb/models/transform.py,sha256=FcIPqmSk1hahg2Cr8q6lm1kKpbdvu2JUceSlPIV9Dww,12780
139
139
  lamindb/models/ulabel.py,sha256=UznidEEoiIns_KetWgCbDejXuM5hmzF6F49yqf2kLpQ,9495
@@ -142,7 +142,7 @@ lamindb/setup/_switch.py,sha256=njZJN__JOhVrBFGClQG1wobdhJJp6l_XzPGKtKSCrfU,434
142
142
  lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
143
143
  lamindb/setup/errors/__init__.py,sha256=bAHTxOUJW1rm4zpF0Pvqkftn8W6iMGnQ-uyNBu13Nfg,171
144
144
  lamindb/setup/types/__init__.py,sha256=ATaosOi6q-cDWB52T69_sRmLMqj8cHfc-vljzZsrJNw,169
145
- lamindb-1.11a1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
146
- lamindb-1.11a1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
147
- lamindb-1.11a1.dist-info/METADATA,sha256=r8T7OG3ElU8HI8O7zTCoS7BmPJsijprGF6jRTDXesMY,5200
148
- lamindb-1.11a1.dist-info/RECORD,,
145
+ lamindb-1.11.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
146
+ lamindb-1.11.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
147
+ lamindb-1.11.1.dist-info/METADATA,sha256=rrGmUwB5UIBBj-3k8HznNPlWCsAf2mHkQEK5aMSinUY,4865
148
+ lamindb-1.11.1.dist-info/RECORD,,