pyegeria 5.2.0.4__py3-none-any.whl → 5.2.0.6__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.
@@ -139,18 +139,18 @@ def list_deployed_database_schemas(
139
139
  # get the information about the catalog we are part of
140
140
  el_classification = header["classifications"]
141
141
  for c in el_classification:
142
+ el_cat_guid = "---"
142
143
  if c["type"]["typeName"] == "Anchors":
143
144
  el_anchor_guid = c["classificationProperties"]["anchorGUID"]
144
145
  el_anchor_type_name = c["classificationProperties"][
145
146
  "anchorTypeName"
146
147
  ]
148
+ el_cat_name = "---"
147
149
  if el_anchor_type_name == "Catalog":
148
150
  el_cat = c_client.get_element_by_guid(el_anchor_guid)
149
151
  el_cat_name = el_cat["properties"].get("name", None)
150
152
  if el_cat_name is None:
151
- el_cat_name = el_cat["properties"].get(
152
- "qualifiedName", "---"
153
- )
153
+ el_cat_name = el_cat["properties"].get("qualifiedName", "")
154
154
  el_cat_guid = el_cat["elementHeader"]["guid"]
155
155
  el_schema_id = (
156
156
  f"{el_name}\n{el_guid}\n\n\t\tin\n\n{el_cat_name}\n{el_cat_guid}"
@@ -269,11 +269,7 @@ def show_my_profile(ctx):
269
269
  @my_show.command("my-roles")
270
270
  @click.pass_context
271
271
  def show_my_roles(ctx):
272
- """Display my profiles
273
-
274
- Usage: show my-profile
275
-
276
- """
272
+ """Display my roles"""
277
273
  c = ctx.obj
278
274
  display_my_roles(
279
275
  c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
@@ -363,8 +359,8 @@ def show_elements(ctx):
363
359
  @show_elements.command("guid-info")
364
360
  @click.argument("guid", nargs=1)
365
361
  @click.pass_context
366
- def show_guid_infos(ctx, guid):
367
- """Display a live status view of known platforms
362
+ def show_guid_info(ctx, guid):
363
+ """Display guid information
368
364
 
369
365
  Usage: show guid-info <a guid>
370
366
 
@@ -470,7 +466,7 @@ def show_tech_type_templates(ctx, tech_type):
470
466
  @show_tech_info.command("asset-types")
471
467
  @click.pass_context
472
468
  def show_asset_types(ctx):
473
- """Display engine-host status information"""
469
+ """Display asset types"""
474
470
  c = ctx.obj
475
471
  display_asset_types(
476
472
  c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
@@ -518,7 +514,7 @@ def show_registered_services(ctx, services):
518
514
  )
519
515
  @click.pass_context
520
516
  def show_relationship_types(ctx, rel_type):
521
- """Show information about the specified relationship type"""
517
+ """Show information about the specified relationship types"""
522
518
  c = ctx.obj
523
519
  display_relationship_types(
524
520
  rel_type,
@@ -545,7 +541,7 @@ def show_relationship_types(ctx, rel_type):
545
541
  )
546
542
  @click.pass_context
547
543
  def show_elements_by_classification(ctx, om_type, classification):
548
- """Show information about the specified relationship type"""
544
+ """Show elements by classification"""
549
545
  c = ctx.obj
550
546
  list_classified_elements(
551
547
  om_type,
@@ -575,8 +571,8 @@ def show_elements_by_classification(ctx, om_type, classification):
575
571
  help="Relationship type to follow.",
576
572
  )
577
573
  @click.pass_context
578
- def show_relationship_types(ctx, element_guid, om_type, rel_type):
579
- """Show information about the specified relationship type"""
574
+ def show_related_elements(ctx, element_guid, om_type, rel_type):
575
+ """Show elements related to specified guid"""
580
576
  c = ctx.obj
581
577
  list_related_elements(
582
578
  element_guid,
@@ -706,7 +702,7 @@ def list_element_info(ctx, om_type, extended):
706
702
  @show_tech_info.command("processes")
707
703
  @click.pass_context
708
704
  def list_element_info(ctx):
709
- """Display the valid metadata values for a property and type"""
705
+ """Display the governance action processes"""
710
706
  c = ctx.obj
711
707
  list_elements(
712
708
  "GovernanceActionProcess",
@@ -723,7 +719,7 @@ def list_element_info(ctx):
723
719
  @click.pass_context
724
720
  @click.option("--om_type", default="Project", help="Metadata type to query")
725
721
  def get_element_info(ctx, om_type):
726
- """Display a table of elements for an Open Metadata Type"""
722
+ """Display a table of elements of an Open Metadata Type"""
727
723
  c = ctx.obj
728
724
  display_elements(
729
725
  om_type,
@@ -894,7 +890,7 @@ def show_terms(ctx, search_string, glossary_guid, glossary_name):
894
890
  @click.option("--search_string", default="*", help="Name to search for glossaries")
895
891
  @click.pass_context
896
892
  def glossaries(ctx, search_string):
897
- """Display a tree graph of information about an asset"""
893
+ """Display a list of glossaries"""
898
894
  c = ctx.obj
899
895
  display_glossaries(
900
896
  search_string,
@@ -914,8 +910,8 @@ def glossaries(ctx, search_string):
914
910
  help="View of tree of collections from a given root",
915
911
  )
916
912
  @click.pass_context
917
- def show_asset_graph(ctx, root_collection):
918
- """Display a tree graph of information about an asset"""
913
+ def show_collection(ctx, root_collection):
914
+ """Display a collection"""
919
915
  c = ctx.obj
920
916
  collection_viewer(
921
917
  root_collection,
@@ -957,9 +953,7 @@ def show_projects(ctx, search_string):
957
953
  @click.option("--search-string", default="CertificationType", help="")
958
954
  @click.pass_context
959
955
  def show_certification_types(ctx, search_string):
960
- """Show certification types
961
- - generally stay with the default.
962
- """
956
+ """Show certification types"""
963
957
  c = ctx.obj
964
958
  display_certifications(
965
959
  search_string,
@@ -1041,7 +1035,7 @@ def show_project_dependencies(ctx, project):
1041
1035
  )
1042
1036
  @click.pass_context
1043
1037
  def show_todos(ctx, search_string, status):
1044
- """Display a tree graph of information about an asset"""
1038
+ """Display list of To Dost"""
1045
1039
  c = ctx.obj
1046
1040
  list_todos(
1047
1041
  search_string,
@@ -1058,7 +1052,7 @@ def show_todos(ctx, search_string, status):
1058
1052
  @show_cat_info.command("user-ids")
1059
1053
  @click.pass_context
1060
1054
  def show_todos(ctx):
1061
- """Display a list of known user ids"""
1055
+ """Display a list of known user-ids"""
1062
1056
  c = ctx.obj
1063
1057
  list_user_ids(
1064
1058
  c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
@@ -1192,9 +1186,7 @@ def show_tech_types(ctx, tech_type):
1192
1186
  @click.option("--search-string", default="CertificationType", help="")
1193
1187
  @click.pass_context
1194
1188
  def show_certification_types(ctx, search_string):
1195
- """Show certification types
1196
- - generally stay with the default..
1197
- """
1189
+ """Show certification types"""
1198
1190
  c = ctx.obj
1199
1191
  display_certifications(
1200
1192
  search_string,
@@ -1328,7 +1320,7 @@ def show_tech_type_elements(ctx, tech_type):
1328
1320
  help="View of tree of collections from a given root",
1329
1321
  )
1330
1322
  @click.pass_context
1331
- def show_asset_graph(ctx, root_collection):
1323
+ def show_collection(ctx, root_collection):
1332
1324
  """Display information about a collection"""
1333
1325
  c = ctx.obj
1334
1326
  collection_viewer(
@@ -1374,7 +1366,7 @@ def show_projects(ctx, search_string):
1374
1366
  )
1375
1367
  @click.pass_context
1376
1368
  def show_todos(ctx, search_string, status):
1377
- """Display a tree graph of information about an asset"""
1369
+ """Display a list of To Dos"""
1378
1370
  c = ctx.obj
1379
1371
  list_todos(
1380
1372
  search_string,
@@ -1401,7 +1393,7 @@ def show_user_ids(ctx):
1401
1393
  @show_server.command("archives")
1402
1394
  @click.pass_context
1403
1395
  def archives(ctx):
1404
- """Display a tree graph of information about an asset"""
1396
+ """Display a list of archivest"""
1405
1397
  c = ctx.obj
1406
1398
  display_archive_list(
1407
1399
  c.view_server,
@@ -1422,6 +1414,7 @@ def archives(ctx):
1422
1414
  )
1423
1415
  @click.pass_context
1424
1416
  def show_deployed_servers(ctx, search_string):
1417
+ """Show list of deployed servers"""
1425
1418
  c = ctx.obj
1426
1419
  display_servers_by_dep_imp(
1427
1420
  search_string,
@@ -1440,7 +1433,7 @@ def show_deployed_servers(ctx, search_string):
1440
1433
  )
1441
1434
  @click.pass_context
1442
1435
  def deployed_schemas(ctx, search_catalog):
1443
- """Display a tree graph of information about an asset"""
1436
+ """Display a list of deployed schemas"""
1444
1437
  c = ctx.obj
1445
1438
  list_deployed_database_schemas(
1446
1439
  search_catalog,
@@ -1457,7 +1450,7 @@ def deployed_schemas(ctx, search_catalog):
1457
1450
  @click.option("--search_server", default="*", help="Server to search for catalogs")
1458
1451
  @click.pass_context
1459
1452
  def catalogs(ctx, search_server):
1460
- """Display a tree graph of information about an asset"""
1453
+ """Display a list of deployed catalogs"""
1461
1454
  c = ctx.obj
1462
1455
  list_deployed_catalogs(
1463
1456
  search_server,
@@ -1473,7 +1466,7 @@ def catalogs(ctx, search_server):
1473
1466
  @deployed_data.command("databases")
1474
1467
  @click.pass_context
1475
1468
  def databases(ctx):
1476
- """Display a tree graph of information about an asset"""
1469
+ """Display a list of deployed databases"""
1477
1470
  c = ctx.obj
1478
1471
  list_deployed_databases(
1479
1472
  c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
@@ -1484,7 +1477,7 @@ def databases(ctx):
1484
1477
  @click.option("--search_string", default="*", help="Name to search for glossaries")
1485
1478
  @click.pass_context
1486
1479
  def glossaries(ctx, search_string):
1487
- """Display a tree graph of information about an asset"""
1480
+ """Display a list of glossaries"""
1488
1481
  c = ctx.obj
1489
1482
  display_glossaries(
1490
1483
  search_string,
@@ -340,7 +340,7 @@ def show_terms(ctx, search_string, glossary_guid, glossary_name):
340
340
  @click.option("--search_string", default="*", help="Name to search for glossaries")
341
341
  @click.pass_context
342
342
  def glossaries(ctx, search_string):
343
- """Display information about a collection"""
343
+ """Display a list of glossaries"""
344
344
  c = ctx.obj
345
345
  display_glossaries(
346
346
  search_string,
@@ -360,8 +360,8 @@ def glossaries(ctx, search_string):
360
360
  help="View of tree of collections from a given root",
361
361
  )
362
362
  @click.pass_context
363
- def show_asset_graph(ctx, root_collection):
364
- """Display a tree graph of information about an asset"""
363
+ def show_collection(ctx, root_collection):
364
+ """Display a collection"""
365
365
  c = ctx.obj
366
366
  collection_viewer(
367
367
  root_collection,
@@ -403,9 +403,7 @@ def show_projects(ctx, search_string):
403
403
  @click.option("--search-string", default="CertificationType", help="")
404
404
  @click.pass_context
405
405
  def show_certification_types(ctx, search_string):
406
- """Show certification types
407
- - generally stay with the default.
408
- """
406
+ """Show certification types"""
409
407
  c = ctx.obj
410
408
  display_certifications(
411
409
  search_string,
@@ -477,7 +475,7 @@ def show_project_dependencies(ctx, project):
477
475
  )
478
476
  @click.pass_context
479
477
  def show_todos(ctx, search_string, status):
480
- """Display a tree graph of information about an asset"""
478
+ """Display a list of To Dos"""
481
479
  c = ctx.obj
482
480
  list_todos(
483
481
  search_string,
@@ -193,11 +193,7 @@ def show_my_profile(ctx):
193
193
  @show.command("my-roles")
194
194
  @click.pass_context
195
195
  def show_my_roles(ctx):
196
- """Display my profiles
197
-
198
- Usage: show my-profile
199
-
200
- """
196
+ """Display my roles"""
201
197
  c = ctx.obj
202
198
  display_my_roles(
203
199
  c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
@@ -254,7 +254,7 @@ def show_startup_status(ctx):
254
254
  @show_server.command("archives")
255
255
  @click.pass_context
256
256
  def list_archives(ctx):
257
- """Display a tree graph of information about an asset"""
257
+ """Display a list of archives"""
258
258
  c = ctx.obj
259
259
  display_archive_list(
260
260
  c.view_server,
@@ -23,7 +23,7 @@ from pyegeria.commands.tech.list_relationship_types import display_relationship_
23
23
  from pyegeria.commands.tech.list_tech_templates import display_templates_spec
24
24
  from pyegeria.commands.tech.list_valid_metadata_values import display_metadata_values
25
25
  from pyegeria.commands.tech.get_tech_type_template import template_viewer
26
- from pyegeria.commands.tech.list_anchored_elements import display_element_graph
26
+ from pyegeria.commands.tech.list_anchored_elements import display_anchored_elements
27
27
  from pyegeria.commands.tech.list_elements import list_elements
28
28
 
29
29
  from pyegeria.commands.tech.get_element_info import display_elements
@@ -214,7 +214,7 @@ def show_elements(ctx):
214
214
  @click.argument("guid", nargs=1)
215
215
  @click.pass_context
216
216
  def show_guid_infos(ctx, guid):
217
- """Display a live status view of known platforms
217
+ """Display guid information
218
218
 
219
219
  Usage: show guid-info <a guid>
220
220
 
@@ -249,7 +249,7 @@ def show_related_specifications(ctx, element_guid):
249
249
  def list_element_graph(ctx, search_string: str, prop_list: str):
250
250
  """List elements with the specified properties"""
251
251
  c = ctx.obj
252
- display_element_graph(
252
+ display_anchored_elements(
253
253
  search_string,
254
254
  prop_list,
255
255
  c.view_server,
@@ -400,7 +400,7 @@ def show_relationship_types(ctx, rel_type):
400
400
  )
401
401
  @click.pass_context
402
402
  def show_elements_by_classification(ctx, om_type, classification):
403
- """Show information about the specified relationship type"""
403
+ """Show elements by classification"""
404
404
  c = ctx.obj
405
405
  list_classified_elements(
406
406
  om_type,
@@ -430,8 +430,8 @@ def show_elements_by_classification(ctx, om_type, classification):
430
430
  help="Relationship type to follow.",
431
431
  )
432
432
  @click.pass_context
433
- def show_relationship_types(ctx, element_guid, om_type, rel_type):
434
- """Show information about the specified relationship type"""
433
+ def show_related_elements(ctx, element_guid, om_type, rel_type):
434
+ """Show information about related elements"""
435
435
  c = ctx.obj
436
436
  list_related_elements(
437
437
  element_guid,
@@ -181,6 +181,7 @@ def display_templates_spec(
181
181
  sys.exit(1)
182
182
 
183
183
  try:
184
+ start_time = time.perf_counter()
184
185
  if data_table:
185
186
  return generate_table(data_table)
186
187
  else:
@@ -188,7 +189,8 @@ def display_templates_spec(
188
189
 
189
190
  with console.pager(styles=True):
190
191
  console.print(generate_table(data_table))
191
-
192
+ duration = time.perf_counter() - start_time
193
+ print(f"\n\n\t Search string {search_string}\tDuration was {duration:.2f}\n")
192
194
  except (
193
195
  InvalidParameterException,
194
196
  PropertyServerException,
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 5.2.0.4
3
+ Version: 5.2.0.6
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
7
7
  Keywords: egeria,metadata,governance
8
8
  Author: Dan Wolfson
9
9
  Author-email: dan.wolfson@pdr-associates.com
10
- Requires-Python: >=3.13,<4.0
10
+ Requires-Python: >=3.12.3,<4.0.0
11
11
  Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: License :: Other/Proprietary License
13
13
  Classifier: Programming Language :: Python
@@ -24,7 +24,7 @@ pyegeria/commands/cat/list_assets.py,sha256=hWXtWLYiQx-wIM1xWaxPlm2CyaGL2y9JomYK
24
24
  pyegeria/commands/cat/list_cert_types.py,sha256=x3R7ydIgXQmQyObE2Ffvr3187acFlsN1fXD1vuznJrc,7123
25
25
  pyegeria/commands/cat/list_collections.py,sha256=6_nR_H-i9yRmqnvX4sxTYMSOXf9fPxPbkCBmkC-kCQo,5843
26
26
  pyegeria/commands/cat/list_deployed_catalogs.py,sha256=vXmR6FF9s1Utbci3HGJQRY_AaSzBb8prmVGuJGUQTLQ,8201
27
- pyegeria/commands/cat/list_deployed_database_schemas.py,sha256=VuL9MFWdMWDyWjgVUZMB_USbjPLbvpksZ2skjoUDGRA,9597
27
+ pyegeria/commands/cat/list_deployed_database_schemas.py,sha256=0yrNZnuCFB_g4Cs1DdPZx0TrLHh29gGQQ-cVDRB0Ghk,9608
28
28
  pyegeria/commands/cat/list_deployed_databases.py,sha256=hGlYPTFJtjEss0enb8rBLP38Ghq9e54YjG55MPqkBAk,7587
29
29
  pyegeria/commands/cat/list_glossaries.py,sha256=t4p6DUd09MkIW07rCW0nc2K2ktD_YP0Qlw2z8zSayBI,5592
30
30
  pyegeria/commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
@@ -34,18 +34,19 @@ pyegeria/commands/cat/list_terms.py,sha256=yq3kyfCZ6Hfbqc30L6o-b3Ebp6NpywD99KL4k
34
34
  pyegeria/commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
35
35
  pyegeria/commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
36
36
  pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
37
- pyegeria/commands/cli/egeria.py,sha256=HkWqd47A7oi18zDFUsecZSkSvhu74VzKFw4phaQgQp0,45377
38
- pyegeria/commands/cli/egeria_cat.py,sha256=p7r6Dahv9gvo_WLPmI1z2giVfbfXdbTlP5BLHtzcg68,16192
39
- pyegeria/commands/cli/egeria_my.py,sha256=YsOy1rqDr9MFOoxpleXAo9dMlLI3NfHYf_NobKEdKk8,5888
40
- pyegeria/commands/cli/egeria_ops.py,sha256=xw7C63jPgjQaogl7UZZJHoDnMzoZEMwy6oh1px053Cs,12265
41
- pyegeria/commands/cli/egeria_tech.py,sha256=BbKIGSzZ0soZFg1bZyXsut2C0eI4mLuEyB3Rbla-dFA,15068
37
+ pyegeria/commands/cli/egeria.py,sha256=SVNOTTGzwefw0-SdH8NXQvfpA4B2ydcKqVhB5Sk06Q8,44995
38
+ pyegeria/commands/cli/egeria_cat.py,sha256=Lv1lAYCg0z_BSicVYWIOdaPYi5RjwxzbsqUlsl7xhR0,16081
39
+ pyegeria/commands/cli/egeria_my.py,sha256=H7QO9pRjH0nOghsGev4Cu3DCjp-UkRrV6_tl5npwRlI,5851
40
+ pyegeria/commands/cli/egeria_ops.py,sha256=bHH3pFnw9jc6aSvnbafsM6ch0juI7WSZwREnMKB-I4Q,12241
41
+ pyegeria/commands/cli/egeria_tech.py,sha256=jntbc-TZqu8qGK-MScQNUbRdRLjV_8J-B-JOaaCu6MU,15015
42
42
  pyegeria/commands/cli/ops_config.py,sha256=-fTndSzs1zDmWwKk8hu6FMtBwOyXrZKpIemgykhpigI,1379
43
43
  pyegeria/commands/doc/Visual Command Reference/cat/show/assets/Asset-graph 2024-11-20 at 15.56.42.png,sha256=gL7LDmS0OUeDmmmz6ayZL7qbriaos6ryct-2T0D7CIM,769210
44
44
  pyegeria/commands/doc/Visual Command Reference/cat/show/assets/Assets-in-domain 2024-11-20 at 15.49.55@2x.png,sha256=Op6NHsqPfYVvpKX46Z-IX8G_Of8rrVtDK34C1MJIJdw,540605
45
45
  pyegeria/commands/doc/Visual Command Reference/cat/show/assets/deployed-catalogs 2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
46
46
  pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png,sha256=NCtzoZau5ANXjNh2IH57htfVvWAtMns87_M_5E9DSQ0,627528
47
47
  pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png,sha256=-QCu00HYhdkOJqclthiBSVKQuz1qHVothDwng53n_cw,271680
48
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
48
+ pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/catalogs 2024-11-25 at 16.28.53@2x.png,sha256=VXRq9sOKApd5Vm1w5GwABI4RJM1V50R8S_rjQfNV3QI,171649
49
+ pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
49
50
  pyegeria/commands/doc/command-overview.md,sha256=XTwDAR_fUrW0A4krMWuXYCZr1NDFiaE_3LH42y9rmr0,11059
50
51
  pyegeria/commands/doc/glossary/basic-glossary-tui.md,sha256=2HoFDMCbIZuh4sBA1xRuu7qHQPyGwWS-JNUm5XNZ8JE,5880
51
52
  pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png,sha256=rppVqEwN1ZrSMzyXnsYqDl7fnPs0zTlE7PMmX4VUbQI,203332
@@ -145,7 +146,7 @@ pyegeria/commands/tech/list_relationship_types.py,sha256=BlVzrPznZXqMVLN2-2vYEVR
145
146
  pyegeria/commands/tech/list_relationships.py,sha256=U9f78cOi4HyaacqNaFSMq_7rRxVcEczvwPv468GYw3Q,5869
146
147
  pyegeria/commands/tech/list_tech_templates.py,sha256=FIeYWnJY2bVUrfDQBJX2bpkp5cU7uPak52eJtB4vVu4,14146
147
148
  pyegeria/commands/tech/list_valid_metadata_values.py,sha256=N3D0_BmREPszgde3uvvYdfzq7DJ46uMOv2t1vtncGsw,6333
148
- pyegeria/commands/tech/table_tech_templates.py,sha256=_aWI4U8CMO0c2JdUxfqW7b2RQADMPUBvTulWk6m50VA,9318
149
+ pyegeria/commands/tech/table_tech_templates.py,sha256=8WlY4OJ6pOzNnuiMJvK3yy03YkB5K9w45c8c6wO2dPY,9496
149
150
  pyegeria/commands/tech/x_list_related_elements.py,sha256=qBsf1619cecaMCTzG0MG22fAT32WNH2Z3CXrjo9z-5Y,5853
150
151
  pyegeria/core_omag_server_config.py,sha256=ej0oNpGelSTTm2oERS86LpgT9O9E5CZFbUm2Iek8f1E,97764
151
152
  pyegeria/create_tech_guid_lists.py,sha256=HHkC6HW58EN1BiolrYSRqSE0JhPbTepOFzwtdwBxVaU,4640
@@ -169,8 +170,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
169
170
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
170
171
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
171
172
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
172
- pyegeria-5.2.0.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
173
- pyegeria-5.2.0.4.dist-info/METADATA,sha256=1OiGX2fkgI3T8oJpL-bUNe-NyswoxBR-fqLN0MoTCto,2875
174
- pyegeria-5.2.0.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
175
- pyegeria-5.2.0.4.dist-info/entry_points.txt,sha256=JhYgb02izlV2wb7SIfCOMxeVISUd9YJvgDW1-kuHad4,5240
176
- pyegeria-5.2.0.4.dist-info/RECORD,,
173
+ pyegeria-5.2.0.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
174
+ pyegeria-5.2.0.6.dist-info/METADATA,sha256=Brun8r55Lmf8L4Vsd4K6gwV7aWTbCOEvBjVbL2mTxLQ,2879
175
+ pyegeria-5.2.0.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
176
+ pyegeria-5.2.0.6.dist-info/entry_points.txt,sha256=JhYgb02izlV2wb7SIfCOMxeVISUd9YJvgDW1-kuHad4,5240
177
+ pyegeria-5.2.0.6.dist-info/RECORD,,