pyegeria 5.4.0.16__py3-none-any.whl → 5.4.0.17__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.
@@ -66,7 +66,7 @@ setup_log()
66
66
  @click.command("process_markdown_file", help="Process a markdown file and return the output as a string.")
67
67
  @click.option("--input-file", help="Markdown file to process.", default="dr_egeria_intro_part1.md", required=True,
68
68
  prompt=False)
69
- @click.option("--output-folder", help="Output folder.", default=".", required=False)
69
+ @click.option("--output-folder", help="Output folder.", default="", required=False)
70
70
  @click.option("--directive", default="process", help="How to process the file",
71
71
  type=click.Choice(["display", "validate", "process"], case_sensitive=False), prompt=False, )
72
72
  @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
@@ -51,9 +51,11 @@ import pydevd_pycharm
51
51
  from pyegeria import (
52
52
  EgeriaTech,
53
53
  NO_ELEMENTS_FOUND,
54
- config_logging,
55
- get_app_config
54
+ # config_logging,
55
+ # get_app_config
56
56
  )
57
+ from pyegeria.load_config import get_app_config
58
+ from pyegeria.logging_configuration import config_logging
57
59
  from pyegeria._output_formats import select_output_format_set, get_output_format_set_heading, \
58
60
  get_output_format_set_description
59
61
  from pyegeria._exceptions_new import PyegeriaException, print_exception_response
@@ -0,0 +1,27 @@
1
+ 2025-08-04 10:10:25 | INFO | main:394 - view server @ https://localhost:9443-{}
2
+ 2025-08-04 10:10:26 | SUCCESS | get_platform_origin:357 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
3
+ Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
4
+ 2025-08-04 10:10:26 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
5
+ 2025-08-04 10:10:27 | ERROR | __init__:235 -
6
+
7
+ => SERVER_ERROR_500
8
+ => Egeria detected error: `https://localhost:9443/servers/qs-view-server/api/open-metadata/collection-manager/collections/by-search-string?startFrom=0&pageSize=0&startsWith=true&endsWith=false&ignoreCase=false`.
9
+ * Context:
10
+ * class name=`Client2`
11
+ * caller method=`_async_find_collections_w_body`
12
+ * System Action: Server-side issue requires attention.
13
+ * User Action: Contact server support.
14
+ * HTTP Code: 200
15
+
16
+ Egeria detected error: `OPEN-METADATA-400-022`.
17
+ * class = OpenMetadataRootElementsResponse
18
+ * relatedHTTPCode = 400
19
+ * exceptionClassName = org.odpi.openmetadata.frameworks.openmetadata.ffdc.InvalidParameterException
20
+ * actionDescription = findCollections
21
+ * exceptionErrorMessage = OPEN-METADATA-400-022 The search string passed on the searchString parameter of the findCollections operation is null
22
+ * exceptionErrorMessageId = OPEN-METADATA-400-022
23
+ * exceptionErrorMessageParameters = ['searchString', 'findCollections']
24
+ * exceptionSystemAction = The system is unable to process the request without a search string.
25
+ * exceptionUserAction = Correct the code in the caller to provide the search string.
26
+ * exceptionProperties = `searchString`
27
+ -{'ip': URL('https://localhost:9443/servers/qs-view-server/api/open-metadata/collection-manager/collections/by-search-string?startFrom=0&pageSize=0&startsWith=true&endsWith=false&ignoreCase=false'), 'http_code': 200, 'pyegeria_code': 'SERVER_ERROR_500'}
pyegeria/__init__.py CHANGED
@@ -10,8 +10,8 @@ The first capabilities are around Egeria's platform services used to start and s
10
10
  the server platform and servers.
11
11
 
