pyegeria 1.5.1.1.46__py3-none-any.whl → 1.5.1.1.47__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.
Files changed (37) hide show
  1. pyegeria/commands/cat/glossary_actions.py +29 -1
  2. pyegeria/commands/doc/command-overview.md +5 -0
  3. pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.02.16@2x.png +0 -0
  4. pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.03.24@2x.png +0 -0
  5. pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.06.32@2x.png +0 -0
  6. pyegeria/commands/doc/glossary/basic-glossary-tui.md +90 -0
  7. pyegeria/commands/doc/glossary/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png +0 -0
  8. pyegeria/commands/doc/glossary/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png +0 -0
  9. pyegeria/commands/doc/glossary/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png +0 -0
  10. pyegeria/commands/doc/glossary/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png +0 -0
  11. pyegeria/commands/doc/glossary/out-create-term 2024-11-06 at 20.48.29.png +0 -0
  12. pyegeria/commands/doc/glossary/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png +0 -0
  13. pyegeria/commands/doc/glossary/out-exported-terms 2024-11-06 at 21.06.32.png +0 -0
  14. pyegeria/commands/doc/glossary/out-list-all-terms 2024-11-06 at 16.22.20@2x.png +0 -0
  15. pyegeria/commands/doc/glossary/out-list-terms-for-example 2024-11-06 at 16.40.12.png +0 -0
  16. pyegeria/commands/doc/glossary/out-list-terms-second 2024-11-06 at 16.45.13.png +0 -0
  17. pyegeria/commands/doc/glossary/out-terms-export 2024-11-06 at 21.03.24.png +0 -0
  18. pyegeria/commands/doc/glossary/tui-create-term 2024-11-06 at 20.46.35.png +0 -0
  19. pyegeria/commands/doc/glossary/tui-display-terms-for-example 2024-11-06 at 20.56.49.png +0 -0
  20. pyegeria/commands/doc/glossary/tui-display-terms-for-glossary 2024-11-06 at 20.49.51.png +0 -0
  21. pyegeria/commands/doc/glossary/tui-export-glossary 2024-11-06 at 21.02.16.png +0 -0
  22. pyegeria/commands/doc/glossary/tui-list-all-terms 2024-11-06 at 16.19.45@2x.png +0 -0
  23. pyegeria/commands/doc/glossary/tui-list-terms-from-glossary 2024-11-06 at 16.23.54.png +0 -0
  24. pyegeria/commands/doc/glossary/tui-list-terms-second 2024-11-06 at 16.46.34.png +0 -0
  25. pyegeria/commands/doc/glossary/tui-load-terms 2024-11-05 at 20.44.20@2x.png +0 -0
  26. pyegeria/glossary_manager_omvs.py +0 -3
  27. {pyegeria-1.5.1.1.46.dist-info → pyegeria-1.5.1.1.47.dist-info}/METADATA +1 -1
  28. {pyegeria-1.5.1.1.46.dist-info → pyegeria-1.5.1.1.47.dist-info}/RECORD +37 -14
  29. /pyegeria/commands/doc/glossary/{result-create-glossary example 2024-11-05 at 20.38.04@2x.png → out-create-glossary example 2024-11-05 at 20.38.04@2x.png} +0 -0
  30. /pyegeria/commands/doc/glossary/{Glossary-list example 2024-11-05 at 20.41.02@2x.png → out-glossary-list example 2024-11-05 at 20.41.02@2x.png} +0 -0
  31. /pyegeria/commands/doc/glossary/{show-all-terms 2024-11-05 at 19.43.29@2x.png → out_show-all-terms 2024-11-05 at 19.43.29@2x.png} +0 -0
  32. /pyegeria/commands/doc/glossary/{list_glossaries 2024-11-05 at 17.07.21@2x.png → shell_list_glossaries 2024-11-05 at 17.07.21@2x.png} +0 -0
  33. /pyegeria/commands/doc/glossary/{list_glossaries 2024-11-05 at 19.21.50@2x.png → shell_list_glossaries 2024-11-05 at 19.21.50@2x.png} +0 -0
  34. /pyegeria/commands/doc/glossary/{create-glossary 2024-11-05 at 19.18.19@2x.png → tui-create-glossary 2024-11-05 at 19.18.19@2x.png} +0 -0
  35. {pyegeria-1.5.1.1.46.dist-info → pyegeria-1.5.1.1.47.dist-info}/LICENSE +0 -0
  36. {pyegeria-1.5.1.1.46.dist-info → pyegeria-1.5.1.1.47.dist-info}/WHEEL +0 -0
  37. {pyegeria-1.5.1.1.46.dist-info → pyegeria-1.5.1.1.47.dist-info}/entry_points.txt +0 -0
