pyegeria 5.3.4.24__py3-none-any.whl → 5.3.4.26__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.
- pyegeria/_client.py +4 -0
- pyegeria/commands/cat/list_glossaries.py +4 -4
- pyegeria/glossary_browser_omvs.py +4 -4
- pyegeria/glossary_manager_omvs.py +1 -1
- pyegeria/platform_services.py +1 -1
- pyegeria/server_operations.py +1 -1
- pyegeria/valid_metadata_omvs.py +1 -1
- pyegeria/x_action_author_omvs.py +1 -1
- {pyegeria-5.3.4.24.dist-info → pyegeria-5.3.4.26.dist-info}/METADATA +2 -3
- {pyegeria-5.3.4.24.dist-info → pyegeria-5.3.4.26.dist-info}/RECORD +13 -36
- {pyegeria-5.3.4.24.dist-info → pyegeria-5.3.4.26.dist-info}/WHEEL +1 -1
- pyegeria/commands/tech/work/mermaid_graphs/components/Accounting ledgers.html +0 -145
- pyegeria/commands/tech/work/mermaid_graphs/components/Analyse Patient Data.html +0 -158
- pyegeria/commands/tech/work/mermaid_graphs/components/Assemble Treatment Assessment Report.html +0 -154
- pyegeria/commands/tech/work/mermaid_graphs/components/Certify Hospital.html +0 -136
- pyegeria/commands/tech/work/mermaid_graphs/components/Employee Expense Tool.html +0 -145
- pyegeria/commands/tech/work/mermaid_graphs/components/Goods Inventory.html +0 -145
- pyegeria/commands/tech/work/mermaid_graphs/components/Hazardous Materials (HazMat) Inventory.html +0 -145
- pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Landing Area Folder.html +0 -152
- pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Processes.html +0 -153
- pyegeria/commands/tech/work/mermaid_graphs/components/Landing Folder Cataloguer.html +0 -150
- pyegeria/commands/tech/work/mermaid_graphs/components/Nominate Hospital.html +0 -136
- pyegeria/commands/tech/work/mermaid_graphs/components/Onboard Hospital.html +0 -136
- pyegeria/commands/tech/work/mermaid_graphs/components/Populate Sandbox.html +0 -150
- pyegeria/commands/tech/work/mermaid_graphs/components/Set up Data Lake Folder.html +0 -138
- pyegeria/commands/tech/work/mermaid_graphs/components/Set up clinical trial.html +0 -136
- pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Calculators.html +0 -147
- pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Dashboards.html +0 -157
- pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Operational Data Store (ODS).html +0 -174
- pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Assessment Report Validation and Delivery.html +0 -149
- pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Efficacy Evidence.html +0 -152
- pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Validation Sandbox.html +0 -152
- pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Data Lake Folder.html +0 -156
- pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Onboarding Pipeline.html +0 -158
- {pyegeria-5.3.4.24.dist-info → pyegeria-5.3.4.26.dist-info}/LICENSE +0 -0
- {pyegeria-5.3.4.24.dist-info → pyegeria-5.3.4.26.dist-info}/entry_points.txt +0 -0
pyegeria/_client.py
CHANGED
@@ -147,6 +147,10 @@ class Client:
|
|
147
147
|
|
148
148
|
return False # allows exceptions to propagate
|
149
149
|
|
150
|
+
def __str__(self):
|
151
|
+
return (f"EgeriaClient(server_name={self.server_name}, platform_url={self.platform_url}, "
|
152
|
+
f"user_id={self.user_id}, page_size={self.page_size})")
|
153
|
+
|
150
154
|
async def _async_close_session(self) -> None:
|
151
155
|
"""Close the session"""
|
152
156
|
await self.session.aclose()
|
@@ -100,13 +100,13 @@ def display_glossaries(
|
|
100
100
|
glossaries, key=lambda k: k["glossaryProperties"]["displayName"]
|
101
101
|
)
|
102
102
|
for glossary in sorted_glossary_list:
|
103
|
-
display_name = glossary["glossaryProperties"]
|
103
|
+
display_name = glossary["glossaryProperties"].get("displayName",'---')
|
104
104
|
qualified_name = glossary["glossaryProperties"]["qualifiedName"]
|
105
105
|
guid = glossary["elementHeader"]["guid"]
|
106
106
|
q_name = Text(f"{qualified_name}\n&\n{guid}", justify="center")
|
107
|
-
language = glossary["glossaryProperties"]
|
108
|
-
description = glossary["glossaryProperties"]
|
109
|
-
usage = glossary["glossaryProperties"]
|
107
|
+
language = glossary["glossaryProperties"].get("language",'---')
|
108
|
+
description = glossary["glossaryProperties"].get("description",'---')
|
109
|
+
usage = glossary["glossaryProperties"].get("usage",'---')
|
110
110
|
table.add_row(display_name, q_name, language, description, usage)
|
111
111
|
console = Console(
|
112
112
|
style="bold bright_white on black",
|
@@ -10,6 +10,7 @@ added in subsequent versions of the glossary_omvs module.
|
|
10
10
|
import asyncio
|
11
11
|
from datetime import datetime
|
12
12
|
|
13
|
+
from pyegeria import NO_GLOSSARIES_FOUND
|
13
14
|
# import json
|
14
15
|
from pyegeria._client import Client
|
15
16
|
from pyegeria._validators import validate_guid, validate_name, validate_search_string
|
@@ -386,15 +387,14 @@ class GlossaryBrowser(Client):
|
|
386
387
|
|
387
388
|
body = {
|
388
389
|
"class": "EffectiveTimeQueryRequestBody",
|
389
|
-
"effectiveTime": effective_time
|
390
|
+
"effectiveTime": effective_time
|
390
391
|
}
|
391
|
-
|
392
392
|
url = (
|
393
393
|
f"{self.platform_url}/servers/{self.view_server}/api/open-metadata/glossary-browser/glossaries/"
|
394
394
|
f"{glossary_guid}/retrieve"
|
395
395
|
)
|
396
396
|
response = await self._async_make_request("POST", url, body)
|
397
|
-
return response.json().get("
|
397
|
+
return response.json().get("element", NO_GLOSSARIES_FOUND)
|
398
398
|
|
399
399
|
def get_glossary_by_guid(
|
400
400
|
self, glossary_guid: str, effective_time: str = None
|
@@ -512,7 +512,7 @@ class GlossaryBrowser(Client):
|
|
512
512
|
When multiple pages of results are available, the page number to start from.
|
513
513
|
page_size: int, [default=None]
|
514
514
|
The number of items to return in a single page. If not specified, the default will be taken from
|
515
|
-
|
515
|
+
the class instance.
|
516
516
|
|
517
517
|
Returns
|
518
518
|
-------
|
@@ -21,7 +21,7 @@ from pyegeria._client import Client
|
|
21
21
|
from pyegeria._validators import validate_guid, validate_name, validate_search_string
|
22
22
|
from pyegeria.glossary_browser_omvs import GlossaryBrowser
|
23
23
|
from pyegeria.utils import body_slimmer
|
24
|
-
from pyegeria._globals import NO_CATEGORIES_FOUND,NO_TERMS_FOUND, NO_GLOSSARIES_FOUND
|
24
|
+
from pyegeria._globals import NO_CATEGORIES_FOUND,NO_TERMS_FOUND, NO_GLOSSARIES_FOUND, NO_ELEMENTS_FOUND
|
25
25
|
|
26
26
|
class GlossaryManager(GlossaryBrowser):
|
27
27
|
"""
|
pyegeria/platform_services.py
CHANGED
pyegeria/server_operations.py
CHANGED
pyegeria/valid_metadata_omvs.py
CHANGED
pyegeria/x_action_author_omvs.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pyegeria
|
3
|
-
Version: 5.3.4.
|
3
|
+
Version: 5.3.4.26
|
4
4
|
Summary: A python client for Egeria
|
5
5
|
License: Apache 2.0
|
6
6
|
Keywords: egeria,metadata,governance
|
@@ -13,12 +13,11 @@ Classifier: Programming Language :: Python
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
15
15
|
Requires-Dist: click
|
16
|
-
Requires-Dist: confluent-kafka
|
17
16
|
Requires-Dist: httpx
|
18
17
|
Requires-Dist: jupyter
|
19
18
|
Requires-Dist: mermaid-py
|
20
19
|
Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
|
21
|
-
Requires-Dist: pytest
|
20
|
+
Requires-Dist: pytest
|
22
21
|
Requires-Dist: requests
|
23
22
|
Requires-Dist: rich
|
24
23
|
Requires-Dist: textual
|
@@ -1,6 +1,6 @@
|
|
1
1
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
2
2
|
pyegeria/__init__.py,sha256=XwjE-iGvextqOG-HhS78AWyGWENL0q36GAnfED3MHPo,29876
|
3
|
-
pyegeria/_client.py,sha256=
|
3
|
+
pyegeria/_client.py,sha256=aeyB27WFxswxcIj_Ky88F2Q4S5zn7ofmux65aen5mW0,31130
|
4
4
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
5
5
|
pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
6
6
|
pyegeria/_globals.py,sha256=3eH8Rf27HQg2fOub1HD7p4NFyyhZoO50iBLd7TLaSrU,951
|
@@ -27,7 +27,7 @@ pyegeria/commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVP
|
|
27
27
|
pyegeria/commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
|
28
28
|
pyegeria/commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
|
29
29
|
pyegeria/commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
|
30
|
-
pyegeria/commands/cat/list_glossaries.py,sha256=
|
30
|
+
pyegeria/commands/cat/list_glossaries.py,sha256=zh76g-zKwhNYlUJWsBLXYG3qyDNCOa72YOUyGj15jps,5646
|
31
31
|
pyegeria/commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
|
32
32
|
pyegeria/commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
|
33
33
|
pyegeria/commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG-0,4653
|
@@ -209,29 +209,6 @@ pyegeria/commands/tech/list_solution_roles.py,sha256=yWjh7_5w2vxFYMycn4kJGKThpQP
|
|
209
209
|
pyegeria/commands/tech/list_tech_templates.py,sha256=5hhDJJjrqGyWDPPcFzFeFs-4rsal1M2Bl7EUuJNz8Ns,14144
|
210
210
|
pyegeria/commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOnKZ-ySM-lSdgYn8,6315
|
211
211
|
pyegeria/commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
|
212
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Accounting ledgers.html,sha256=nmZd5lUvQwoyToV-ujJnLglv8xVCsE7qX7f7zAeySK8,6644
|
213
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Analyse Patient Data.html,sha256=FQMmGt6Pmd5n5A0QRWIKJuvVViIlQx9X2g7EEOfJ3U4,7565
|
214
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Assemble Treatment Assessment Report.html,sha256=YIeTYnGOqzofDsOUy93yChqgW0VnRHKuxV7kUVWIFJI,7296
|
215
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Certify Hospital.html,sha256=kAI-Oy0Y85e3Ks-iKFYb3GBUuM_hAfdwTWxYQ_0oZzQ,5817
|
216
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Employee Expense Tool.html,sha256=oNS04u29XULZZdJ3Emd1x87q9ft9ulRVhJpdaHgs5so,6558
|
217
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Goods Inventory.html,sha256=EW6aK7EV_dyup0opv3gMTkVFwkVcFBUUE1yTtMPsPS4,6560
|
218
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Hazardous Materials (HazMat) Inventory.html,sha256=6xJUF5PZPri0hK5MHinRUtVkT230BggAauIPN4UTVXo,6633
|
219
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Landing Area Folder.html,sha256=FqW6l4buXUBAPcqLEO5pqvUNvUp-ncqzIgz5FlBnKnw,7116
|
220
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Processes.html,sha256=pR-qWu9kOMdE8Z7P32cbKvDdPsFSG1UIHyo7x8a4nk0,7267
|
221
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Landing Folder Cataloguer.html,sha256=3hN5lWqlBPGE0XX_wD0s1pqrHMCp9S6syDJdHWcZnc8,6986
|
222
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Nominate Hospital.html,sha256=9-jpnUC0BDm9arKdoWVQ-MusPckh-PC2ABJukColutE,5812
|
223
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Onboard Hospital.html,sha256=B80atatqMKLakHg5z8TfltkuPZ1HQ7QziXHN9sd4p4c,5835
|
224
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Populate Sandbox.html,sha256=jUsb_8PCwi_NzGdvU5mduK2Gpd9z-93-sU5EdKsTRtc,6956
|
225
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Set up Data Lake Folder.html,sha256=ALEdgmYh7iks9jp2ivWV1J6xD-vgjBOONP9wiBdT1hg,6038
|
226
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Set up clinical trial.html,sha256=RM4eGZyZJNC2bgQ6nD0EqD3rmCQXYNOZUPBEkbGVjvs,5826
|
227
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Calculators.html,sha256=HDWrh-zbCuVlFjgmwyZEahYeKcyCw_KTwXHkQknvPYw,6747
|
228
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Dashboards.html,sha256=u2Y7kX1FMsB1R_AMBQGbVUvuL0cK_AGcx8xBfxen3PA,7515
|
229
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Operational Data Store (ODS).html,sha256=FT80pFWvsfbr22I2_yTY0be1XcO08uIiPq-CID-nGf4,8676
|
230
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Assessment Report Validation and Delivery.html,sha256=JCkz2rXHiUg0OGacwKMU59ECGfHjCfEvvrhP0UR6K8M,6951
|
231
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Efficacy Evidence.html,sha256=qAeozoFmaw0h3vgzTnXzydffGkX9w3lH-ADEOANiSWo,7138
|
232
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Validation Sandbox.html,sha256=q4BwdosqNGKubhCywmf41uyRiSIVcBLmpTkBVLAWePg,7175
|
233
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Data Lake Folder.html,sha256=1hDNx7zR-ESE6Rybj9bb2w9lC6_3ITHHkSnJsrReiYY,7505
|
234
|
-
pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Onboarding Pipeline.html,sha256=ELXPa8QT-ThzoIJv5cs5OYGKj8eNZVnHiYgH4oMedtQ,7834
|
235
212
|
pyegeria/commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
|
236
213
|
pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
|
237
214
|
pyegeria/create_tech_guid_lists.py,sha256=ngd7mOYIOfXmKCnYfIKCVqwdmoxQeEL9bGncxkTTs9Q,4925
|
@@ -242,17 +219,17 @@ pyegeria/egeria_my_client.py,sha256=eOKLk2zdI6FHZnhAimfR_0yNdBjpUgD41dJZcJODcqE,
|
|
242
219
|
pyegeria/egeria_tech_client.py,sha256=uycgYfCpb4jzFfaQ7I5JxbZ5PKsWdaWxLOJjbw6C2Zk,3817
|
243
220
|
pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
|
244
221
|
pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
|
245
|
-
pyegeria/glossary_browser_omvs.py,sha256=
|
246
|
-
pyegeria/glossary_manager_omvs.py,sha256=
|
222
|
+
pyegeria/glossary_browser_omvs.py,sha256=WrmghPHnssuEC8LKMSMIvGwyobEaO7pSX9qPzjeaABM,93619
|
223
|
+
pyegeria/glossary_manager_omvs.py,sha256=V_P8BLcOYUYjUfLf_LiLAD4WKYghi-KAYVKYhmgUVhA,132577
|
247
224
|
pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
|
248
225
|
pyegeria/mermaid_utilities.py,sha256=sQqdFUWdNpHu9d3Tk9UVe80M-5bOzses0XcFYX5FF-E,54254
|
249
226
|
pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
|
250
227
|
pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
|
251
|
-
pyegeria/platform_services.py,sha256=
|
228
|
+
pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
|
252
229
|
pyegeria/project_manager_omvs.py,sha256=JZ19fYvVNU6ltK831S1v8MD4KZ5t8f3df04cznNbaj0,67528
|
253
230
|
pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
|
254
231
|
pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
|
255
|
-
pyegeria/server_operations.py,sha256=
|
232
|
+
pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
|
256
233
|
pyegeria/solution_architect_omvs.py,sha256=x6CfPTyn1l2DFYVEFP0t_rT9uVjoFr596hBBeuVaMRg,22093
|
257
234
|
pyegeria/template_manager_omvs.py,sha256=PfJ9dOfmBvf59DgRdZ9Dl1Kl_UYqjF-JncXVnbCqLZU,42408
|
258
235
|
pyegeria/test_j.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -261,10 +238,10 @@ pyegeria/test_m1.html,sha256=XS_1IAtfG4ZlZk45QTkrFWWpjQMVlO21ScDMX2Frl3g,14086
|
|
261
238
|
pyegeria/test_mer.ipynb,sha256=G7hpHn07IXnt_VKvnTDvljwwHB7RfC0etOMyZKt1icQ,30809
|
262
239
|
pyegeria/test_w.html,sha256=q9HCstV2Ar-QiAqswte6hQ8EJuKqr5s99MUuXSxs7a8,11461
|
263
240
|
pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
|
264
|
-
pyegeria/valid_metadata_omvs.py,sha256=
|
265
|
-
pyegeria/x_action_author_omvs.py,sha256=
|
266
|
-
pyegeria-5.3.4.
|
267
|
-
pyegeria-5.3.4.
|
268
|
-
pyegeria-5.3.4.
|
269
|
-
pyegeria-5.3.4.
|
270
|
-
pyegeria-5.3.4.
|
241
|
+
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
242
|
+
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
243
|
+
pyegeria-5.3.4.26.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
244
|
+
pyegeria-5.3.4.26.dist-info/METADATA,sha256=xMEHMSGiLV7ZyWRL8WTQraSJXge5e9vcfUIAyVS6Wsk,2688
|
245
|
+
pyegeria-5.3.4.26.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
246
|
+
pyegeria-5.3.4.26.dist-info/entry_points.txt,sha256=LS9g5JPSBL0whnyAcGhLZCAyUp6PkPU6fjHP9Aso1V4,6176
|
247
|
+
pyegeria-5.3.4.26.dist-info/RECORD,,
|
@@ -1,145 +0,0 @@
|
|
1
|
-
|
2
|
-
<div id="mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa-wrapper" style="width: 100%; height: 100%; display: flex; flex-direction: column; align-items: stretch;">
|
3
|
-
|
4
|
-
<!-- Title/Heading -->
|
5
|
-
|
6
|
-
|
7
|
-
<h3 id="mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa-heading" style="margin: 20px 0; font-size: 1.5em; text-align: center;">
|
8
|
-
Solution Component - Accounting ledgers
|
9
|
-
</h3>
|
10
|
-
<p id="mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa-subheading" style="margin: 0; padding: 5px; font-size: 1em; text-align: center; color: gray; flex: 0 0 auto;">
|
11
|
-
GUID: 2c0f5a4e-bb02-4081-a80e-3072ca99a1aa
|
12
|
-
</p>
|
13
|
-
|
14
|
-
<!-- Mermaid Diagram -->
|
15
|
-
<div id="mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa-container" class="diagram-container"
|
16
|
-
style="width: 100%; flex: 1 1 auto; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;">
|
17
|
-
<div id="mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa" class="mermaid"
|
18
|
-
style="width: 100%; height: 100%; cursor: grab; user-select: none; margin: 0; padding: 0;">
|
19
|
-
flowchart TD
|
20
|
-
%%{init: {"flowchart": {"htmlLabels": false}} }%%
|
21
|
-
|
22
|
-
2a980c62-71e7-4f2c-a851-a982fb973a8a@{ shape: text, label: "*Description*
|
23
|
-
**Application for recording and tracing the income and spending of Coco Pharmaceuticals. This can help to identify how much the company is spending on particular materials and activities.**"}
|
24
|
-
2c0f5a4e-bb02-4081-a80e-3072ca99a1aa@{ shape: subproc, label: "*Solution Component*
|
25
|
-
**Accounting ledgers**"}
|
26
|
-
fc55ef2d-a88d-44ee-94cb-3fca9b9af8b4@{ shape: rect, label: "*Solution Component*
|
27
|
-
**Sustainability Operational Data Store (ODS)**"}
|
28
|
-
2c0f5a4e-bb02-4081-a80e-3072ca99a1aa==>|"spending types,
|
29
|
-
[Solution Linking Wire]"|fc55ef2d-a88d-44ee-94cb-3fca9b9af8b4
|
30
|
-
9fb47e51-4121-495d-be31-f766a1f70856@{ shape: hex, label: "*Information Supply Chain Segment*
|
31
|
-
**Sustainability Data Gathering**"}
|
32
|
-
9fb47e51-4121-495d-be31-f766a1f70856==>|"ImplementedBy"|2c0f5a4e-bb02-4081-a80e-3072ca99a1aa
|
33
|
-
dd15b286-a38d-4f03-8625-aaded8596048@{ shape: flip-tri, label: "*Information Supply Chain*
|
34
|
-
**Sustainability Reporting**"}
|
35
|
-
dd15b286-a38d-4f03-8625-aaded8596048==>|"InformationSupplyChainComposition"|9fb47e51-4121-495d-be31-f766a1f70856
|
36
|
-
style dd15b286-a38d-4f03-8625-aaded8596048 color:#FFFFFF, fill:#004563, stroke:#b7c0c7
|
37
|
-
style fc55ef2d-a88d-44ee-94cb-3fca9b9af8b4 color:#FFFFFF, fill:#838cc7, stroke:#3079ab
|
38
|
-
style 2c0f5a4e-bb02-4081-a80e-3072ca99a1aa color:#FFFFFF, fill:#838cc7, stroke:#3079ab
|
39
|
-
style 2a980c62-71e7-4f2c-a851-a982fb973a8a color:#000000, fill:#F9F7ED, stroke:#b7c0c7
|
40
|
-
style 9fb47e51-4121-495d-be31-f766a1f70856 color:#004563, fill:#b7c0c7, stroke:#004563
|
41
|
-
</div>
|
42
|
-
</div>
|
43
|
-
</div>
|
44
|
-
|
45
|
-
<style>
|
46
|
-
/* Ensure no margins or padding for the body or html in Jupyter */
|
47
|
-
body, html {
|
48
|
-
margin: 0;
|
49
|
-
padding: 0;
|
50
|
-
width: 100%;
|
51
|
-
height: 100%;
|
52
|
-
}
|
53
|
-
/* General reset for Jupyter Notebook's extra spacing */
|
54
|
-
#notebook, .container, .cell, .output_area {
|
55
|
-
margin: 0 !important;
|
56
|
-
padding: 0 !important;
|
57
|
-
}
|
58
|
-
.diagram-container {
|
59
|
-
width: 100%;
|
60
|
-
height: 100%;
|
61
|
-
overflow: hidden; /* Prevent scrollbars during zoom/pan */
|
62
|
-
}
|
63
|
-
h2 {
|
64
|
-
margin: 0;
|
65
|
-
padding: 10px;
|
66
|
-
font-size: 24px;
|
67
|
-
text-align: center;
|
68
|
-
flex: 0 0 auto; /* Fix height explicitly for heading */
|
69
|
-
}
|
70
|
-
.mermaid {
|
71
|
-
margin: 0;
|
72
|
-
padding: 0;
|
73
|
-
}
|
74
|
-
</style>
|
75
|
-
|
76
|
-
<script>
|
77
|
-
(function() {
|
78
|
-
const graphId = "mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa"; // Pass the graph ID
|
79
|
-
|
80
|
-
function loadScript(url, callback) {
|
81
|
-
const script = document.createElement('script');
|
82
|
-
script.src = url;
|
83
|
-
script.onload = callback;
|
84
|
-
document.head.appendChild(script);
|
85
|
-
}
|
86
|
-
|
87
|
-
// Initialize Mermaid and render the diagram
|
88
|
-
function initializeMermaid() {
|
89
|
-
mermaid.initialize({startOnLoad: false});
|
90
|
-
mermaid.init(undefined, "#" + graphId);
|
91
|
-
|
92
|
-
setTimeout(() => {
|
93
|
-
const container = document.getElementById(graphId);
|
94
|
-
if (!container) {
|
95
|
-
console.error("Container not found for graph:", graphId);
|
96
|
-
return;
|
97
|
-
}
|
98
|
-
|
99
|
-
const svg = container.querySelector("svg");
|
100
|
-
if (!svg) {
|
101
|
-
console.error("SVG not rendered by Mermaid.");
|
102
|
-
return;
|
103
|
-
}
|
104
|
-
|
105
|
-
console.log("SVG rendered. Applying pan & zoom.");
|
106
|
-
|
107
|
-
// Adjust to container size
|
108
|
-
const containerElement = document.getElementById("mermaid-graph-2c0f5a4e-bb02-4081-a80e-3072ca99a1aa-container");
|
109
|
-
svg.setAttribute("width", containerElement.offsetWidth);
|
110
|
-
svg.setAttribute("height", containerElement.offsetHeight);
|
111
|
-
|
112
|
-
// Add pan/zoom functionality
|
113
|
-
loadScript("https://cdn.jsdelivr.net/npm/svg-pan-zoom/dist/svg-pan-zoom.min.js", () => {
|
114
|
-
const panZoom = svgPanZoom(svg, {
|
115
|
-
zoomEnabled: true,
|
116
|
-
controlIconsEnabled: true,
|
117
|
-
fit: true,
|
118
|
-
center: true,
|
119
|
-
minZoom: 0.5,
|
120
|
-
maxZoom: 10
|
121
|
-
});
|
122
|
-
|
123
|
-
// Reinitialize pan-zoom on window resize
|
124
|
-
function onResize() {
|
125
|
-
panZoom.resize();
|
126
|
-
panZoom.fit();
|
127
|
-
panZoom.center();
|
128
|
-
}
|
129
|
-
window.addEventListener('resize', onResize);
|
130
|
-
|
131
|
-
console.log("Pan & zoom initialized successfully.");
|
132
|
-
});
|
133
|
-
}, 500);
|
134
|
-
}
|
135
|
-
|
136
|
-
// Load Mermaid.js and initialize
|
137
|
-
if (typeof mermaid === "undefined") {
|
138
|
-
loadScript("https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js", initializeMermaid);
|
139
|
-
} else {
|
140
|
-
initializeMermaid();
|
141
|
-
}
|
142
|
-
})();
|
143
|
-
</script>
|
144
|
-
|
145
|
-
|
@@ -1,158 +0,0 @@
|
|
1
|
-
|
2
|
-
<div id="mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584-wrapper" style="width: 100%; height: 100%; display: flex; flex-direction: column; align-items: stretch;">
|
3
|
-
|
4
|
-
<!-- Title/Heading -->
|
5
|
-
|
6
|
-
|
7
|
-
<h3 id="mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584-heading" style="margin: 20px 0; font-size: 1.5em; text-align: center;">
|
8
|
-
Solution Component - Analyse Patient Data
|
9
|
-
</h3>
|
10
|
-
<p id="mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584-subheading" style="margin: 0; padding: 5px; font-size: 1em; text-align: center; color: gray; flex: 0 0 auto;">
|
11
|
-
GUID: b5c8da4c-f925-4cf1-8294-e43cd2c1a584
|
12
|
-
</p>
|
13
|
-
|
14
|
-
<!-- Mermaid Diagram -->
|
15
|
-
<div id="mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584-container" class="diagram-container"
|
16
|
-
style="width: 100%; flex: 1 1 auto; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;">
|
17
|
-
<div id="mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584" class="mermaid"
|
18
|
-
style="width: 100%; height: 100%; cursor: grab; user-select: none; margin: 0; padding: 0;">
|
19
|
-
flowchart TD
|
20
|
-
%%{init: {"flowchart": {"htmlLabels": false}} }%%
|
21
|
-
|
22
|
-
31d4e4e5-670a-43ec-af47-1f64663a7b5a@{ shape: text, label: "*Description*
|
23
|
-
**ML Flow based analytics pipeline to run the variety of models over the patient data.**"}
|
24
|
-
b5c8da4c-f925-4cf1-8294-e43cd2c1a584@{ shape: stadium, label: "*Solution Component*
|
25
|
-
**Analyse Patient Data**"}
|
26
|
-
d48f579f-76d3-4c49-b1b4-575f5645a9d0@{ shape: rect, label: "*Solution Component*
|
27
|
-
**Treatment Validation Sandbox**"}
|
28
|
-
d48f579f-76d3-4c49-b1b4-575f5645a9d0==>|"retrieve patient data,
|
29
|
-
[Solution Linking Wire]"|b5c8da4c-f925-4cf1-8294-e43cd2c1a584
|
30
|
-
48bc201e-3d4e-4beb-bdb2-0fd9d134f6d5@{ shape: rect, label: "*Solution Component*
|
31
|
-
**Treatment Efficacy Evidence**"}
|
32
|
-
b5c8da4c-f925-4cf1-8294-e43cd2c1a584==>|"publish results,
|
33
|
-
[Solution Linking Wire]"|48bc201e-3d4e-4beb-bdb2-0fd9d134f6d5
|
34
|
-
ece17806-836c-4756-b3a2-2d12dde215f6@{ shape: trap-t, label: "*Solution Actor Role*
|
35
|
-
**New Treatment Data Scientist**"}
|
36
|
-
ece17806-836c-4756-b3a2-2d12dde215f6==>|"Data Analyser"|b5c8da4c-f925-4cf1-8294-e43cd2c1a584
|
37
|
-
0c757e35-8a42-4d5f-b01b-c72a6cea65cc@{ shape: trap-t, label: "*Solution Actor Role*
|
38
|
-
**New Treatment Researcher**"}
|
39
|
-
0c757e35-8a42-4d5f-b01b-c72a6cea65cc==>|"Results Interpreter"|b5c8da4c-f925-4cf1-8294-e43cd2c1a584
|
40
|
-
04ae768e-3816-47bc-bddb-c9ae25018684@{ shape: hex, label: "*Information Supply Chain Segment*
|
41
|
-
**Hospital Delivers Patient Weekly Readings**"}
|
42
|
-
04ae768e-3816-47bc-bddb-c9ae25018684==>|"InformationSupplyChainLink"|b5c8da4c-f925-4cf1-8294-e43cd2c1a584
|
43
|
-
1f71e403-1187-4f03-a1dd-ae7dc105f06f@{ shape: flip-tri, label: "*Information Supply Chain*
|
44
|
-
**Clinical Trial Treatment Validation**"}
|
45
|
-
1f71e403-1187-4f03-a1dd-ae7dc105f06f==>|"InformationSupplyChainComposition"|04ae768e-3816-47bc-bddb-c9ae25018684
|
46
|
-
style 48bc201e-3d4e-4beb-bdb2-0fd9d134f6d5 color:#FFFFFF, fill:#838cc7, stroke:#3079ab
|
47
|
-
style 0c757e35-8a42-4d5f-b01b-c72a6cea65cc color:#FFFFFF, fill:#AA00FF, stroke:#E1D5E7
|
48
|
-
style b5c8da4c-f925-4cf1-8294-e43cd2c1a584 color:#FFFFFF, fill:#838cc7, stroke:#3079ab
|
49
|
-
style ece17806-836c-4756-b3a2-2d12dde215f6 color:#FFFFFF, fill:#AA00FF, stroke:#E1D5E7
|
50
|
-
style d48f579f-76d3-4c49-b1b4-575f5645a9d0 color:#FFFFFF, fill:#838cc7, stroke:#3079ab
|
51
|
-
style 1f71e403-1187-4f03-a1dd-ae7dc105f06f color:#FFFFFF, fill:#004563, stroke:#b7c0c7
|
52
|
-
style 31d4e4e5-670a-43ec-af47-1f64663a7b5a color:#000000, fill:#F9F7ED, stroke:#b7c0c7
|
53
|
-
style 04ae768e-3816-47bc-bddb-c9ae25018684 color:#004563, fill:#b7c0c7, stroke:#004563
|
54
|
-
</div>
|
55
|
-
</div>
|
56
|
-
</div>
|
57
|
-
|
58
|
-
<style>
|
59
|
-
/* Ensure no margins or padding for the body or html in Jupyter */
|
60
|
-
body, html {
|
61
|
-
margin: 0;
|
62
|
-
padding: 0;
|
63
|
-
width: 100%;
|
64
|
-
height: 100%;
|
65
|
-
}
|
66
|
-
/* General reset for Jupyter Notebook's extra spacing */
|
67
|
-
#notebook, .container, .cell, .output_area {
|
68
|
-
margin: 0 !important;
|
69
|
-
padding: 0 !important;
|
70
|
-
}
|
71
|
-
.diagram-container {
|
72
|
-
width: 100%;
|
73
|
-
height: 100%;
|
74
|
-
overflow: hidden; /* Prevent scrollbars during zoom/pan */
|
75
|
-
}
|
76
|
-
h2 {
|
77
|
-
margin: 0;
|
78
|
-
padding: 10px;
|
79
|
-
font-size: 24px;
|
80
|
-
text-align: center;
|
81
|
-
flex: 0 0 auto; /* Fix height explicitly for heading */
|
82
|
-
}
|
83
|
-
.mermaid {
|
84
|
-
margin: 0;
|
85
|
-
padding: 0;
|
86
|
-
}
|
87
|
-
</style>
|
88
|
-
|
89
|
-
<script>
|
90
|
-
(function() {
|
91
|
-
const graphId = "mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584"; // Pass the graph ID
|
92
|
-
|
93
|
-
function loadScript(url, callback) {
|
94
|
-
const script = document.createElement('script');
|
95
|
-
script.src = url;
|
96
|
-
script.onload = callback;
|
97
|
-
document.head.appendChild(script);
|
98
|
-
}
|
99
|
-
|
100
|
-
// Initialize Mermaid and render the diagram
|
101
|
-
function initializeMermaid() {
|
102
|
-
mermaid.initialize({startOnLoad: false});
|
103
|
-
mermaid.init(undefined, "#" + graphId);
|
104
|
-
|
105
|
-
setTimeout(() => {
|
106
|
-
const container = document.getElementById(graphId);
|
107
|
-
if (!container) {
|
108
|
-
console.error("Container not found for graph:", graphId);
|
109
|
-
return;
|
110
|
-
}
|
111
|
-
|
112
|
-
const svg = container.querySelector("svg");
|
113
|
-
if (!svg) {
|
114
|
-
console.error("SVG not rendered by Mermaid.");
|
115
|
-
return;
|
116
|
-
}
|
117
|
-
|
118
|
-
console.log("SVG rendered. Applying pan & zoom.");
|
119
|
-
|
120
|
-
// Adjust to container size
|
121
|
-
const containerElement = document.getElementById("mermaid-graph-b5c8da4c-f925-4cf1-8294-e43cd2c1a584-container");
|
122
|
-
svg.setAttribute("width", containerElement.offsetWidth);
|
123
|
-
svg.setAttribute("height", containerElement.offsetHeight);
|
124
|
-
|
125
|
-
// Add pan/zoom functionality
|
126
|
-
loadScript("https://cdn.jsdelivr.net/npm/svg-pan-zoom/dist/svg-pan-zoom.min.js", () => {
|
127
|
-
const panZoom = svgPanZoom(svg, {
|
128
|
-
zoomEnabled: true,
|
129
|
-
controlIconsEnabled: true,
|
130
|
-
fit: true,
|
131
|
-
center: true,
|
132
|
-
minZoom: 0.5,
|
133
|
-
maxZoom: 10
|
134
|
-
});
|
135
|
-
|
136
|
-
// Reinitialize pan-zoom on window resize
|
137
|
-
function onResize() {
|
138
|
-
panZoom.resize();
|
139
|
-
panZoom.fit();
|
140
|
-
panZoom.center();
|
141
|
-
}
|
142
|
-
window.addEventListener('resize', onResize);
|
143
|
-
|
144
|
-
console.log("Pan & zoom initialized successfully.");
|
145
|
-
});
|
146
|
-
}, 500);
|
147
|
-
}
|
148
|
-
|
149
|
-
// Load Mermaid.js and initialize
|
150
|
-
if (typeof mermaid === "undefined") {
|
151
|
-
loadScript("https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js", initializeMermaid);
|
152
|
-
} else {
|
153
|
-
initializeMermaid();
|
154
|
-
}
|
155
|
-
})();
|
156
|
-
</script>
|
157
|
-
|
158
|
-
|