12
12
  """
13
- from .load_config import load_app_config, get_app_config
14
- from .logging_configuration import config_logging, init_logging
13
+ # from .load_config import load_app_config, get_app_config
14
+ # from .logging_configuration import config_logging, init_logging
15
15
  from ._globals import (INTEGRATION_GUIDS, TEMPLATE_GUIDS, default_time_out, disable_ssl_warnings, enable_ssl_check,
16
16
  is_debug, max_paging_size, NO_ELEMENTS_FOUND, NO_ASSETS_FOUND, NO_SERVERS_FOUND,
17
17
  NO_CATALOGS_FOUND, NO_GLOSSARIES_FOUND, NO_TERMS_FOUND, NO_CATEGORIES_FOUND, NO_ELEMENT_FOUND,
@@ -12,7 +12,7 @@ import json
12
12
 
13
13
  import httpx
14
14
 
15
- from pyegeria._client import Client, enable_ssl_check
15
+ from pyegeria._client_new import Client2, enable_ssl_check
16
16
  from pyegeria._exceptions import (
17
17
  InvalidParameterException,
18
18
  OMAGCommonErrorCode,
@@ -23,7 +23,7 @@ from pyegeria._exceptions import (
23
23
  from pyegeria._validators import validate_user_id
24
24
  from pyegeria._globals import NO_ELEMENTS_FOUND
25
25
 
26
- class Platform(Client):
26
+ class Platform(Client2):
27
27
  """
28
28
  Client to operate Egeria Platforms - inherits from Server Ops
29
29
 
@@ -49,7 +49,7 @@ class Platform(Client):
49
49
  user_id
50
50
  ) # add this check since we aren't using bearer tokens in this class
51
51
 