@@ -131,7 +131,7 @@ def delete_glossary(server, url, userid, password, timeout, glossary_guid):
131
131
  m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
132
132
  token = m_client.create_egeria_bearer_token()
133
133
  try:
134
- m_client.delete_to_do(glossary_guid)
134
+ m_client.delete_glossary(glossary_guid)
135
135
 
136
136
  click.echo(f"Deleted glossary: {glossary_guid}")
137
137
 
@@ -234,6 +234,34 @@ def create_term(
234
234
  m_client.close_session()
235
235
 
236
236
 
237
+ @click.command("delete-term")
238
+ @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
239
+ @click.option(
240
+ "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
241
+ )
242
+ @click.option("--userid", default=EGERIA_USER, help="Egeria user")
243
+ @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
244
+ @click.option("--timeout", default=60, help="Number of seconds to wait")
245
+ @click.argument("term-guid")
246
+ def delete_term(server, url, userid, password, timeout, term_guid):
247
+ """Delete a glossary term"""
248
+ m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
249
+ token = m_client.create_egeria_bearer_token()
250
+ try:
251
+ term_info = m_client.get_terms_by_guid(term_guid)
252
+
253
+ m_client.delete_term(term_guid)
254
+
255
+ click.echo(
256
+ f"Deleted term with GUID: {term_guid} and Display Name: {term_info['glossaryTermProperties']['displayName']}"
257
+ )
258
+
259
+ except (InvalidParameterException, PropertyServerException) as e:
260
+ print_exception_response(e)
261
+ finally:
262
+ m_client.close_session()
263
+
264
+
237
265
  @click.command("load-terms-from-file")
238
266
  @click.option("--glossary-name", help="Name of Glossary", required=True)
239
267
  @click.option("--file-name", help="Path of CSV file", required=True)
@@ -1,3 +1,5 @@
1
+ <!-- SPDX-License-Identifier: CC-BY-4.0 -->
2
+ <!-- Copyright Contributors to the Egeria project. -->
1
3
  # Overview
2
4
 
3
5
  # Command Line Interfaces
@@ -90,3 +92,6 @@
90
92
  | start_daemon | | | | ✓ | | |
91
93
  | stop_daemon | | | | ✓ | | |
92
94
 
95
+ ----
96
+ License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
97
+ Copyright Contributors to the Egeria project.
@@ -0,0 +1,90 @@
1
+ <!-- SPDX-License-Identifier: CC-BY-4.0 -->
2
+ <!-- Copyright Contributors to the Egeria project. -->
3
+
4
+ # Working with glossaries
5
+
6
+ ## Display glossary List
7
+ ### Entry
8
+ ![tui-show glossaries 2024-11-05 at 19.22.49@2x.png](tui-show%20glossaries%20%202024-11-05%20at%2019.22.49%402x.png)
9
+ ### Display
10
+ ![glossary-list](out-glossary-list%20example%202024-11-05%20at%2020.41.02%402x.png)
11
+ ## Create a new Glossary
12
+ ### Entry
13
+ ![TUI-create glossary](/Users/dwolfson/localGit/egeria-v5/egeria-python/pyegeria/commands/doc/glossary/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png)
14
+
15
+ ### Display
16
+ ![create glossary](/Users/dwolfson/localGit/egeria-v5/egeria-python/pyegeria/commands/doc/glossary/out-create-glossary example 2024-11-05 at 20.38.04@2x.png)
17
+ ## Delete a glossary
18
+
19
+ ### 1. List available glossaries
20
+ ![delete-glossary-step1 2024-11-06 at 15.47.23@2x.png](delete-glossary-step1%202024-11-06%20at%2015.47.23%402x.png)
21
+
22
+ ### 2. Use TUI to delete a glossary, specifying a glossary GUID from the list glossaries command above
23
+ ![delete-glossary-step2 2024-11-06 at 15.51.29@2x.png](delete-glossary-step2%202024-11-06%20at%2015.51.29%402x.png)
24
+
25
+ ### 3. View the results of the delete glossary command
26
+ ![delete-glossary-step3 2024-11-06 at 15.53.19@2x.png](delete-glossary-step3%202024-11-06%20at%2015.53.19%402x.png)
27
+
28
+ ### 4. List glossaries again to see the remaining glossaries
29
+ ![delete-glossary-step4 2024-11-06 at 15.55.11@2x.png](delete-glossary-step4%202024-11-06%20at%2015.55.11%402x.png)
30
+
31
+ # Working with terms
32
+
33
+ ## Displaying terms
34
+
35
+ ### Display all terms across all visible glossaries
36
+
37
+ ![tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png](tui-show-glossary-terms%202024-11-05%20at%2019.37.53%402x.png)
38
+
39
+ ![out-list-all-terms 2024-11-06 at 16.22.20@2x.png](out-list-all-terms%20%202024-11-06%20at%2016.22.20%402x.png)
40
+ ### Display all terms for a specific glossary
41
+
42
+ ![tui-display-terms-for-example 2024-11-06 at 20.56.49.png](tui-display-terms-for-example%202024-11-06%20at%2020.56.49.png)
43
+
44
+ ![out-create-term 2024-11-06 at 20.48.29.png](out-create-term%202024-11-06%20at%2020.48.29.png)
45
+
46
+ ![out-list-terms-for-example 2024-11-06 at 16.40.12.png](out-list-terms-for-example%202024-11-06%20at%2016.40.12.png)
47
+
48
+ ### Display terms starting with a specified search string
49
+ ![tui-list-terms-second 2024-11-06 at 16.46.34.png](tui-list-terms-second%202024-11-06%20at%2016.46.34.png)
50
+
51
+ ![out-list-terms-second 2024-11-06 at 16.45.13.png](out-list-terms-second%202024-11-06%20at%2016.45.13.png)
52
+
53
+ ## Create a new term
54
+
55
+ ![tui-create-term 2024-11-06 at 20.46.35.png](tui-create-term%202024-11-06%20at%2020.46.35.png)
56
+
57
+ ![out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png](out-display-terms-for-glossary-test%202024-11-06%20at%2020.51.28.png)
58
+ ## Delete a term
59
+
60
+ ## Export terms to a CSV File
61
+
62
+ ![tui-export-glossary 2024-11-06 at 21.02.16.png](tui-export-glossary%202024-11-06%20at%2021.02.16.png)
63
+
64
+ ![out-terms-export 2024-11-06 at 21.03.24.png](out-terms-export%202024-11-06%20at%2021.03.24.png)
65
+
66
+ ![out-exported-terms 2024-11-06 at 21.06.32.png](out-exported-terms%202024-11-06%20at%2021.06.32.png)
67
+
68
+ ## Import terms from a CSV File
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+ ----
89
+ License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
90
+ Copyright Contributors to the Egeria project.
@@ -1623,7 +1623,6 @@ class GlossaryManager(GlossaryBrowser):
1623
1623
  }
