lamindb 1.11.3__py3-none-any.whl → 1.12.0__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 +8 -14
- lamindb/_tracked.py +2 -0
- lamindb/base/types.py +1 -3
- lamindb/core/_context.py +16 -31
- lamindb/core/_mapped_collection.py +2 -2
- lamindb/core/storage/paths.py +5 -3
- lamindb/curators/core.py +15 -4
- lamindb/examples/__init__.py +3 -1
- lamindb/examples/croissant/__init__.py +3 -1
- lamindb/examples/mlflow/__init__.py +38 -0
- lamindb/examples/wandb/__init__.py +40 -0
- lamindb/integrations/__init__.py +26 -0
- lamindb/integrations/lightning.py +87 -0
- lamindb/migrations/0120_add_record_fk_constraint.py +1 -1
- lamindb/migrations/0122_remove_personproject_person_and_more.py +219 -0
- lamindb/migrations/0123_alter_artifact_description_alter_branch_description_and_more.py +82 -0
- lamindb/migrations/0124_page_artifact_page_collection_page_feature_page_and_more.py +15 -0
- lamindb/migrations/0125_artifact_is_locked_collection_is_locked_and_more.py +79 -0
- lamindb/migrations/0126_alter_artifact_is_locked_alter_collection_is_locked_and_more.py +105 -0
- lamindb/migrations/0127_alter_run_status_code_feature_dtype.py +31 -0
- lamindb/migrations/0128_artifact__real_key.py +21 -0
- lamindb/migrations/0129_remove_feature_page_remove_project_page_and_more.py +779 -0
- lamindb/migrations/0130_branch_space_alter_artifactblock_artifact_and_more.py +170 -0
- lamindb/migrations/0131_record_unique_name_type_space.py +18 -0
- lamindb/migrations/0132_record_parents_record_reference_and_more.py +61 -0
- lamindb/migrations/0133_artifactuser_artifact_users.py +108 -0
- lamindb/migrations/{0119_squashed.py → 0133_squashed.py} +1211 -322
- lamindb/models/__init__.py +14 -4
- lamindb/models/_django.py +1 -2
- lamindb/models/_feature_manager.py +1 -0
- lamindb/models/_is_versioned.py +14 -16
- lamindb/models/_relations.py +7 -0
- lamindb/models/artifact.py +99 -56
- lamindb/models/artifact_set.py +20 -3
- lamindb/models/block.py +174 -0
- lamindb/models/can_curate.py +7 -9
- lamindb/models/collection.py +9 -9
- lamindb/models/feature.py +38 -38
- lamindb/models/has_parents.py +15 -6
- lamindb/models/project.py +44 -99
- lamindb/models/query_manager.py +1 -1
- lamindb/models/query_set.py +36 -8
- lamindb/models/record.py +169 -46
- lamindb/models/run.py +44 -10
- lamindb/models/save.py +7 -7
- lamindb/models/schema.py +9 -2
- lamindb/models/sqlrecord.py +87 -35
- lamindb/models/storage.py +13 -3
- lamindb/models/transform.py +7 -2
- lamindb/models/ulabel.py +6 -23
- {lamindb-1.11.3.dist-info → lamindb-1.12.0.dist-info}/METADATA +18 -21
- {lamindb-1.11.3.dist-info → lamindb-1.12.0.dist-info}/RECORD +54 -38
- {lamindb-1.11.3.dist-info → lamindb-1.12.0.dist-info}/LICENSE +0 -0
- {lamindb-1.11.3.dist-info → lamindb-1.12.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
lamindb/__init__.py,sha256=
|
1
|
+
lamindb/__init__.py,sha256=aUze-KHPFEnlYJz0kbPPb96O4EpPbNNZ1agCU4nmNEM,3222
|
2
2
|
lamindb/_finish.py,sha256=4KkFyb9d-GEGjDw_zDrnGt_bq3auQ_OQu0hV-2U73AQ,21355
|
3
|
-
lamindb/_tracked.py,sha256=
|
3
|
+
lamindb/_tracked.py,sha256=HSlUud_UeHTVNN2WQ14gU2Kr7sUQKyoD3wLD58D5mlY,4490
|
4
4
|
lamindb/_view.py,sha256=GOKTfwnEaly9fdeWo9SlhYRc3UWEyLDmTlIUzjFXMYY,4960
|
5
5
|
lamindb/errors.py,sha256=kHKRWXPGQPnzTo0D0vQxJjY_8bGH_Xx1IGFgM-dYN3E,2277
|
6
6
|
lamindb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -8,13 +8,13 @@ lamindb/base/__init__.py,sha256=u623ZDoNCwwyLLt_Jhtp3KDeum0LOg6cwAqn5TEgz_E,313
|
|
8
8
|
lamindb/base/dtypes.py,sha256=Bfrca8Slb3vIAIMLd-mjG4_9bTHz-LlThSIUHvfNmhA,3189
|
9
9
|
lamindb/base/fields.py,sha256=5l8ke5sAJ5_JvWqjKEMW8oyriGKA7itqGjbmoKKrJrM,8102
|
10
10
|
lamindb/base/ids.py,sha256=X-1N129FOoNw4TPlK_EzgTZOzRidiMyPWszz9r_066g,34
|
11
|
-
lamindb/base/types.py,sha256=
|
11
|
+
lamindb/base/types.py,sha256=cVpzabEtSfKQKDk8ikrbDGJ5vl3mRDEmFl3_NFzDxgM,3011
|
12
12
|
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=
|
17
|
-
lamindb/core/_mapped_collection.py,sha256=
|
16
|
+
lamindb/core/_context.py,sha256=xlU5xmmFe2abSqaQixAzj0giun_vQaVjA1if0zvVEm4,39760
|
17
|
+
lamindb/core/_mapped_collection.py,sha256=eOrBQX23N-3ifKVMzbhLip_cGHUaJe0T7mz_JtGAcWI,25750
|
18
18
|
lamindb/core/_settings.py,sha256=519bOSopRb7_nE874KDJB263v1xFlk4TOqhBNNeO4yw,10992
|
19
19
|
lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
|
20
20
|
lamindb/core/_track_environment.py,sha256=fa0-qKEe0BpL79_nsDUDtbg1iA3VpJTh0RCOGdc2XOA,974
|
@@ -31,18 +31,18 @@ lamindb/core/storage/_tiledbsoma.py,sha256=EdzgGVTamB7Ef31doGFWwIOhTd9TNrBfNUplD
|
|
31
31
|
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
32
32
|
lamindb/core/storage/_zarr.py,sha256=VHT01D_QktmZB4r92XSe8FYveoPkFtn_8XAd3hV1GSA,4433
|
33
33
|
lamindb/core/storage/objects.py,sha256=ISVjBuXPQENZ2XVQDvfX-HZSyDjQi_OGnoJXQmI---Y,3282
|
34
|
-
lamindb/core/storage/paths.py,sha256=
|
34
|
+
lamindb/core/storage/paths.py,sha256=r2P1XhtCfzDccWJSiub-7kgLIvXKiJrzShgZmmsO3_0,7218
|
35
35
|
lamindb/core/subsettings/__init__.py,sha256=f_vOqZOjVGez8pLmtrUuc_ayDGXl07t_ZY-P2Cedxbo,201
|
36
36
|
lamindb/core/subsettings/_annotation_settings.py,sha256=o-yTYw-NmjFmtehbKU8qnf7tyaeDFkTRGan1pXAIVT0,370
|
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=
|
41
|
-
lamindb/examples/__init__.py,sha256=
|
40
|
+
lamindb/curators/core.py,sha256=nPVYtTmzaavThqpER84CKnr_71Ebc3-XXzxxKSiVeJw,78839
|
41
|
+
lamindb/examples/__init__.py,sha256=Ru_lqgw_uRsewYAB3NEkB5CQy7Y5KWxNf9vmL5Jxfk4,213
|
42
42
|
lamindb/examples/cellxgene/__init__.py,sha256=0itpr7sthjaZAbL5nGTVTisL5OeP-3WqKFr8zyDWxYM,247
|
43
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=
|
45
|
+
lamindb/examples/croissant/__init__.py,sha256=3YnURcsGWdkwyv-SdW1nfECE0CGMpJ38E2e-DJB1HQ4,2310
|
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
48
|
lamindb/examples/datasets/_core.py,sha256=JIHf8NrvGYHYtt-ILxCIb4tOQUIPpFBXw357fDlbU2I,21553
|
@@ -51,12 +51,15 @@ lamindb/examples/datasets/_small.py,sha256=wHJb6eXzkQC_Ma8VqX7Orb3nGuAbyNdrr0jxJ
|
|
51
51
|
lamindb/examples/datasets/mini_immuno.py,sha256=ZEL9T4zhCKm8ggqU7VVhuihVKPR3MmlkJNOtdygH2v4,6107
|
52
52
|
lamindb/examples/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
53
|
lamindb/examples/fixtures/sheets.py,sha256=YrkHLSjXIzIJlvZFuYppGqDcQKif93O37CcRobZkNDQ,9506
|
54
|
+
lamindb/examples/mlflow/__init__.py,sha256=0gQ8ux1rWLATINkxuXQc9G6cpIKPzlU8FjlrMlyrAuA,1332
|
54
55
|
lamindb/examples/schemas/__init__.py,sha256=NPDp7VjMOHStEIthx3xW9NSHtY7jnnMzrNPcSDgxT3M,241
|
55
56
|
lamindb/examples/schemas/_anndata.py,sha256=TAQrnBLZhH4TgbznrJDdGK_Gze6cf1MvyXuCcKIvb1g,1210
|
56
57
|
lamindb/examples/schemas/_simple.py,sha256=Dspj5QRmv241IstBxuc1E1Q5YeEqTOnOvakg7ChPj1k,911
|
57
|
-
lamindb/
|
58
|
+
lamindb/examples/wandb/__init__.py,sha256=QOgHfXVlKae23MGyXaRaZoC9Byx_OkZOtda6E6hsgQk,1340
|
59
|
+
lamindb/integrations/__init__.py,sha256=AHPW0foh1DRgeHD2CyzLwm-OkKUzzKt8cNCLwq45zuI,868
|
58
60
|
lamindb/integrations/_croissant.py,sha256=RNX6dDPPun1QG6t456GxK19t071_FJWzwmUXiVDkHFE,5200
|
59
61
|
lamindb/integrations/_vitessce.py,sha256=s2F8KPpYVG0zUOTaDJgH1XAJtQDg1zrD_SxC4ZHUkHk,4035
|
62
|
+
lamindb/integrations/lightning.py,sha256=RD_L3jf0IOBbD7GScJ6nwa1-R8SpNsg33vbyuC7KVaw,2730
|
60
63
|
lamindb/migrations/0069_squashed.py,sha256=7XdiRW0MBtr3Jck9dbIy_9qxmB_sjtLM1SH9x062d2k,62631
|
61
64
|
lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
|
62
65
|
lamindb/migrations/0071_lamindbv1_migrate_schema.py,sha256=o47wYtMTuQ-LEVQSftiV0Wwvs3bcISZ_JtWsMxlLykk,25130
|
@@ -108,41 +111,54 @@ lamindb/migrations/0116_remove_artifact_unique_artifact_storage_key_hash_and_mor
|
|
108
111
|
lamindb/migrations/0117_fix_artifact_storage_hash_unique_constraints.py,sha256=OqgUmf9_TeNwTddwcwZdJYfpN6cpFYBaw5_KitYumNM,1033
|
109
112
|
lamindb/migrations/0118_alter_recordproject_value_projectrecord.py,sha256=aNC_o3xfH9wk1BTbOWKbXeV4r_IPXgytYBRTFi_U-MM,3493
|
110
113
|
lamindb/migrations/0119_rename_records_project_linked_in_records.py,sha256=Feh4rCfoGD4kiGG-sk_IQx7cplDn-yVIlzI5FzE8utI,688
|
111
|
-
lamindb/migrations/
|
112
|
-
lamindb/migrations/0120_add_record_fk_constraint.py,sha256=KvYuA0ET6hoVugu9gwAk29_dSM5HKeOzNvQARjjyK5U,1815
|
114
|
+
lamindb/migrations/0120_add_record_fk_constraint.py,sha256=vqOtEBP-8ihXWSitFpz8KLNjJmJmSrd21yHv3jycK8E,1847
|
113
115
|
lamindb/migrations/0121_recorduser.py,sha256=aDz6P-dSUn2bsLKuNPpMk2bSY1DeDftQPBBIVtNCpAI,1980
|
116
|
+
lamindb/migrations/0122_remove_personproject_person_and_more.py,sha256=MP5I4f3gKcKQEcEvi6FPzKY-QtxaDgfHCy09SxkrPF4,7429
|
117
|
+
lamindb/migrations/0123_alter_artifact_description_alter_branch_description_and_more.py,sha256=hjO5O_5fIz3aK1TBnWOXf23tSHgPVKdSA7f3ppGQS6I,2800
|
118
|
+
lamindb/migrations/0124_page_artifact_page_collection_page_feature_page_and_more.py,sha256=N68iAaR9j1agnkg0eTQxewq1hwQ80DG5rD4EYwjUgWU,382
|
119
|
+
lamindb/migrations/0125_artifact_is_locked_collection_is_locked_and_more.py,sha256=Rhrbw9Ra3wIRaJBj4xYxrs4l1Mk_SHEyxl835lmDaDM,2681
|
120
|
+
lamindb/migrations/0126_alter_artifact_is_locked_alter_collection_is_locked_and_more.py,sha256=P1v752HqKEKFg6jKZX8Dm4WEEDD5C_O-b5cWHrP3rns,3323
|
121
|
+
lamindb/migrations/0127_alter_run_status_code_feature_dtype.py,sha256=7ULxX2mJALsvAAIh5MqCshlUfk8tHTxa66byDCbtOu4,877
|
122
|
+
lamindb/migrations/0128_artifact__real_key.py,sha256=ZxJKn7wt5oO65_jvZiagURP-b2WlJfLAi-K5XHWC5M0,520
|
123
|
+
lamindb/migrations/0129_remove_feature_page_remove_project_page_and_more.py,sha256=KJeLaTz6pzITduO1chbr4PZhf4hdQebEpyY5Mw-vnns,27671
|
124
|
+
lamindb/migrations/0130_branch_space_alter_artifactblock_artifact_and_more.py,sha256=GcDkNx_CEP7KSNFAINa3DMqWlxK2oDPdhBqVbjh0mRM,5671
|
125
|
+
lamindb/migrations/0131_record_unique_name_type_space.py,sha256=5xPS_BmMG0Swb9lOQm59yzFhzuCifxNvhUkgiD0Eciw,486
|
126
|
+
lamindb/migrations/0132_record_parents_record_reference_and_more.py,sha256=2n7pdin6n9BwGpX9g04X_zYmtg0lV9ioj1PlT3Oss5w,1896
|
127
|
+
lamindb/migrations/0133_artifactuser_artifact_users.py,sha256=GrZIvvIoPfbzBhLLfk7wFnaceBvdbzNSx0kDewRcQDA,3812
|
128
|
+
lamindb/migrations/0133_squashed.py,sha256=nDR9_ddfBVKn9RP2Qp_cahPE9I0h8l_SHI2mdX5-X1o,199541
|
114
129
|
lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
|
-
lamindb/models/__init__.py,sha256=
|
130
|
+
lamindb/models/__init__.py,sha256=qxvjXDn23MtdSPVK0qHzdcLUDRZkIzmd1z3dDhAfXVA,2656
|
116
131
|
lamindb/models/_describe.py,sha256=Co6_whJG7Pm2Sl6YDmGoYL28XZyJ7VqICHTfgGedxvw,10919
|
117
|
-
lamindb/models/_django.py,sha256=
|
118
|
-
lamindb/models/_feature_manager.py,sha256=
|
132
|
+
lamindb/models/_django.py,sha256=L5Tg1NVG6e1zmvJrzk8xbDGnSWvc4l0kNMV1R1GH1zs,12289
|
133
|
+
lamindb/models/_feature_manager.py,sha256=mrGgOH2_j3YwPz5O_Zcm3ctTAdcf_bxs6UZ-IkHq3RU,57539
|
119
134
|
lamindb/models/_from_values.py,sha256=ymR8b0Qa3ZiTFTIuMsFYiBNH16ggDPlYeFjCaFgGETA,13372
|
120
|
-
lamindb/models/_is_versioned.py,sha256=
|
135
|
+
lamindb/models/_is_versioned.py,sha256=ZlTuiAoQuXJqjPhemRU9U3YZGID6hiuclHT9KLzOg2w,7445
|
121
136
|
lamindb/models/_label_manager.py,sha256=12RV8uEpWILGUkNHb7JMccF341ArmrIbHfI9KAo742Q,12118
|
122
|
-
lamindb/models/_relations.py,sha256=
|
123
|
-
lamindb/models/artifact.py,sha256
|
124
|
-
lamindb/models/artifact_set.py,sha256=
|
125
|
-
lamindb/models/
|
126
|
-
lamindb/models/
|
127
|
-
lamindb/models/
|
128
|
-
lamindb/models/
|
129
|
-
lamindb/models/
|
130
|
-
lamindb/models/
|
131
|
-
lamindb/models/
|
132
|
-
lamindb/models/
|
133
|
-
lamindb/models/
|
134
|
-
lamindb/models/
|
135
|
-
lamindb/models/
|
136
|
-
lamindb/models/
|
137
|
-
lamindb/models/
|
138
|
-
lamindb/models/
|
139
|
-
lamindb/models/
|
137
|
+
lamindb/models/_relations.py,sha256=ShOIOWV20WQjQkeqrtAuOuud1rRHADv4d0COTJaYwiU,3937
|
138
|
+
lamindb/models/artifact.py,sha256=-BIBP0LeYLnMyyL-09-OoYbk8GTp6fT9hjWY3OqyNZA,126757
|
139
|
+
lamindb/models/artifact_set.py,sha256=W0lwQpwkfRwFKRasR0_iyU7uo_fTCUie_GdRm0-DT7Y,5937
|
140
|
+
lamindb/models/block.py,sha256=hIvfHQ52drfT7N0kIjaWMXggyAmwsB76F1oQsn0GIbs,5370
|
141
|
+
lamindb/models/can_curate.py,sha256=G3vHnXpZctq47s91Z-hmQmfCGr3638qRlniCsS2yKpU,29310
|
142
|
+
lamindb/models/collection.py,sha256=_zEm7RkzL1dU21u_J-9NBHTbYvkTXdI0mmUZqgJRX80,27261
|
143
|
+
lamindb/models/feature.py,sha256=8hUZUT-FdQPpPa0hRwc248z45Ju_k9X2vuGJIaFZA9E,41783
|
144
|
+
lamindb/models/has_parents.py,sha256=YN9z0ol0EhkuXydtMFMVmAnAcwNO41cNTrPDHvDtYgU,20660
|
145
|
+
lamindb/models/project.py,sha256=n4TpMj3gMYH0pQa7BC8PrZ-lKnwsPHPeM4Frd8c1qxE,16751
|
146
|
+
lamindb/models/query_manager.py,sha256=dVC2ZrYoubevM6XjSUhucDuWgxninYY6Pqmq3-kNAx0,11368
|
147
|
+
lamindb/models/query_set.py,sha256=Lo5qai4J9XE-uq4QfgUA5YxYjAcUCsQQLfhmCfGtRU8,40731
|
148
|
+
lamindb/models/record.py,sha256=VDjhibmnNA7khBhyrRKflEVhAlT1M5SIQlsIEhTxrwg,18518
|
149
|
+
lamindb/models/run.py,sha256=wSsuoD7W-AJ9O7_jnwnJD8u9I4QjifcNs8kBp7mRmCI,15516
|
150
|
+
lamindb/models/save.py,sha256=1V3xufAPe03uMy2h10WK6wVhJbvjc0kVj_EF6ecj_Vk,17376
|
151
|
+
lamindb/models/schema.py,sha256=zVMv03YRJZ9-vPnoGHBM1Ss9BgBxwsmRl4hnrHJTL0A,50824
|
152
|
+
lamindb/models/sqlrecord.py,sha256=CbCuZqRfYBkQ_2xG0Sq4zmU-XM1YK_KuoIT3ushYdKs,75541
|
153
|
+
lamindb/models/storage.py,sha256=DyKC6hfCfmxZ9eZRTC6b_p8MqIlXCMHZNLN_nwDcOwc,15859
|
154
|
+
lamindb/models/transform.py,sha256=YgNi7Ps8DOhzozwnX7RN3hMQkxous0lO_JzBp9lGvJM,13090
|
155
|
+
lamindb/models/ulabel.py,sha256=bZvlyiZtm0Niwi60M052GsAGA19HmYwZICzSrRrIJWw,8646
|
140
156
|
lamindb/setup/__init__.py,sha256=QZ-JF8IzO_ckDOU223lsJrdO5ay7cDFgvCbkLeAuxYA,467
|
141
157
|
lamindb/setup/_switch.py,sha256=njZJN__JOhVrBFGClQG1wobdhJJp6l_XzPGKtKSCrfU,434
|
142
158
|
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
143
159
|
lamindb/setup/errors/__init__.py,sha256=bAHTxOUJW1rm4zpF0Pvqkftn8W6iMGnQ-uyNBu13Nfg,171
|
144
160
|
lamindb/setup/types/__init__.py,sha256=ATaosOi6q-cDWB52T69_sRmLMqj8cHfc-vljzZsrJNw,169
|
145
|
-
lamindb-1.
|
146
|
-
lamindb-1.
|
147
|
-
lamindb-1.
|
148
|
-
lamindb-1.
|
161
|
+
lamindb-1.12.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
162
|
+
lamindb-1.12.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
163
|
+
lamindb-1.12.0.dist-info/METADATA,sha256=wnziZFrHkwc6lJoHwLSedqigSLtwolg_qx_9DKgXXKU,8271
|
164
|
+
lamindb-1.12.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|