52
- Client.__init__(self, server_name, platform_url, user_id, user_pwd)
52
+ Client2.__init__(self, server_name, platform_url, user_id, user_pwd)
53
53
  self.admin_command_root = (
54
54
  self.platform_url
55
55
  + "/open-metadata/platform-services/users/"
@@ -10,12 +10,12 @@ import asyncio
10
10
 
11
11
  from requests import Response
12
12
  from pyegeria.utils import body_slimmer
13
- from pyegeria._client import Client
13
+ from pyegeria._client_new import Client2
14
14
  from pyegeria import TEMPLATE_GUIDS, max_paging_size,default_time_out
15
- from pyegeria._exceptions import InvalidParameterException
15
+ from pyegeria._exceptions_new import PyegeriaInvalidParameterException
16
16
  from pyegeria._globals import NO_ELEMENTS_FOUND
17
17
 
18
- class RuntimeManager(Client):
18
+ class RuntimeManager(Client2):
19
19
  """
20
20
  Client to issue Runtime status requests.
21
21
 
@@ -48,7 +48,7 @@ class RuntimeManager(Client):
48
48
  ):
49
49
  self.view_server = view_server
50
50
  self.time_out = time_out
51
- Client.__init__(self, view_server, platform_url, user_id, user_pwd, token=token)
51
+ Client2.__init__(self, view_server, platform_url, user_id, user_pwd, token=token)
52
52
  self.runtime_command_root = f"{self.platform_url}/servers/{self.view_server}/api/open-metadata/runtime-manager"
53
53
  # self.platform_guid = "44bf319f-1e41-4da1-b771-2753b92b631a" # this is platform @ 9443 from the core content archive
54
54
  self.platform_guid = None
@@ -87,7 +87,7 @@ class RuntimeManager(Client):
87
87
 
88
88
  Raises
89
89
  ------
90
- InvalidParameterException
90
+ PyegeriaInvalidParameterException
91
91
  PropertyServerException
92
92
  UserNotAuthorizedException
93
93
 
@@ -128,7 +128,7 @@ class RuntimeManager(Client):
128
128
 
129
129
  Raises
130
130
  ------
131
- InvalidParameterException
131
+ PyegeriaInvalidParameterException
132
132
  PropertyServerException
133
133
  UserNotAuthorizedException
134
134
 
@@ -164,7 +164,7 @@ class RuntimeManager(Client):
164
164
 
165
165
  Raises
166
166
  ------
167
- InvalidParameterException
167
+ PyegeriaInvalidParameterException
168
168
  PropertyServerException
169
169
  UserNotAuthorizedException
170
170
 
@@ -202,7 +202,7 @@ class RuntimeManager(Client):
202
202
 
203
203
  Raises
204
204
  ------
205
- InvalidParameterException
205
+ PyegeriaInvalidParameterException
206
206
  PropertyServerException
207
207
  UserNotAuthorizedException
208
208
 
@@ -238,7 +238,7 @@ class RuntimeManager(Client):
238
238
 
239
239
  Raises
240
240
  ------
241
- InvalidParameterException
241
+ PyegeriaInvalidParameterException
242
242
  PropertyServerException
243
243
  UserNotAuthorizedException
244
244
 
@@ -275,7 +275,7 @@ class RuntimeManager(Client):
275
275
 
276
276
  Raises
277
277
  ------
278
- InvalidParameterException
278
+ PyegeriaInvalidParameterException
279
279
  PropertyServerException
280
280
  UserNotAuthorizedException
281
281
 
@@ -323,7 +323,7 @@ class RuntimeManager(Client):
323
323
 
324
324
  Raises
325
325
  ------
326
- InvalidParameterException
326
+ PyegeriaInvalidParameterException
327
327
  PropertyServerException
328
328
  UserNotAuthorizedException
329
329
 
@@ -377,7 +377,7 @@ class RuntimeManager(Client):
377
377
 
378
378
  Raises
379
379
  ------
380
- InvalidParameterException
380
+ PyegeriaInvalidParameterException
381
381
  PropertyServerException
382
382
  UserNotAuthorizedException
383
383
 
@@ -422,7 +422,7 @@ class RuntimeManager(Client):
422
422
 
423
423
  Raises
424
424
  ------
425
- InvalidParameterException
425
+ PyegeriaInvalidParameterException
426
426
  PropertyServerException
427
427
  UserNotAuthorizedException
428
428
 
@@ -469,7 +469,7 @@ class RuntimeManager(Client):
469
469
 
470
470
  Raises
471
471
  ------
472
- InvalidParameterException
472
+ PyegeriaInvalidParameterException
473
473
  PropertyServerException
474
474
  UserNotAuthorizedException
475
475
 
@@ -520,7 +520,7 @@ class RuntimeManager(Client):
520
520
 
521
521
  Raises
522
522
  ------
523
- InvalidParameterException
523
+ PyegeriaInvalidParameterException
524
524
  PropertyServerException
525
525
  UserNotAuthorizedException
526
526
 
@@ -582,7 +582,7 @@ class RuntimeManager(Client):
582
582
 
583
583
  Raises
584
584
  ------
585
- InvalidParameterException
585
+ PyegeriaInvalidParameterException
586
586
  PropertyServerException
587
587
  UserNotAuthorizedException
588
588
 
@@ -633,7 +633,7 @@ class RuntimeManager(Client):
633
633
 
634
634
  Raises
635
635
  ------
636
- InvalidParameterException
636
+ PyegeriaInvalidParameterException
637
637
  PropertyServerException
638
638
  UserNotAuthorizedException
639
639
 
@@ -686,7 +686,7 @@ class RuntimeManager(Client):
686
686
 
687
687
  Raises
688
688
  ------
689
- InvalidParameterException
689
+ PyegeriaInvalidParameterException
690
690
  PropertyServerException
691
691
  UserNotAuthorizedException
692
692
 
@@ -732,7 +732,7 @@ class RuntimeManager(Client):
732
732
 
733
733
  Raises
734
734
  ------
735
- InvalidParameterException
735
+ PyegeriaInvalidParameterException
736
736
  PropertyServerException
737
737
  UserNotAuthorizedException
738
738
 
@@ -785,7 +785,7 @@ class RuntimeManager(Client):
785
785
 
786
786
  Raises
787
787
  ------
788
- InvalidParameterException
788
+ PyegeriaInvalidParameterException
789
789
  PropertyServerException
790
790
  UserNotAuthorizedException
791
791
 
@@ -827,7 +827,7 @@ class RuntimeManager(Client):
827
827
 
828
828
  Raises
829
829
  ------
830
- InvalidParameterException
830
+ PyegeriaInvalidParameterException
831
831
  PropertyServerException
832
832
  UserNotAuthorizedException
833
833
 
@@ -880,7 +880,7 @@ class RuntimeManager(Client):
880
880
 
881
881
  Raises
882
882
  ------
883
- InvalidParameterException
883
+ PyegeriaInvalidParameterException
884
884
  PropertyServerException
885
885
  UserNotAuthorizedException
886
886
 
@@ -924,7 +924,7 @@ class RuntimeManager(Client):
924
924
 
925
925
  Raises
926
926
  ------
927
- InvalidParameterException
927
+ PyegeriaInvalidParameterException
928
928
  PropertyServerException
929
929
  UserNotAuthorizedException
930
930
 
@@ -975,7 +975,7 @@ class RuntimeManager(Client):
975
975
 
976
976
  Raises
977
977
  ------
978
- InvalidParameterException
978
+ PyegeriaInvalidParameterException
979
979
  PropertyServerException
980
980
  UserNotAuthorizedException
981
981
 
@@ -1020,7 +1020,7 @@ class RuntimeManager(Client):
1020
1020
 
1021
1021
  Raises
1022
1022
  ------
1023
- InvalidParameterException
1023
+ PyegeriaInvalidParameterException
1024
1024
  PropertyServerException
1025
1025
  UserNotAuthorizedException
1026
1026
 
@@ -1068,7 +1068,7 @@ class RuntimeManager(Client):
1068
1068
 
1069
1069
  Raises
1070
1070
  ------
1071
- InvalidParameterException
1071
+ PyegeriaInvalidParameterException
1072
1072
  PropertyServerException
1073
1073
  UserNotAuthorizedException
1074
1074
 
@@ -1112,7 +1112,7 @@ class RuntimeManager(Client):
1112
1112
 
1113
1113
  Raises
1114
1114
  ------
1115
- InvalidParameterException
1115
+ PyegeriaInvalidParameterException
1116
1116
  PropertyServerException
1117
1117
  UserNotAuthorizedException
1118
1118
 
@@ -1165,7 +1165,7 @@ class RuntimeManager(Client):
1165
1165
 
1166
1166
  Raises
1167
1167
  ------
1168
- InvalidParameterException
1168
+ PyegeriaInvalidParameterException
1169
1169
  PropertyServerException
1170
1170
  UserNotAuthorizedException
1171
1171
 
@@ -1213,7 +1213,7 @@ class RuntimeManager(Client):
1213
1213
 
1214
1214
  Raises
1215
1215
  ------
1216
- InvalidParameterException
1216
+ PyegeriaInvalidParameterException
1217
1217
  PropertyServerException
1218
1218
  UserNotAuthorizedException
1219
1219
 
@@ -1265,7 +1265,7 @@ class RuntimeManager(Client):
1265
1265
 
1266
1266
  Raises
1267
1267
  ------
1268
- InvalidParameterException
1268
+ PyegeriaInvalidParameterException
1269
1269
  PropertyServerException
1270
1270
  UserNotAuthorizedException
1271
1271
 
@@ -1304,7 +1304,7 @@ class RuntimeManager(Client):
1304
1304
 
1305
1305
  Raises
1306
1306
  ------
1307
- InvalidParameterException
1307
+ PyegeriaInvalidParameterException
1308
1308
  PropertyServerException
1309
1309
  UserNotAuthorizedException
1310
1310
 
@@ -1337,7 +1337,7 @@ class RuntimeManager(Client):
1337
1337
 
1338
1338
  Raises
1339
1339
  ------
1340
- InvalidParameterException
1340
+ PyegeriaInvalidParameterException
1341
1341
  PropertyServerException
1342
1342
  UserNotAuthorizedException
1343
1343
 
@@ -1376,7 +1376,7 @@ class RuntimeManager(Client):
1376
1376
 
1377
1377
  Raises
1378
1378
  ------
1379
- InvalidParameterException
1379
+ PyegeriaInvalidParameterException
1380
1380
  PropertyServerException
1381
1381
  UserNotAuthorizedException
1382
1382
 
@@ -1416,7 +1416,7 @@ class RuntimeManager(Client):
1416
1416
 
1417
1417
  Raises
1418
1418
  ------
1419
- InvalidParameterException
1419
+ PyegeriaInvalidParameterException
1420
1420
  PropertyServerException
1421
1421
  UserNotAuthorizedException
1422
1422
 
@@ -1448,7 +1448,7 @@ class RuntimeManager(Client):
1448
1448
 
1449
1449
  Raises
1450
1450
  ------
1451
- InvalidParameterException
1451
+ PyegeriaInvalidParameterException
1452
1452
  PropertyServerException
1453
1453
  UserNotAuthorizedException
1454
1454
 
@@ -1481,7 +1481,7 @@ class RuntimeManager(Client):
1481
1481
 
1482
1482
  Raises
1483
1483
  ------
1484
- InvalidParameterException
1484
+ PyegeriaInvalidParameterException
1485
1485
  PropertyServerException
1486
1486
  UserNotAuthorizedException
1487
1487
 
@@ -1520,7 +1520,7 @@ class RuntimeManager(Client):
1520
1520
 
1521
1521
  Raises
1522
1522
  ------
1523
- InvalidParameterException
1523
+ PyegeriaInvalidParameterException
1524
1524
  PropertyServerException
1525
1525
  UserNotAuthorizedException
1526
1526
  """
@@ -1561,7 +1561,7 @@ class RuntimeManager(Client):
1561
1561
 
1562
1562
  Raises
1563
1563
  ------
1564
- InvalidParameterException
1564
+ PyegeriaInvalidParameterException
1565
1565
  PropertyServerException
1566
1566
  UserNotAuthorizedException
1567
1567
 
@@ -1612,7 +1612,7 @@ class RuntimeManager(Client):
1612
1612
 
1613
1613
  Raises
1614
1614
  ------
1615
- InvalidParameterException
1615
+ PyegeriaInvalidParameterException
1616
1616
  PropertyServerException
1617
1617
  UserNotAuthorizedException
1618
1618
 
@@ -1663,7 +1663,7 @@ class RuntimeManager(Client):
1663
1663
 
1664
1664
  Raises
1665
1665
  ------
1666
- InvalidParameterException
1666
+ PyegeriaInvalidParameterException
1667
1667
  PropertyServerException
1668
1668
  UserNotAuthorizedException
1669
1669
 
@@ -1706,7 +1706,7 @@ class RuntimeManager(Client):
1706
1706
 
1707
1707
  Raises
1708
1708
  ------
1709
- InvalidParameterException
1709
+ PyegeriaInvalidParameterException
1710
1710
  PropertyServerException
1711
1711
  UserNotAuthorizedException
1712
1712
 
@@ -1757,7 +1757,7 @@ class RuntimeManager(Client):
1757
1757
 
1758
1758
  Raises
1759
1759
  ------
1760
- InvalidParameterException
1760
+ PyegeriaInvalidParameterException
1761
1761
  PropertyServerException
1762
1762
  UserNotAuthorizedException
1763
1763
 
@@ -1789,7 +1789,7 @@ class RuntimeManager(Client):
1789
1789
 
1790
1790
  Raises
1791
1791
  ------
1792
- InvalidParameterException
1792
+ PyegeriaInvalidParameterException
1793
1793
  PropertyServerException
1794
1794
  UserNotAuthorizedException
1795
1795
 
@@ -1819,7 +1819,7 @@ class RuntimeManager(Client):
1819
1819
 
1820
1820
  Raises
1821
1821
  ------
1822
- InvalidParameterException
1822
+ PyegeriaInvalidParameterException
1823
1823
  PropertyServerException
1824
1824
  UserNotAuthorizedException
1825
1825
 
@@ -1884,7 +1884,7 @@ class RuntimeManager(Client):
1884
1884
 
1885
1885
  Raises
1886
1886
  ------
1887
- InvalidParameterException
1887
+ PyegeriaInvalidParameterException
1888
1888
  PropertyServerException
1889
1889
  UserNotAuthorizedException
1890
1890
 
@@ -1916,7 +1916,7 @@ class RuntimeManager(Client):
1916
1916
 
1917
1917
  Raises
1918
1918
  ------
1919
- InvalidParameterException
1919
+ PyegeriaInvalidParameterException
1920
1920
  PropertyServerException
1921
1921
  UserNotAuthorizedException
1922
1922
 
@@ -1954,7 +1954,7 @@ class RuntimeManager(Client):
1954
1954
 
1955
1955
  Raises
1956
1956
  ------
1957
- InvalidParameterException
1957
+ PyegeriaInvalidParameterException
1958
1958
  PropertyServerException
1959
1959
  UserNotAuthorizedException
1960
1960
 
@@ -1993,7 +1993,7 @@ class RuntimeManager(Client):
1993
1993
 
1994
1994
  Raises
1995
1995
  ------
1996
- InvalidParameterException
1996
+ PyegeriaInvalidParameterException
1997
1997
  PropertyServerException
1998
1998
  UserNotAuthorizedException
1999
1999
 
@@ -2032,7 +2032,7 @@ class RuntimeManager(Client):
2032
2032
 
2033
2033
  Raises
2034
2034
  ------
2035
- InvalidParameterException
2035
+ PyegeriaInvalidParameterException
2036
2036
  PropertyServerException
2037
2037
  UserNotAuthorizedException
2038
2038
 
@@ -2073,7 +2073,7 @@ class RuntimeManager(Client):
2073
2073
 
2074
2074
  Raises
2075
2075
  ------
2076
- InvalidParameterException
2076
+ PyegeriaInvalidParameterException
2077
2077
  PropertyServerException
2078
2078
  UserNotAuthorizedException
2079
2079
 
@@ -2123,7 +2123,7 @@ class RuntimeManager(Client):
2123
2123
 
2124
2124
  Raises
2125
2125
  ------
2126
- InvalidParameterException
2126
+ PyegeriaInvalidParameterException
2127
2127
  PropertyServerException
2128
2128
  UserNotAuthorizedException
2129
2129
 
@@ -2166,7 +2166,7 @@ class RuntimeManager(Client):
2166
2166
 
2167
2167
  Raises
2168
2168
  ------
2169
- InvalidParameterException
2169
+ PyegeriaInvalidParameterException
2170
2170
  PropertyServerException
2171
2171
  UserNotAuthorizedException
2172
2172
 
@@ -2216,7 +2216,7 @@ class RuntimeManager(Client):
2216
2216
 
2217
2217
  Raises
2218
2218
  ------
2219
- InvalidParameterException
2219
+ PyegeriaInvalidParameterException
2220
2220
  PropertyServerException
2221
2221
  UserNotAuthorizedException
2222
2222
 
@@ -2248,7 +2248,7 @@ class RuntimeManager(Client):
2248
2248
 
2249
2249
  Raises
2250
2250
  ------
2251
- InvalidParameterException
2251
+ PyegeriaInvalidParameterException
2252
2252
  PropertyServerException
2253
2253
  UserNotAuthorizedException
2254
2254
 
@@ -2281,7 +2281,7 @@ class RuntimeManager(Client):
2281
2281
 
2282
2282
  Raises
2283
2283
  ------
2284
- InvalidParameterException
2284
+ PyegeriaInvalidParameterException
2285
2285
  PropertyServerException
2286
2286
  UserNotAuthorizedException
2287
2287
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.4.0.16
3
+ Version: 5.4.0.17
4
4
  Summary: A python client for Egeria
5
5
  License: Apache 2.0
6
6
  Keywords: egeria,metadata,governance
@@ -7,7 +7,7 @@ commands/cat/debug_log,sha256=j_eRIUezfH7lxZHKe56tEV8J8Ukw0fpOjS31VC3TEAs,64305
7
7
  commands/cat/debug_log.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  commands/cat/dr_egeria_command_help.py,sha256=RIxLNIva3_8ofWG_q-tvuIwHY8OZzoOxu6T8CdYZDdU,11101
9
9
  commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
10
- commands/cat/dr_egeria_md.py,sha256=dwMWHO9xuH8h2YaVfEHHBLlwOVyZLxb2LuEGNOvLgTg,19353
10
+ commands/cat/dr_egeria_md.py,sha256=7Mt1N7OCTYKV40DMacxwJ4m4bs8QL3PrRdb0zWQdchQ,19352
11
11
  commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
12
12
  commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
13
13
  commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
@@ -25,7 +25,7 @@ commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQep
25
25
  commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
26
26
  commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
27
27
  commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
28
- commands/cat/list_format_set.py,sha256=H9IuaIpF0iYb8rCRbm__daR8uGPR6MhIOi7VY6qFB8Q,18014
28
+ commands/cat/list_format_set.py,sha256=vp5M0CM39z2ulDw83IAYfBBpb2opPLUhk3CBGkFeqCU,18124
29
29
  commands/cat/list_glossaries.py,sha256=pKJdiRMrSBpmPv0yOWoR_CdGZP06MuxfPGwCXc-kSQw,7666
30
30
  commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
31
31
  commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
@@ -33,7 +33,7 @@ commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG
33
33
  commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12076
34
34
  commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
35
35
  commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
36
- commands/cat/logs/pyegeria.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ commands/cat/logs/pyegeria.log,sha256=Usr2wkD2BHqs4p9_Jp8R6FuMf1I9x88lJBk4r_hDKWQ,1917
37
37
  commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
38
38
  commands/cli/debug_log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  commands/cli/debug_log.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -283,7 +283,7 @@ md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR
283
283
  md_processing/md_processing_utils/solution_architect_log.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
284
  pyegeria/.DS_Store,sha256=mNfbfjZIBqIkB8-E0qdeX6d-QW8AAm1Vi_h-Ov1LwQU,6148
285
285
  pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
286
- pyegeria/__init__.py,sha256=jKqMWRZZoQ7SMpbXQajAfmPTkUc8MX7Du5ALYylBonM,31185
286
+ pyegeria/__init__.py,sha256=JkXf7pBx5n9UYD176s6k9Ktnor_XviIazbbHjDlnLzA,31189
287
287
  pyegeria/_client.py,sha256=hJHn5pD8sbelP_M9dK-M5Z2CYqpRXzXfg1UCgAdQ6dQ,33416
288
288
  pyegeria/_client_new.py,sha256=O4jJtOAD2ZQqrqH_i3PpOKzhqDZ8EfiWemmwCTCcUAY,28945
289
289
  pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
@@ -320,18 +320,18 @@ pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY
320
320
  pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
321
321
  pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
322
322
  pyegeria/output_formatter.py,sha256=sYsya_RSax6ExstJ3qjAGrgIhWM5Tdsyt-Vni5T5p64,25942
323
- pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
323
+ pyegeria/platform_services.py,sha256=AJNa8n2mKfAMK68q886YCD-p5bpCxIlCxBsRdr0R9O4,41708
324
324
  pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
325
325
  pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
326
- pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
326
+ pyegeria/runtime_manager_omvs.py,sha256=gva5Fsic_t6ugHc1vvqtiQfBW1PnLth1JV-KjUGZngY,80125
327
327
  pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
328
328
  pyegeria/solution_architect_omvs.py,sha256=8uux3haRg5oEwrPO4E6uOUv3CmBXqq3k2T4OyPSxZMQ,239700
329
329
  pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
330
330
  pyegeria/utils.py,sha256=CAh8LItgmGf5UHIYeYAOE4roHg1wuBk3zQ1lxK7lcZA,6805
331
331
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
332
332
  pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
333
- pyegeria-5.4.0.16.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
334
- pyegeria-5.4.0.16.dist-info/METADATA,sha256=DbTR67e0o7HI5ylqP5-_6Vd0H5u95Tatp2iNuLT1U-Q,3031
335
- pyegeria-5.4.0.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
336
- pyegeria-5.4.0.16.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
337
- pyegeria-5.4.0.16.dist-info/RECORD,,
333
+ pyegeria-5.4.0.17.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
334
+ pyegeria-5.4.0.17.dist-info/METADATA,sha256=BEE8j4MOY2AvkmTUfYUlPYIsNlA4CmDhKYLVRMClMRk,3031
335
+ pyegeria-5.4.0.17.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
336
+ pyegeria-5.4.0.17.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
337
+ pyegeria-5.4.0.17.dist-info/RECORD,,