1624
1624
  )
1625
1625
  continue
1626
-
1627
1626
  status = status.upper()
1628
1627
 
1629
1628
  if upsert:
@@ -3046,7 +3045,6 @@ class GlossaryManager(GlossaryBrowser):
3046
3045
  term_guid : str
3047
3046
  The GUID of the glossary term to retrieve.
3048
3047
 
3049
-
3050
3048
  Returns
3051
3049
  -------
3052
3050
  dict | str
@@ -3080,7 +3078,6 @@ class GlossaryManager(GlossaryBrowser):
3080
3078
  term_guid : str
3081
3079
  The GUID of the glossary term to retrieve.
3082
3080
 
3083
-
3084
3081
  Returns
3085
3082
  -------
3086
3083
  dict | str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.1.46
3
+ Version: 1.5.1.1.47
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -19,7 +19,7 @@ pyegeria/commands/cat/get_project_dependencies.py,sha256=B0JaMSUi0hzVgos1sTY2uUP
19
19
  pyegeria/commands/cat/get_project_structure.py,sha256=n2GbNd07w1DTo7jTR8b2ewXRyNcat_2BcCBRyDMldwk,5969
20
20
  pyegeria/commands/cat/get_tech_type_elements.py,sha256=-m3Q0BoNqkCtV8h75vMwTcOV-_ymEXmnJcr4Ec7WMAw,6180
