ivoryos 1.3.9__py3-none-any.whl → 1.4.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.
Potentially problematic release.
This version of ivoryos might be problematic. Click here for more details.
- ivoryos/optimizer/ax_optimizer.py +47 -25
- ivoryos/optimizer/base_optimizer.py +19 -1
- ivoryos/optimizer/baybe_optimizer.py +27 -17
- ivoryos/optimizer/nimo_optimizer.py +25 -16
- ivoryos/routes/data/data.py +27 -9
- ivoryos/routes/data/templates/components/step_card.html +47 -11
- ivoryos/routes/data/templates/workflow_view.html +14 -5
- ivoryos/routes/design/design.py +31 -1
- ivoryos/routes/design/design_step.py +2 -1
- ivoryos/routes/design/templates/components/edit_action_form.html +16 -3
- ivoryos/routes/design/templates/components/python_code_overlay.html +27 -10
- ivoryos/routes/design/templates/experiment_builder.html +1 -0
- ivoryos/routes/execute/execute.py +71 -13
- ivoryos/routes/execute/templates/components/logging_panel.html +50 -25
- ivoryos/routes/execute/templates/components/run_tabs.html +45 -2
- ivoryos/routes/execute/templates/components/tab_bayesian.html +447 -325
- ivoryos/routes/execute/templates/components/tab_configuration.html +303 -18
- ivoryos/routes/execute/templates/components/tab_repeat.html +6 -2
- ivoryos/routes/execute/templates/experiment_run.html +0 -264
- ivoryos/socket_handlers.py +1 -1
- ivoryos/static/js/action_handlers.js +252 -118
- ivoryos/static/js/sortable_design.js +1 -0
- ivoryos/utils/bo_campaign.py +17 -16
- ivoryos/utils/db_models.py +122 -18
- ivoryos/utils/decorators.py +1 -0
- ivoryos/utils/form.py +32 -12
- ivoryos/utils/nest_script.py +314 -0
- ivoryos/utils/script_runner.py +436 -143
- ivoryos/utils/utils.py +11 -1
- ivoryos/version.py +1 -1
- {ivoryos-1.3.9.dist-info → ivoryos-1.4.1.dist-info}/METADATA +6 -4
- {ivoryos-1.3.9.dist-info → ivoryos-1.4.1.dist-info}/RECORD +35 -34
- {ivoryos-1.3.9.dist-info → ivoryos-1.4.1.dist-info}/WHEEL +0 -0
- {ivoryos-1.3.9.dist-info → ivoryos-1.4.1.dist-info}/licenses/LICENSE +0 -0
- {ivoryos-1.3.9.dist-info → ivoryos-1.4.1.dist-info}/top_level.txt +0 -0
ivoryos/utils/utils.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import ast
|
|
2
2
|
import importlib
|
|
3
3
|
import inspect
|
|
4
|
+
import json
|
|
4
5
|
import logging
|
|
5
6
|
import os
|
|
6
7
|
import pickle
|
|
@@ -380,6 +381,7 @@ def create_block_snapshot(save: bool = False, output_path: str = ''):
|
|
|
380
381
|
block_snapshot[key][func_name] = {
|
|
381
382
|
"signature": meta["signature"],
|
|
382
383
|
"docstring": meta["docstring"],
|
|
384
|
+
"coroutine": meta["coroutine"],
|
|
383
385
|
"path": f"{func.__module__}.{func.__qualname__}"
|
|
384
386
|
}
|
|
385
387
|
if block_snapshot:
|
|
@@ -444,4 +446,12 @@ def get_local_ip():
|
|
|
444
446
|
ip = '127.0.0.1'
|
|
445
447
|
finally:
|
|
446
448
|
s.close()
|
|
447
|
-
return ip
|
|
449
|
+
return ip
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
def safe_dump(obj):
|
|
453
|
+
try:
|
|
454
|
+
json.dumps(obj)
|
|
455
|
+
return obj
|
|
456
|
+
except (TypeError, OverflowError):
|
|
457
|
+
return repr(obj) # store readable representation
|
ivoryos/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.4.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ivoryos
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: an open-source Python package enabling Self-Driving Labs (SDLs) interoperability
|
|
5
5
|
Author-email: Ivory Zhang <ivoryzhang@chem.ubc.ca>
|
|
6
6
|
License: MIT
|
|
@@ -17,6 +17,7 @@ Requires-Dist: Flask-SQLAlchemy
|
|
|
17
17
|
Requires-Dist: Flask-WTF
|
|
18
18
|
Requires-Dist: SQLAlchemy-Utils
|
|
19
19
|
Requires-Dist: python-dotenv
|
|
20
|
+
Requires-Dist: pandas
|
|
20
21
|
Requires-Dist: astor; python_version < "3.9"
|
|
21
22
|
Provides-Extra: optimizer-ax
|
|
22
23
|
Requires-Dist: ax-platform; extra == "optimizer-ax"
|
|
@@ -24,9 +25,10 @@ Provides-Extra: optimizer-baybe
|
|
|
24
25
|
Requires-Dist: baybe; extra == "optimizer-baybe"
|
|
25
26
|
Provides-Extra: optimizer-nimo
|
|
26
27
|
Requires-Dist: nimo; extra == "optimizer-nimo"
|
|
27
|
-
Provides-Extra:
|
|
28
|
-
Requires-Dist: ax-platform>=1.1.2; extra == "
|
|
29
|
-
Requires-Dist: baybe; extra == "
|
|
28
|
+
Provides-Extra: optimizers
|
|
29
|
+
Requires-Dist: ax-platform>=1.1.2; extra == "optimizers"
|
|
30
|
+
Requires-Dist: baybe>=0.14.0; extra == "optimizers"
|
|
31
|
+
Requires-Dist: nimo; extra == "optimizers"
|
|
30
32
|
Provides-Extra: doc
|
|
31
33
|
Requires-Dist: sphinx; extra == "doc"
|
|
32
34
|
Requires-Dist: sphinx-rtd-theme; extra == "doc"
|
|
@@ -2,12 +2,12 @@ ivoryos/__init__.py,sha256=gEvBO2y5TRq06Itjjej3iAcq73UsihqKPWcb2HykPwM,463
|
|
|
2
2
|
ivoryos/app.py,sha256=G6kzEOVzCduj7Fc2r1rMbMFHgDzZQV0lC20Oxps7RSM,4839
|
|
3
3
|
ivoryos/config.py,sha256=y3RxNjiIola9tK7jg-mHM8EzLMwiLwOzoisXkDvj0gA,2174
|
|
4
4
|
ivoryos/server.py,sha256=Idr41Boa8rPsh3bVJ8xy2Flwfxa1Xu6f2T0oMp4qBEk,7121
|
|
5
|
-
ivoryos/socket_handlers.py,sha256=
|
|
6
|
-
ivoryos/version.py,sha256=
|
|
7
|
-
ivoryos/optimizer/ax_optimizer.py,sha256=
|
|
8
|
-
ivoryos/optimizer/base_optimizer.py,sha256=
|
|
9
|
-
ivoryos/optimizer/baybe_optimizer.py,sha256=
|
|
10
|
-
ivoryos/optimizer/nimo_optimizer.py,sha256=
|
|
5
|
+
ivoryos/socket_handlers.py,sha256=KSh8TxbLFTcmaa-lEb5rKJvOYjKgnGTtaKZST8Wh3b8,1326
|
|
6
|
+
ivoryos/version.py,sha256=BqOI5y46o1G1RWC9bF1DPL-YM68lGYPmZt1pn6FZFZs,22
|
|
7
|
+
ivoryos/optimizer/ax_optimizer.py,sha256=sLS6wyc_MfrPz_BfDlhFiuoOt5HhvB8X9tzNQqfYcKk,8310
|
|
8
|
+
ivoryos/optimizer/base_optimizer.py,sha256=m_wXan_xPueUWNQi3-561Pe_060tsKuUcCTOOu0qu8s,2652
|
|
9
|
+
ivoryos/optimizer/baybe_optimizer.py,sha256=grXmePNuTQsCgRDhJGsAWQuSvvt0hqjhvzpyrZKYjD0,8502
|
|
10
|
+
ivoryos/optimizer/nimo_optimizer.py,sha256=ZevLJUhJKpwatyiOSmPEz3JAUZTdZNKEc_J7z1fAvVQ,7303
|
|
11
11
|
ivoryos/optimizer/registry.py,sha256=dLMo5cszcwa06hfBxdINQIGpkHtRe5-J3J7t76Jq6X0,306
|
|
12
12
|
ivoryos/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
ivoryos/routes/api/api.py,sha256=97Y7pqTwOaWgZgI5ovEPxEBm6Asrt0Iy0VhBkVp2xqA,2304
|
|
@@ -23,15 +23,15 @@ ivoryos/routes/control/utils.py,sha256=XlhhqAtOj7n3XfHPDxJ8TvCV2K2I2IixB0CBkl1Qe
|
|
|
23
23
|
ivoryos/routes/control/templates/controllers.html,sha256=5hF3zcx5Rpy0Zaoq-5YGrR_TvPD9MGIa30fI4smEii0,9702
|
|
24
24
|
ivoryos/routes/control/templates/controllers_new.html,sha256=eVeLABT39DWOIYrwWClw7sAD3lCoAGCznygPgFbQoRc,5945
|
|
25
25
|
ivoryos/routes/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
ivoryos/routes/data/data.py,sha256=
|
|
26
|
+
ivoryos/routes/data/data.py,sha256=MR7Vu7HB9dWjVr3cPwJbfIvTWs1Rqh2uXOPWIEFivzs,6399
|
|
27
27
|
ivoryos/routes/data/templates/workflow_database.html,sha256=ofvHcovpwmJXo1SFiSrL8I9kLU_3U1UxsJUUrQ2CJUU,4878
|
|
28
|
-
ivoryos/routes/data/templates/workflow_view.html,sha256=
|
|
29
|
-
ivoryos/routes/data/templates/components/step_card.html,sha256=
|
|
28
|
+
ivoryos/routes/data/templates/workflow_view.html,sha256=NljmhBVBUYfoOkuUWpVYUYsQkBFPbKlmzYFmFY7KHvY,13011
|
|
29
|
+
ivoryos/routes/data/templates/components/step_card.html,sha256=fxTg-1_Vw8b8QzAUXsPMfFgTmcHo8esAdLTUvK1cKVI,3726
|
|
30
30
|
ivoryos/routes/design/__init__.py,sha256=zS3HXKaw0ALL5n6t_W1rUz5Uj5_tTQ-Y1VMXyzewvR0,113
|
|
31
|
-
ivoryos/routes/design/design.py,sha256=
|
|
31
|
+
ivoryos/routes/design/design.py,sha256=n7768F60Nx04ST7yZSoKiNsoRFCwKjFsZvdzveoFLq0,20042
|
|
32
32
|
ivoryos/routes/design/design_file.py,sha256=MVIc5uGSaGxZhs86hfPjX2n0iy1OcXeLq7b9Ucdg4VQ,2115
|
|
33
|
-
ivoryos/routes/design/design_step.py,sha256=
|
|
34
|
-
ivoryos/routes/design/templates/experiment_builder.html,sha256=
|
|
33
|
+
ivoryos/routes/design/design_step.py,sha256=W2mFKMOkbSDBk4Gx9wRYcwjeru2mj-ub1l_K4hPRuZY,6031
|
|
34
|
+
ivoryos/routes/design/templates/experiment_builder.html,sha256=js00-lo1r3O9oY6nRI13-qFyQ2q5BhPsvOWlfPabFGA,1699
|
|
35
35
|
ivoryos/routes/design/templates/components/action_form.html,sha256=kXJOrJLbFsMHHWVSuMQHpt1xFrUMnwgzTG8e6Qfn0Cg,3042
|
|
36
36
|
ivoryos/routes/design/templates/components/actions_panel.html,sha256=jHTR58saTUIZInBdC-vLc1ZTbStLiULeWbupjB4hQzo,977
|
|
37
37
|
ivoryos/routes/design/templates/components/autofill_toggle.html,sha256=CRVQUHoQT7sOSO5-Vax54ImHdT4G_mEgqR5OQkeUwK8,617
|
|
@@ -40,10 +40,10 @@ ivoryos/routes/design/templates/components/canvas_footer.html,sha256=5VRRacMZbzx
|
|
|
40
40
|
ivoryos/routes/design/templates/components/canvas_header.html,sha256=7iIzLDGHX7MnmBbf98nWtLDprbeIgoNV4dJUO1zE4Tc,3598
|
|
41
41
|
ivoryos/routes/design/templates/components/canvas_main.html,sha256=nLEtp3U2YtfJwob1kR8ua8-UVdu9hwc6z1L5UMNVz8c,1524
|
|
42
42
|
ivoryos/routes/design/templates/components/deck_selector.html,sha256=ryTRpljYezo0AzGLCJu_qOMokjjnft3GIxddmNGtBA0,657
|
|
43
|
-
ivoryos/routes/design/templates/components/edit_action_form.html,sha256=
|
|
43
|
+
ivoryos/routes/design/templates/components/edit_action_form.html,sha256=1xL0wueewp_Hdua9DzYJBry09Qcchh4XgGmt4qPCwnc,2782
|
|
44
44
|
ivoryos/routes/design/templates/components/instruments_panel.html,sha256=tRKd-wOqKjaMJCLuGgRmHtxIgSjklhBkuX8arm5aTCU,4268
|
|
45
45
|
ivoryos/routes/design/templates/components/modals.html,sha256=6Dl8I8oD4ln7kK8C5e92pFVVH5KDte-vVTL0U_6NSTg,306
|
|
46
|
-
ivoryos/routes/design/templates/components/python_code_overlay.html,sha256=
|
|
46
|
+
ivoryos/routes/design/templates/components/python_code_overlay.html,sha256=Iyk-wOzk1x2997kqGt3uJONh_rpi5sCUs7VCRDg8Q9U,2150
|
|
47
47
|
ivoryos/routes/design/templates/components/sidebar.html,sha256=A6dRo53zIB6QJVrRLJcBZHUNJ3qpYPnR3kWxM8gTkjw,501
|
|
48
48
|
ivoryos/routes/design/templates/components/text_to_code_panel.html,sha256=d-omdXk-PXAR5AyWPr4Rc4pqsebZOiTiMrnz3pPCnUY,1197
|
|
49
49
|
ivoryos/routes/design/templates/components/modals/drop_modal.html,sha256=LPxcycSiBjdQbajYOegjMQEi7ValcaczGoWmW8Sz3Ms,779
|
|
@@ -52,17 +52,17 @@ ivoryos/routes/design/templates/components/modals/new_script_modal.html,sha256=p
|
|
|
52
52
|
ivoryos/routes/design/templates/components/modals/rename_modal.html,sha256=40rLNF9JprdXekB3mv_S3OdqVuQYOe-BZSCgOnIkxJQ,1202
|
|
53
53
|
ivoryos/routes/design/templates/components/modals/saveas_modal.html,sha256=N5PEqUuK3qxDFbtDKFnzHwhLarQLPHiX-XQAdQPL1AU,1555
|
|
54
54
|
ivoryos/routes/execute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
ivoryos/routes/execute/execute.py,sha256=
|
|
55
|
+
ivoryos/routes/execute/execute.py,sha256=e08Yl7pcMFBE-6PSF3gSqVqRRr1_li92PsZe-UJFOec,14816
|
|
56
56
|
ivoryos/routes/execute/execute_file.py,sha256=TelWYV295p4ZPhkUDJSVxfYROfVaKodEmDPTS2plQHI,2816
|
|
57
|
-
ivoryos/routes/execute/templates/experiment_run.html,sha256=
|
|
57
|
+
ivoryos/routes/execute/templates/experiment_run.html,sha256=fvHRrG5ii1v5zPHL9N_ljDGHUo3t3amiproVPtnOFVE,944
|
|
58
58
|
ivoryos/routes/execute/templates/components/error_modal.html,sha256=5Dmp9V0Ys6781Y-pKn_mc4N9J46c8EwIkjkHX22xCsw,1025
|
|
59
|
-
ivoryos/routes/execute/templates/components/logging_panel.html,sha256
|
|
59
|
+
ivoryos/routes/execute/templates/components/logging_panel.html,sha256=-elcawnE4CaumyivzxaHW3S5xSv5CgZtXt0OHljlits,2554
|
|
60
60
|
ivoryos/routes/execute/templates/components/progress_panel.html,sha256=-nX76aFLxSOiYgI1xMjznC9rDYF-Vb92TmfjXYpBtps,1323
|
|
61
61
|
ivoryos/routes/execute/templates/components/run_panel.html,sha256=CmK-LYJ4K6RonHn6l9eJkqRw0XQizThOugxiXZonSDs,373
|
|
62
|
-
ivoryos/routes/execute/templates/components/run_tabs.html,sha256=
|
|
63
|
-
ivoryos/routes/execute/templates/components/tab_bayesian.html,sha256=
|
|
64
|
-
ivoryos/routes/execute/templates/components/tab_configuration.html,sha256=
|
|
65
|
-
ivoryos/routes/execute/templates/components/tab_repeat.html,sha256=
|
|
62
|
+
ivoryos/routes/execute/templates/components/run_tabs.html,sha256=HZUBQxJIigp9DgMvcxZOoR_pqz4ZW9kpxhbCjW6_dRg,2724
|
|
63
|
+
ivoryos/routes/execute/templates/components/tab_bayesian.html,sha256=oxtXWb5rUo88yTyyB9dZNxfzi0YanKy8NS9SBuiZKbI,24864
|
|
64
|
+
ivoryos/routes/execute/templates/components/tab_configuration.html,sha256=uZQfi8QLIGbCvgQR2M-fuFAjW4id9ANlYgBUbTJfaZw,14878
|
|
65
|
+
ivoryos/routes/execute/templates/components/tab_repeat.html,sha256=s8Q9Vuztf_h0vy97CBjHwgMdbaLQwall6StVdbL6FY8,989
|
|
66
66
|
ivoryos/routes/library/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
ivoryos/routes/library/library.py,sha256=QKeP34COssXDipn3d9yEn7pVPYbPb-eFg_X0C8JTvVQ,5387
|
|
68
68
|
ivoryos/routes/library/templates/library.html,sha256=kMaQphkoGQdxIRcQmVcEIn8eghuv2AAClHpo7jGDVv8,4021
|
|
@@ -75,30 +75,31 @@ ivoryos/static/logo.webp,sha256=lXgfQR-4mHTH83k7VV9iB54-oC2ipe6uZvbwdOnLETc,1497
|
|
|
75
75
|
ivoryos/static/style.css,sha256=zQVx35A5g6JMJ-K84-6fSKtzXGjp_p5ZVG6KLHPM2IE,4021
|
|
76
76
|
ivoryos/static/gui_annotation/Slide1.png,sha256=Lm4gdOkUF5HIUFaB94tl6koQVkzpitKj43GXV_XYMMc,121727
|
|
77
77
|
ivoryos/static/gui_annotation/Slide2.PNG,sha256=z3wQ9oVgg4JTWVLQGKK_KhtepRHUYP1e05XUWGT2A0I,118761
|
|
78
|
-
ivoryos/static/js/action_handlers.js,sha256=
|
|
78
|
+
ivoryos/static/js/action_handlers.js,sha256=VC_kHFk0KKE7Q20PNRSIyxUDgrl_-54Tr2w55JvlhCU,11512
|
|
79
79
|
ivoryos/static/js/db_delete.js,sha256=l67fqUaN_FVDaL7v91Hd7LyRbxnqXx9nyjF34-7aewY,561
|
|
80
80
|
ivoryos/static/js/overlay.js,sha256=dPxop19es0E0ZUSY3d_4exIk7CJuQEnlW5uTt5fZfzI,483
|
|
81
81
|
ivoryos/static/js/script_metadata.js,sha256=m8VYZ8OGT2oTx1kXMXq60bKQI9WCbJNkzcFDzLvRuGc,1188
|
|
82
82
|
ivoryos/static/js/socket_handler.js,sha256=5MGLj-nNA3053eBcko4MZAB5zq2mkgr1g__c_rr3cE8,6849
|
|
83
83
|
ivoryos/static/js/sortable_card.js,sha256=ifmlGe3yy0U_KzMphV4ClRhK2DLOvkELYMlq1vECuac,807
|
|
84
|
-
ivoryos/static/js/sortable_design.js,sha256=
|
|
84
|
+
ivoryos/static/js/sortable_design.js,sha256=ZezDxKtFxqmqSLfFy-HJ61LvQSXL36imYud6TIREs3U,5503
|
|
85
85
|
ivoryos/static/js/ui_state.js,sha256=XYsOcfGlduqLlqHySvPrRrR50CiAsml51duqneigsRY,3368
|
|
86
86
|
ivoryos/templates/base.html,sha256=cl5w6E8yskbUzdiJFal6fZjnPuFNKEzc7BrrbRd6bMI,8581
|
|
87
87
|
ivoryos/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
-
ivoryos/utils/bo_campaign.py,sha256=
|
|
88
|
+
ivoryos/utils/bo_campaign.py,sha256=Z4WXJwbf1Hhg1dtlvhWHncBiq9Cuaf0BiqR60bWy36U,10038
|
|
89
89
|
ivoryos/utils/client_proxy.py,sha256=74G3HAuq50iEHkSvlMZFmQaukm613FbRgOdzO_T3dMg,10191
|
|
90
|
-
ivoryos/utils/db_models.py,sha256=
|
|
91
|
-
ivoryos/utils/decorators.py,sha256=
|
|
92
|
-
ivoryos/utils/form.py,sha256=
|
|
90
|
+
ivoryos/utils/db_models.py,sha256=C0iTN_SuM3ew6CajuPpeqAusZGjaNrf6eCzRMtVi3fw,36641
|
|
91
|
+
ivoryos/utils/decorators.py,sha256=pcD8WijFjNfkNvr-wmJSWTHn_OqCOCpAO-7w_qg9_xM,1051
|
|
92
|
+
ivoryos/utils/form.py,sha256=MNIvmx4RhDukFACwyrXS-88tBeMKeNdxVba_KzOab_Y,23469
|
|
93
93
|
ivoryos/utils/global_config.py,sha256=leYoEXvAS0AH4xQpYsqu4HI9CJ9-wiLM-pIh_bEG4Ak,3087
|
|
94
94
|
ivoryos/utils/llm_agent.py,sha256=-lVCkjPlpLues9sNTmaT7bT4sdhWvV2DiojNwzB2Lcw,6422
|
|
95
|
+
ivoryos/utils/nest_script.py,sha256=kc4V0cBca5TviqQuquMFBF8Q5IjqKqj2R6g-_N6gMak,10645
|
|
95
96
|
ivoryos/utils/py_to_json.py,sha256=ZtejHgwdEAUCVVMYeVNR8G7ceLINue294q6WpiJ6jn0,9734
|
|
96
|
-
ivoryos/utils/script_runner.py,sha256=
|
|
97
|
+
ivoryos/utils/script_runner.py,sha256=nFYyTeY1X0ZR2e3WOBQjQkjAji-C1ba872JTI1Df5oA,34651
|
|
97
98
|
ivoryos/utils/serilize.py,sha256=lkBhkz8r2bLmz2_xOb0c4ptSSOqjIu6krj5YYK4Nvj8,6784
|
|
98
99
|
ivoryos/utils/task_runner.py,sha256=xiMzK8gQ0mHsg0A1Ah8fmXe3azpaJh4hJiQJLHA11ZQ,3682
|
|
99
|
-
ivoryos/utils/utils.py,sha256=
|
|
100
|
-
ivoryos-1.
|
|
101
|
-
ivoryos-1.
|
|
102
|
-
ivoryos-1.
|
|
103
|
-
ivoryos-1.
|
|
104
|
-
ivoryos-1.
|
|
100
|
+
ivoryos/utils/utils.py,sha256=QUAeZYLBUl7iLOcIS89PC5vH2nnXAVX-MLDwNVaNFDg,15181
|
|
101
|
+
ivoryos-1.4.1.dist-info/licenses/LICENSE,sha256=p2c8S8i-8YqMpZCJnadLz1-ofxnRMILzz6NCMIypRag,1084
|
|
102
|
+
ivoryos-1.4.1.dist-info/METADATA,sha256=nvAS0espk2mVj44H9m_wIMvLe5xa2YKfYzn9rCGL2xs,8592
|
|
103
|
+
ivoryos-1.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
+
ivoryos-1.4.1.dist-info/top_level.txt,sha256=FRIWWdiEvRKqw-XfF_UK3XV0CrnNb6EmVbEgjaVazRM,8
|
|
105
|
+
ivoryos-1.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|