21
21
  pyegeria/commands/cat/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
22
- pyegeria/commands/cat/glossary_actions.py,sha256=hYzo7J42zoNM22aeQZ57dW_51x9JRUIiShJlKpdAkO8,12104
22
+ pyegeria/commands/cat/glossary_actions.py,sha256=3BTnM_1rxUrUWrl93X0LbuODLhCqX_Yd40BrPaXZAEc,13228
23
23
  pyegeria/commands/cat/list_archives.py,sha256=FEZ2XYnQIWo2PztWqnj6unn0pbblPU0-bMbTyI3csv4,5464
24
24
  pyegeria/commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
25
25
  pyegeria/commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
@@ -41,14 +41,37 @@ pyegeria/commands/cli/egeria_my.py,sha256=Memyxzhrn_i3nMNRor-5N40_SKJJMzylA4iQgB
41
41
  pyegeria/commands/cli/egeria_ops.py,sha256=p15SOjimPAY8hv_NmsU4Ff2iPEP32p_hVMBwxlnLM_I,12214
42
42
  pyegeria/commands/cli/egeria_tech.py,sha256=o6g_xwP8S-ehwgpkl-0BD_-FyGfyr90bEiKWNvHj9xk,13303
43
43
  pyegeria/commands/cli/ops_config.py,sha256=m4AfPjf-fR4EBTx8Dc2mcgrfWwAxb30YGeV-v79bg4U,1450
44
- pyegeria/commands/doc/command-overview.md,sha256=mxZnETYs7DV0sWrsce9xR1Wi8iKzd6Z_i0chW6Or864,6456
45
- pyegeria/commands/doc/glossary/Glossary-list example 2024-11-05 at 20.41.02@2x.png,sha256=EMo36u3t1Oqr85Crzp61KX9z4P_e5S27HlLHggODfCQ,162298
46
- pyegeria/commands/doc/glossary/create-glossary 2024-11-05 at 19.18.19@2x.png,sha256=Dp9wktuIQDsMCHqd2DYXh0bxER_bKCSmKG58aXcLU70,327718
47
- pyegeria/commands/doc/glossary/list_glossaries 2024-11-05 at 17.07.21@2x.png,sha256=Z1EuzITgNkwoKwJeV7lM_nwBU3Xxs4QeGR4SHhSLyGc,162470
48
- pyegeria/commands/doc/glossary/list_glossaries 2024-11-05 at 19.21.50@2x.png,sha256=KV04xzZcy24V1cmLZ5fK5yaDC06GXOXW0pHdHskVRxw,178695
49
- pyegeria/commands/doc/glossary/result-create-glossary example 2024-11-05 at 20.38.04@2x.png,sha256=dAdedkZTDsyWR_QsvnXk6XTrvk38oU5yCr50TVWDe_0,49309
50
- pyegeria/commands/doc/glossary/show-all-terms 2024-11-05 at 19.43.29@2x.png,sha256=LdZGv6Vr2yfMStSN7f_DEuvdANBmtSzeXloAnpzAqLo,398894
44
+ pyegeria/commands/doc/command-overview.md,sha256=tnefqWz88GUMRi0TpcE5KAmeMCpvdSF6z4gVt8y_yzs,6673
45
+ pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.02.16@2x.png,sha256=iOTLyTckqy09NA-dwtiUbqhAEZmCdsaaGgMSEUDeBW8,372241
46
+ pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.03.24@2x.png,sha256=VFuHwNd2JQtVYkn23Zf4_i3G1O2mTsywoZQJib3tV3s,28738
47
+ pyegeria/commands/doc/glossary/CleanShot 2024-11-06 at 21.06.32@2x.png,sha256=XJT-1ol1CquY-tzzFVagfzGKHHr7a-YSeaD2c2hNsmo,67912
48
+ pyegeria/commands/doc/glossary/basic-glossary-tui.md,sha256=BUHIpjZKvimF67Fgu3KOD_5d0Kzjcv0oU1_0_rghcoo,3262
49
+ pyegeria/commands/doc/glossary/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png,sha256=rppVqEwN1ZrSMzyXnsYqDl7fnPs0zTlE7PMmX4VUbQI,203332
50
+ pyegeria/commands/doc/glossary/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png,sha256=tV0h6i1eRAbvAzye8iuWt0eJ14y1Crk9DovaJLGJCSA,299425
51
+ pyegeria/commands/doc/glossary/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png,sha256=i_SJAW_CeM0fNfZ3fLrZAKdrE9LHG1zHHui86pejlkg,22826
52
+ pyegeria/commands/doc/glossary/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png,sha256=Tp3Obg86JmsKIijn4lE_NBjX9v_C1AXPU0w0Qr3cSak,169412
53
+ pyegeria/commands/doc/glossary/out-create-glossary example 2024-11-05 at 20.38.04@2x.png,sha256=dAdedkZTDsyWR_QsvnXk6XTrvk38oU5yCr50TVWDe_0,49309
54
+ pyegeria/commands/doc/glossary/out-create-term 2024-11-06 at 20.48.29.png,sha256=C8VHV3Dynig-ACrezeCK-24WqbKkK45U8cBbN54RQRY,36189
55
+ pyegeria/commands/doc/glossary/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png,sha256=kRVjgOyNkjohd8QCbilCPTZsbHSxv336RB7VXHym5AQ,68878
56
+ pyegeria/commands/doc/glossary/out-exported-terms 2024-11-06 at 21.06.32.png,sha256=3rMNGH0QhBYTX0OflYuYG2i2mO_nWrKcaYGzE3UxXNc,67935
57
+ pyegeria/commands/doc/glossary/out-glossary-list example 2024-11-05 at 20.41.02@2x.png,sha256=EMo36u3t1Oqr85Crzp61KX9z4P_e5S27HlLHggODfCQ,162298
58
+ pyegeria/commands/doc/glossary/out-list-all-terms 2024-11-06 at 16.22.20@2x.png,sha256=z0c5uSoVBGEuImth-Os6IcaMhrBB9K3Zvw6RcOCcQGI,362370
59
+ pyegeria/commands/doc/glossary/out-list-terms-for-example 2024-11-06 at 16.40.12.png,sha256=7kB9zMI3pJrdDyPzGB6tv_DnJYQ9yAE_46o1qYeNdDY,119825
60
+ pyegeria/commands/doc/glossary/out-list-terms-second 2024-11-06 at 16.45.13.png,sha256=XFPeag87Lc64_51l8LBqPygfu9DkFIq3w74s17QORwA,69516
61
+ pyegeria/commands/doc/glossary/out-terms-export 2024-11-06 at 21.03.24.png,sha256=LQTUbLuBbszuhCbdeuVK7U0-R1coYjdFBPp5wStfvbw,28761
62
+ pyegeria/commands/doc/glossary/out_show-all-terms 2024-11-05 at 19.43.29@2x.png,sha256=LdZGv6Vr2yfMStSN7f_DEuvdANBmtSzeXloAnpzAqLo,398894
63
+ pyegeria/commands/doc/glossary/shell_list_glossaries 2024-11-05 at 17.07.21@2x.png,sha256=Z1EuzITgNkwoKwJeV7lM_nwBU3Xxs4QeGR4SHhSLyGc,162470
64
+ pyegeria/commands/doc/glossary/shell_list_glossaries 2024-11-05 at 19.21.50@2x.png,sha256=KV04xzZcy24V1cmLZ5fK5yaDC06GXOXW0pHdHskVRxw,178695
65
+ pyegeria/commands/doc/glossary/tui-create-glossary 2024-11-05 at 19.18.19@2x.png,sha256=Dp9wktuIQDsMCHqd2DYXh0bxER_bKCSmKG58aXcLU70,327718
51
66
  pyegeria/commands/doc/glossary/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png,sha256=TSSCkj7VkRQpaeyH7JiYbGJISPXmidmYZTN7rVpfdik,321074
67
+ pyegeria/commands/doc/glossary/tui-create-term 2024-11-06 at 20.46.35.png,sha256=IyfiLC543yzV2iNQZUXmwmXLotG9YgyH5MnyzderD2U,350348
68
+ pyegeria/commands/doc/glossary/tui-display-terms-for-example 2024-11-06 at 20.56.49.png,sha256=XWu-313nOY0Q7bGSX1ZXFFj8HVarrIUhBrvJx5fvm5g,377005
69
+ pyegeria/commands/doc/glossary/tui-display-terms-for-glossary 2024-11-06 at 20.49.51.png,sha256=qnTfhfDSlMX9nQdCark_zkMUEPOxLd-R_nBnA-A03Ak,376131
70
+ pyegeria/commands/doc/glossary/tui-export-glossary 2024-11-06 at 21.02.16.png,sha256=SkGbxI8-XdGNxXMTMcklvCoYlLyll5MLZuNpM6AGzys,372264
71
+ pyegeria/commands/doc/glossary/tui-list-all-terms 2024-11-06 at 16.19.45@2x.png,sha256=CGyzudmjcV5SBP6LvzDdYw62Mm4eab_91EkmLg3WMQw,296378
72
+ pyegeria/commands/doc/glossary/tui-list-terms-from-glossary 2024-11-06 at 16.23.54.png,sha256=HGg1izf1MmN8spQ0njFEYduxsnc1jplOcOLOsrCsxa4,301967
73
+ pyegeria/commands/doc/glossary/tui-list-terms-second 2024-11-06 at 16.46.34.png,sha256=xUX6Wxd7si8ScLDI2-5FozYK3vkwU5_x-1LpuRdLEpo,300316
74
+ pyegeria/commands/doc/glossary/tui-load-terms 2024-11-05 at 20.44.20@2x.png,sha256=MA8Fcm21dElVnrRsPgU4kWxYqjpVDBOT1ZWLW-3IEYo,338549
52
75
  pyegeria/commands/doc/glossary/tui-show glossaries 2024-11-05 at 19.22.49@2x.png,sha256=6T-JkXgRWBcTDVP4rEoJb_ZpZWWw2yj2nLb3idw2KUk,345755
53
76
  pyegeria/commands/doc/glossary/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png,sha256=AAq9De5X-Qf_KPKZlHgaBk0nlSsc7Y3wra72L7vzvjs,326972
54
77
  pyegeria/commands/doc/glossary/tui-show-glossary-terms-sustainability 2024-11-05 at 19.46.13@2x.png,sha256=yNTJL5mKHFB7zrA6WHC3szXBZRYv6KcKt_WLKNyXaIM,349530
@@ -107,7 +130,7 @@ pyegeria/egeria_tech_client.py,sha256=7NfqpJFft5GR4NPRDVDw22L9caHbXB8fhx0TAf6qEo
107
130
  pyegeria/feedback_manager_omvs.py,sha256=B66e3ZCaC_dirb0mcb2Nz3PYh2ZKsoMAYNOb3euNiro,152931
108
131
  pyegeria/full_omag_server_config.py,sha256=LBnqUiz1ofBdlKBzECFs_pQbdJwcWigAukWHGJRR2nU,47340
109
132
  pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
110
- pyegeria/glossary_manager_omvs.py,sha256=kvh2xVbBTc3Rgl-SQeHQxARbKFZMBBsTc_leC2IAE4I,129648
133
+ pyegeria/glossary_manager_omvs.py,sha256=rKL-GAf3mNgWh5ynvx5oElYJC-CoSLKIrncjczO2Yjg,129645
111
134
  pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
112
135
  pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
113
136
  pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
@@ -119,8 +142,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
119
142
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
120
143
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
121
144
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
122
- pyegeria-1.5.1.1.46.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
123
- pyegeria-1.5.1.1.46.dist-info/METADATA,sha256=b9JE_CTS6RM81iw8AVOHYWtKAMw0QTn6fdEdSK9tfYw,2998
124
- pyegeria-1.5.1.1.46.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
125
- pyegeria-1.5.1.1.46.dist-info/entry_points.txt,sha256=GDsJt24awMzNAbVAWdMoeZTQb5oMcMCqjvIAemqOwVQ,5105
126
- pyegeria-1.5.1.1.46.dist-info/RECORD,,
145
+ pyegeria-1.5.1.1.47.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
146
+ pyegeria-1.5.1.1.47.dist-info/METADATA,sha256=CnOMEFCze6uuNK8TaIZBav7BS3LWb1cyOuInGGSGXF0,2998
147
+ pyegeria-1.5.1.1.47.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
148
+ pyegeria-1.5.1.1.47.dist-info/entry_points.txt,sha256=GDsJt24awMzNAbVAWdMoeZTQb5oMcMCqjvIAemqOwVQ,5105
149
+ pyegeria-1.5.1.1.47.dist-info/RECORD,,