pyegeria 5.4.0.dev3__py3-none-any.whl → 5.4.0.dev6__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 (58) hide show
  1. commands/cat/dr_egeria_md.py +12 -3
  2. commands/cat/list_collections.py +7 -6
  3. commands/cat/list_data_designer.py +20 -9
  4. md_processing/__init__.py +4 -1
  5. md_processing/data/commands.json +142 -17
  6. md_processing/md_commands/data_designer_commands.py +408 -101
  7. md_processing/md_commands/glossary_commands.py +0 -30
  8. md_processing/md_commands/solution_architect_commands.py +1 -1
  9. md_processing/md_processing_utils/common_md_proc_utils.py +16 -4
  10. md_processing/md_processing_utils/md_processing_constants.py +3 -1
  11. pyegeria/collection_manager_omvs.py +120 -72
  12. pyegeria/data_designer_omvs.py +161 -60
  13. pyegeria/glossary_browser_omvs.py +5 -6
  14. pyegeria/output_formatter.py +33 -14
  15. pyegeria/solution_architect_omvs.py +277 -9
  16. {pyegeria-5.4.0.dev3.dist-info → pyegeria-5.4.0.dev6.dist-info}/METADATA +1 -1
  17. {pyegeria-5.4.0.dev3.dist-info → pyegeria-5.4.0.dev6.dist-info}/RECORD +20 -58
  18. commands/cat/.DS_Store +0 -0
  19. commands/cat/debug_log.2025-06-05_20-24-18_123924.log.zip +0 -0
  20. commands/cat/debug_log.2025-06-10_08-45-03_929921.log.zip +0 -0
  21. commands/cat/debug_log.2025-06-11_09-57-21_247890.log.zip +0 -0
  22. commands/cat/debug_log.2025-06-12_16-14-31_212042.log.zip +0 -0
  23. commands/cat/debug_log.log +0 -1267
  24. commands/cat/solution_architect_log.log +0 -0
  25. md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +0 -254
  26. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +0 -696
  27. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +0 -254
  28. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +0 -298
  29. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +0 -608
  30. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +0 -94
  31. md_processing/dr_egeria_inbox/archive/freddie_intro.md +0 -284
  32. md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +0 -275
  33. md_processing/dr_egeria_inbox/archive/test-term.md +0 -110
  34. md_processing/dr_egeria_inbox/cat_test.md +0 -100
  35. md_processing/dr_egeria_inbox/data_designer_search_test.md +0 -11
  36. md_processing/dr_egeria_inbox/data_field.md +0 -54
  37. md_processing/dr_egeria_inbox/data_spec.md +0 -77
  38. md_processing/dr_egeria_inbox/data_spec_test.md +0 -2406
  39. md_processing/dr_egeria_inbox/data_test.md +0 -179
  40. md_processing/dr_egeria_inbox/data_test2.md +0 -376
  41. md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +0 -168
  42. md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +0 -280
  43. md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +0 -313
  44. md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +0 -1073
  45. md_processing/dr_egeria_inbox/dr_egeria_isc1.md +0 -44
  46. md_processing/dr_egeria_inbox/glossary_search_test.md +0 -40
  47. md_processing/dr_egeria_inbox/glossary_test1.md +0 -324
  48. md_processing/dr_egeria_inbox/rel.md +0 -8
  49. md_processing/dr_egeria_inbox/sb.md +0 -119
  50. md_processing/dr_egeria_inbox/solution-components.md +0 -129
  51. md_processing/dr_egeria_inbox/solution_blueprints.md +0 -118
  52. md_processing/dr_egeria_inbox/synonym_test.md +0 -42
  53. md_processing/dr_egeria_inbox/t1.md +0 -0
  54. md_processing/dr_egeria_inbox/t2.md +0 -268
  55. pyegeria/.DS_Store +0 -0
  56. {pyegeria-5.4.0.dev3.dist-info → pyegeria-5.4.0.dev6.dist-info}/LICENSE +0 -0
  57. {pyegeria-5.4.0.dev3.dist-info → pyegeria-5.4.0.dev6.dist-info}/WHEEL +0 -0
  58. {pyegeria-5.4.0.dev3.dist-info → pyegeria-5.4.0.dev6.dist-info}/entry_points.txt +0 -0
@@ -153,7 +153,7 @@ class SolutionArchitect(Client):
153
153
  segments_list.append(segment_dict)
154
154
 
155
155
  return {
156
- 'guid': guid,
156
+ 'GUID': guid,
157
157
  'qualified_name': qualified_name,
158
158
  'display_name': display_name,
159
159
  'description': description,
@@ -193,7 +193,7 @@ class SolutionArchitect(Client):
193
193
  mer = f"```mermaid\n\n{element.get('mermaidGraph', None)}\n\n```"
194
194
 
195
195
  return {
196
- 'guid': guid,
196
+ 'GUID': guid,
197
197
  'qualified_name': qualified_name,
198
198
  'display_name': display_name,
199
199
  'description': description,
@@ -232,7 +232,7 @@ class SolutionArchitect(Client):
232
232
  solution_components_md += "{" + f" {sol_comp_name}:\t {sol_comp_desc}" + " },\n"
233
233
 
234
234
  return {
235
- 'guid': guid,
235
+ 'GUID': guid,
236
236
  'qualified_name': qualified_name,
237
237
  'display_name': display_name,
238
238
  'description': description,
@@ -334,7 +334,7 @@ class SolutionArchitect(Client):
334
334
  comp_graph = element.get('mermaidGraph', None)
335
335
 
336
336
  return {
337
- 'guid': guid,
337
+ 'GUID': guid,
338
338
  'qualified_name': qualified_name,
339
339
  'display_name': display_name,
340
340
  'description': description,
@@ -860,6 +860,7 @@ class SolutionArchitect(Client):
860
860
  "forLineage": false,
861
861
  "forDuplicateProcessing": false,
862
862
  "properties": {
863
+ "class" : "InformationSupplyChainProperties",
863
864
  "qualifiedName": "add unique name here",
864
865
  "displayName": "add short name here",
865
866
  "description": "add description here",
@@ -921,6 +922,7 @@ class SolutionArchitect(Client):
921
922
  "forLineage": false,
922
923
  "forDuplicateProcessing": false,
923
924
  "properties": {
925
+ "class" : "InformationSupplyChainProperties",
924
926
  "qualifiedName": "add unique name here",
925
927
  "displayName": "add short name here",
926
928
  "description": "add description here",
@@ -977,6 +979,7 @@ class SolutionArchitect(Client):
977
979
  "forLineage": false,
978
980
  "forDuplicateProcessing": false,
979
981
  "properties": {
982
+ "class" : "InformationSupplyChainSegmentProperties",
980
983
  "qualifiedName": "add unique name here",
981
984
  "displayName": "add short name here",
982
985
  "description": "add description here",
@@ -1043,6 +1046,7 @@ class SolutionArchitect(Client):
1043
1046
  "forLineage": false,
1044
1047
  "forDuplicateProcessing": false,
1045
1048
  "properties": {
1049
+ "class" : "InformationSupplyChainSegmentProperties",
1046
1050
  "qualifiedName": "add unique name here",
1047
1051
  "displayName": "add short name here",
1048
1052
  "description": "add description here",
@@ -1105,6 +1109,7 @@ class SolutionArchitect(Client):
1105
1109
  "forLineage": false,
1106
1110
  "forDuplicateProcessing": false,
1107
1111
  "properties": {
1112
+ "class" : "InformationSupplyChainSegmentProperties",
1108
1113
  "qualifiedName": "add unique name here",
1109
1114
  "displayName": "add short name here",
1110
1115
  "description": "add description here",
@@ -1170,6 +1175,7 @@ class SolutionArchitect(Client):
1170
1175
  "forLineage": false,
1171
1176
  "forDuplicateProcessing": false,
1172
1177
  "properties": {
1178
+ "class" : "InformationSupplyChainSegmentProperties",
1173
1179
  "qualifiedName": "add unique name here",
1174
1180
  "displayName": "add short name here",
1175
1181
  "description": "add description here",
@@ -1249,6 +1255,7 @@ class SolutionArchitect(Client):
1249
1255
  "forLineage": false,
1250
1256
  "forDuplicateProcessing": false,
1251
1257
  "properties": {
1258
+ "class": "InformationSupplyChainLinkProperties",
1252
1259
  "label": "add label here",
1253
1260
  "description": "add description here",
1254
1261
  "effectiveFrom": {{isotime}},
@@ -1300,6 +1307,7 @@ class SolutionArchitect(Client):
1300
1307
  "forLineage": false,
1301
1308
  "forDuplicateProcessing": false,
1302
1309
  "properties": {
1310
+ "class": "InformationSupplyChainLinkProperties",
1303
1311
  "label": "add label here",
1304
1312
  "description": "add description here",
1305
1313
  "effectiveFrom": {{isotime}},
@@ -1628,6 +1636,21 @@ class SolutionArchitect(Client):
1628
1636
  There is a problem adding the element properties to the metadata repository or
1629
1637
  UserNotAuthorizedException
1630
1638
  the requesting user is not authorized to issue this request.
1639
+
1640
+ Notes
1641
+ -----
1642
+
1643
+ {
1644
+ "class" : "FilterRequestBody",
1645
+ "asOfTime" : "{{$isoTimestamp}}",
1646
+ "effectiveTime" : "{{$isoTimestamp}}",
1647
+ "forLineage" : false,
1648
+ "forDuplicateProcessing" : false,
1649
+ "limitResultsByStatus" : ["ACTIVE"],
1650
+ "sequencingOrder" : "PROPERTY_ASCENDING",
1651
+ "sequencingProperty" : "qualifiedName"
1652
+ }
1653
+
1631
1654
  """
1632
1655
 
1633
1656
  possible_query_params = query_string(
@@ -1702,6 +1725,21 @@ class SolutionArchitect(Client):
1702
1725
  There is a problem adding the element properties to the metadata repository or
1703
1726
  UserNotAuthorizedException
1704
1727
  the requesting user is not authorized to issue this request.
1728
+
1729
+ Notes
1730
+ -----
1731
+
1732
+ {
1733
+ "class" : "FilterRequestBody",
1734
+ "asOfTime" : "{{$isoTimestamp}}",
1735
+ "effectiveTime" : "{{$isoTimestamp}}",
1736
+ "forLineage" : false,
1737
+ "forDuplicateProcessing" : false,
1738
+ "limitResultsByStatus" : ["ACTIVE"],
1739
+ "sequencingOrder" : "PROPERTY_ASCENDING",
1740
+ "sequencingProperty" : "qualifiedName"
1741
+ }
1742
+
1705
1743
  """
1706
1744
 
1707
1745
  loop = asyncio.get_event_loop()
@@ -2011,6 +2049,7 @@ class SolutionArchitect(Client):
2011
2049
  },
2012
2050
  "parentAtEnd1": false,
2013
2051
  "properties": {
2052
+ "class" : "SolutionBlueprintProperties",
2014
2053
  "qualifiedName": "add unique name here",
2015
2054
  "displayName": "add short name here",
2016
2055
  "description": "add description here",
@@ -2083,6 +2122,7 @@ class SolutionArchitect(Client):
2083
2122
  },
2084
2123
  "parentAtEnd1": false,
2085
2124
  "properties": {
2125
+ "class" : "SolutionBlueprintProperties",
2086
2126
  "qualifiedName": "add unique name here",
2087
2127
  "displayName": "add short name here",
2088
2128
  "description": "add description here",
@@ -2292,6 +2332,7 @@ class SolutionArchitect(Client):
2292
2332
  "forLineage": false,
2293
2333
  "forDuplicateProcessing": false,
2294
2334
  "properties": {
2335
+ "class": "SolutionBlueprintCompositionProperties",
2295
2336
  "role": "add role here",
2296
2337
  "description": "add description here",
2297
2338
  "effectiveFrom": {{isotime}},
@@ -2343,6 +2384,7 @@ class SolutionArchitect(Client):
2343
2384
  "forLineage": false,
2344
2385
  "forDuplicateProcessing": false,
2345
2386
  "properties": {
2387
+ "class": "SolutionBlueprintCompositionProperties",
2346
2388
  "role": "add role here",
2347
2389
  "description": "add description here",
2348
2390
  "effectiveFrom": {{isotime}},
@@ -2807,10 +2849,11 @@ class SolutionArchitect(Client):
2807
2849
  "forLineage": false,
2808
2850
  "forDuplicateProcessing": false,
2809
2851
  "properties": {
2852
+ "class" : "SolutionBlueprintProperties",
2810
2853
  "qualifiedName": "add unique name here",
2811
2854
  "displayName": "add short name here",
2812
2855
  "description": "add description here",
2813
- "version": "add version identifier here",
2856
+ "versionIdentifier": "add version identifier here",
2814
2857
  "additionalProperties": {
2815
2858
  "property1": "propertyValue1",
2816
2859
  "property2": "propertyValue2"
@@ -2867,10 +2910,11 @@ class SolutionArchitect(Client):
2867
2910
  "forLineage": false,
2868
2911
  "forDuplicateProcessing": false,
2869
2912
  "properties": {
2913
+ "class" : "SolutionBlueprintProperties",
2870
2914
  "qualifiedName": "add unique name here",
2871
2915
  "displayName": "add short name here",
2872
2916
  "description": "add description here",
2873
- "version": "add version identifier here",
2917
+ "versionIdentifier": "add version identifier here",
2874
2918
  "purposes": ["purpose1", "purpose2"],
2875
2919
  "additionalProperties": {
2876
2920
  "property1": "propertyValue1",
@@ -2925,6 +2969,20 @@ class SolutionArchitect(Client):
2925
2969
  There is a problem adding the element properties to the metadata repository or
2926
2970
  UserNotAuthorizedException
2927
2971
  the requesting user is not authorized to issue this request.
2972
+
2973
+ Notes:
2974
+ {
2975
+ "class" : "FilterRequestBody",
2976
+ "filter" : "add name",
2977
+ "asOfTime" : "{{$isoTimestamp}}",
2978
+ "effectiveTime" : "{{$isoTimestamp}}",
2979
+ "forLineage" : false,
2980
+ "forDuplicateProcessing" : false,
2981
+ "limitResultsByStatus" : ["ACTIVE"],
2982
+ "sequencingOrder" : "PROPERTY_ASCENDING",
2983
+ "sequencingProperty" : "qualifiedName"
2984
+ }
2985
+
2928
2986
  """
2929
2987
 
2930
2988
  possible_query_params = query_string(
@@ -2995,6 +3053,20 @@ class SolutionArchitect(Client):
2995
3053
  There is a problem adding the element properties to the metadata repository or
2996
3054
  UserNotAuthorizedException
2997
3055
  the requesting user is not authorized to issue this request.
3056
+
3057
+ Notes:
3058
+ {
3059
+ "class" : "FilterRequestBody",
3060
+ "filter" : "add name",
3061
+ "asOfTime" : "{{$isoTimestamp}}",
3062
+ "effectiveTime" : "{{$isoTimestamp}}",
3063
+ "forLineage" : false,
3064
+ "forDuplicateProcessing" : false,
3065
+ "limitResultsByStatus" : ["ACTIVE"],
3066
+ "sequencingOrder" : "PROPERTY_ASCENDING",
3067
+ "sequencingProperty" : "qualifiedName"
3068
+ }
3069
+
2998
3070
  """
2999
3071
 
3000
3072
  loop = asyncio.get_event_loop()
@@ -3504,6 +3576,201 @@ class SolutionArchitect(Client):
3504
3576
  loop = asyncio.get_event_loop()
3505
3577
  loop.run_until_complete(self._async_detach_sub_component(parent_component_guid, member_component_guid, body))
3506
3578
 
3579
+
3580
+ async def _async_link_solution_linking_wire(self, component1_guid: str, component2_guid: str, body: dict) -> None:
3581
+ """ Attach a solution component to a solution component as a peer in a solution. Async Version.
3582
+
3583
+ Parameters
3584
+ ----------
3585
+ component1_guid: str
3586
+ GUID of the first component to link.
3587
+ component2_guid: str
3588
+ GUID of the second component to link.
3589
+ body: dict
3590
+ The body describing the link.
3591
+
3592
+ Returns
3593
+ -------
3594
+ None
3595
+
3596
+ Raises
3597
+ ------
3598
+ InvalidParameterException
3599
+ one of the parameters is null or invalid or
3600
+ PropertyServerException
3601
+ There is a problem adding the element properties to the metadata repository or
3602
+ UserNotAuthorizedException
3603
+ the requesting user is not authorized to issue this request.
3604
+
3605
+ Notes
3606
+ ----
3607
+
3608
+ Body structure:
3609
+ {
3610
+ "class": "RelationshipRequestBody",
3611
+ "externalSourceGUID": "add guid here",
3612
+ "externalSourceName": "add qualified name here",
3613
+ "properties" : {
3614
+ "class" : "SolutionLinkingWireProperties",
3615
+ "label" : "",
3616
+ "description" : "",
3617
+ "informationSupplyChainSegmentGUIDs" : []
3618
+ },
3619
+ "effectiveTime" : "{{$isoTimestamp}}",
3620
+ "forLineage" : false,
3621
+ "forDuplicateProcessing" : false
3622
+ }
3623
+ """
3624
+ validate_guid(component1_guid)
3625
+ validate_guid(component2_guid)
3626
+ url = (f"{self.platform_url}/servers/{self.view_server}/api/open-metadata/solution-architect/"
3627
+ f"solution-components/{component1_guid}/wired-to/{component2_guid}/attach")
3628
+ if body:
3629
+ await self._async_make_request("POST", url, body_slimmer(body))
3630
+ else:
3631
+ await self._async_make_request("POST", url)
3632
+
3633
+
3634
+ def link_solution_linking_wire(self, component1_guid: str, component2_guid: str, body: dict) -> None:
3635
+ """ Attach a solution component to a solution component as a peer in a solution.
3636
+
3637
+ Parameters
3638
+ ----------
3639
+ component1_guid: str
3640
+ GUID of the first component to link.
3641
+ component2_guid: str
3642
+ GUID of the second component to link.
3643
+ body: dict
3644
+ The body describing the link.
3645
+
3646
+ Returns
3647
+ -------
3648
+ None
3649
+
3650
+ Raises
3651
+ ------
3652
+ InvalidParameterException
3653
+ one of the parameters is null or invalid or
3654
+ PropertyServerException
3655
+ There is a problem adding the element properties to the metadata repository or
3656
+ UserNotAuthorizedException
3657
+ the requesting user is not authorized to issue this request.
3658
+
3659
+ Notes
3660
+ ----
3661
+
3662
+ Body structure:
3663
+ {
3664
+ "class" : "RelationshipRequestBody",
3665
+ "externalSourceGUID": "add guid here",
3666
+ "externalSourceName": "add qualified name here",
3667
+ "properties" : {
3668
+ "class" : "SolutionLinkingWireProperties",
3669
+ "label" : "",
3670
+ "description" : "",
3671
+ "informationSupplyChainSegmentGUIDs" : []
3672
+ },
3673
+ "effectiveTime" : "{{$isoTimestamp}}",
3674
+ "forLineage" : false,
3675
+ "forDuplicateProcessing" : false
3676
+ }
3677
+ """
3678
+ loop = asyncio.get_event_loop()
3679
+ loop.run_until_complete(self._async_link_solution_linking_wire(component1_guid, component2_guid, body))
3680
+
3681
+ async def _async_detach_solution_linking_wire(self, component1_guid: str, component2_guid: str,
3682
+ body: dict = None) -> None:
3683
+ """ Detach a solution component from a peer solution component.
3684
+ Async Version.
3685
+
3686
+ Parameters
3687
+ ----------
3688
+ component1_guid: str
3689
+ GUID of the first component to unlink.
3690
+ component2_guid: str
3691
+ GUID of the second component to unlink.
3692
+ body: dict
3693
+ The body describing the request.
3694
+
3695
+ Returns
3696
+ -------
3697
+ None
3698
+
3699
+ Raises
3700
+ ------
3701
+ InvalidParameterException
3702
+ one of the parameters is null or invalid or
3703
+ PropertyServerException
3704
+ There is a problem adding the element properties to the metadata repository or
3705
+ UserNotAuthorizedException
3706
+ the requesting user is not authorized to issue this request.
3707
+
3708
+ Notes
3709
+ ----
3710
+
3711
+ Body structure:
3712
+ {
3713
+ "class" : "MetadataSourceRequestBody",
3714
+ "externalSourceGUID": "add guid here",
3715
+ "externalSourceName": "add qualified name here",
3716
+ "effectiveTime" : "{{$isoTimestamp}}",
3717
+ "forLineage" : false,
3718
+ "forDuplicateProcessing" : false
3719
+ }
3720
+
3721
+ """
3722
+ validate_guid(component1_guid)
3723
+ validate_guid(component2_guid)
3724
+ url = (f"{self.platform_url}/servers/{self.view_server}/api/open-metadata/solution-architect/"
3725
+ f"solution-components/{component1_guid}/wired-to/{component2_guid}/detach")
3726
+
3727
+ await self._async_make_request("POST", url, body_slimmer(body))
3728
+
3729
+ def detach_solution_linking_wire(self, component1_guid: str, component2_guid: str, body: dict = None) -> None:
3730
+ """ Detach a solution component from a peer solution component.
3731
+ Async Version.
3732
+
3733
+ Parameters
3734
+ ----------
3735
+ component1_guid: str
3736
+ GUID of the first component to unlink.
3737
+ component2_guid: str
3738
+ GUID of the second component to unlink.
3739
+ body: dict
3740
+ The body describing the request.
3741
+
3742
+ Returns
3743
+ -------
3744
+ None
3745
+
3746
+ Raises
3747
+ ------
3748
+ InvalidParameterException
3749
+ one of the parameters is null or invalid or
3750
+ PropertyServerException
3751
+ There is a problem adding the element properties to the metadata repository or
3752
+ UserNotAuthorizedException
3753
+ the requesting user is not authorized to issue this request.
3754
+
3755
+ Notes
3756
+ ----
3757
+
3758
+ Body structure:
3759
+ {
3760
+ "class" : "MetadataSourceRequestBody",
3761
+ "externalSourceGUID": "add guid here",
3762
+ "externalSourceName": "add qualified name here",
3763
+ "effectiveTime" : "{{$isoTimestamp}}",
3764
+ "forLineage" : false,
3765
+ "forDuplicateProcessing" : false
3766
+ }
3767
+
3768
+ """
3769
+ loop = asyncio.get_event_loop()
3770
+ loop.run_until_complete(self._async_detach_solution_linking_wire(component1_guid, component2_guid, body))
3771
+
3772
+
3773
+
3507
3774
  async def _async_update_solution_component(self, guid: str, body: dict,
3508
3775
  replace_all_properties: bool = False) -> None:
3509
3776
  """ Update the properties of a solution component. Async Version.
@@ -4262,7 +4529,7 @@ class SolutionArchitect(Client):
4262
4529
 
4263
4530
  Body structure:
4264
4531
  {
4265
- "class": "NewSolutionBlueprintRequestBody",
4532
+ "class": "NewActorRoleRequestBody",
4266
4533
  "externalSourceGUID": "add guid here",
4267
4534
  "externalSourceName": "add qualified name here",
4268
4535
  "effectiveTime": {{isotime}},
@@ -4284,10 +4551,11 @@ class SolutionArchitect(Client):
4284
4551
  },
4285
4552
  "parentAtEnd1": false,
4286
4553
  "properties": {
4554
+ "class" : "ActorRoleProperties",
4287
4555
  "qualifiedName": "add unique name here",
4288
- "displayName": "add short name here",
4556
+ "name": "add short name here",
4289
4557
  "description": "add description here",
4290
- "version": "add version here",
4558
+ ######## is this right?
4291
4559
  "roleID": "string",
4292
4560
  "scope": "string",
4293
4561
  "title": "string",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.4.0.dev3
3
+ Version: 5.4.0.dev6
4
4
  Summary: A python client for Egeria
5
5
  License: Apache 2.0
6
6
  Keywords: egeria,metadata,governance
@@ -1,14 +1,8 @@
1
- commands/cat/.DS_Store,sha256=RY8U0pzFVjHVb0B2edAfhmtpMWmKhR-YSI4WoPy4apc,6148
2
1
  commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
3
2
  commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
4
3
  commands/cat/__init__.py,sha256=Ps4MxYlYN-ZX1qaSTFwnqgDZTaqUkN35JTOpZ1TBD1Q,451
5
- commands/cat/debug_log.2025-06-05_20-24-18_123924.log.zip,sha256=3dFYhY4odrEdMK4Q4N8BCE3_bE1Z2DnuSpwiKspfJFA,27178
6
- commands/cat/debug_log.2025-06-10_08-45-03_929921.log.zip,sha256=l941eD7-V2pz285MpxJjvshyA0A974fKQ06j0nenqCI,59582
7
- commands/cat/debug_log.2025-06-11_09-57-21_247890.log.zip,sha256=ZdLKjVAX6k3nhuhSk0Y06sLYO6k2ltLzao7Qq47tK4Q,18100
8
- commands/cat/debug_log.2025-06-12_16-14-31_212042.log.zip,sha256=yKICViTcbK1tbmlHDBWGq-2tEJxXkMoLf_kwpmPcDMo,3378
9
- commands/cat/debug_log.log,sha256=UK1dfhaFiLT7M0t2n4XSlMmT80181aAazJ5WCAFz2l4,105673
10
4
  commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
11
- commands/cat/dr_egeria_md.py,sha256=Eqw_6aSkGL8l3RseC2hOnU672aYg6ijPOr7ItZCakMA,15829
5
+ commands/cat/dr_egeria_md.py,sha256=N7vrQN_oOq-R6PajbQ_7fdsk0aXW5-QQJd5IfqoKkPw,16700
12
6
  commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
13
7
  commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
14
8
  commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
@@ -19,8 +13,8 @@ commands/cat/glossary_actions.py,sha256=zK26fNiv-lpWUP8tHC3wTmdQ6L0_XxlmuNGUyrnS
19
13
  commands/cat/list_assets.py,sha256=CdJ2coKvvQv2VwJO0Sp9Eg9Fu_uvpC21tgjrdtT9Yz4,6315
20
14
  commands/cat/list_categories.py,sha256=DTKE3yrt3N2EIjCGscxrz-pSREqmch7aFqsVFm-3u7o,7841
21
15
  commands/cat/list_cert_types.py,sha256=HmrTks0SSYgSMsYz3LqfX5kwDQ6D9KMcynoR_xlWtnE,7137
22
- commands/cat/list_collections.py,sha256=oO7AZcaZeLJ5dAcOTZJMpQyP9BugBbQPO8oq4EtgcP8,8318
23
- commands/cat/list_data_designer.py,sha256=_RGkjNGVjjJeAmnsCOgLn-sef5XELQ1HlH6k52GICno,6319
16
+ commands/cat/list_collections.py,sha256=GyRKiSHBLVVkyYDMIsUeVmpmDXNXHRY4C9kMqtX07qc,8315
17
+ commands/cat/list_data_designer.py,sha256=Bpix52CVdV1xZFo-07N8W30vdoDcHYT91jKVRTxQgQ0,6720
24
18
  commands/cat/list_data_structures_full.py,sha256=E9PY_AU1lzGSqUwy711Bjd5uMfV41kpmNPzhdf0nZjs,8642
25
19
  commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQepHHlS-w-D8,8258
26
20
  commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
@@ -33,7 +27,6 @@ commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG
33
27
  commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12076
34
28
  commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
35
29
  commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
36
- commands/cat/solution_architect_log.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
30
  commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
38
31
  commands/cli/egeria.py,sha256=CKqJiwu44Ya6IgFPgjVpoP2kUZmohrIqXs4SiM1ckHo,52096
39
32
  commands/cli/egeria_cat.py,sha256=HqmtUpSX1pXiItVQC0zGEXzHdw_y_-rzy4W8dWJof8M,18143
@@ -100,51 +93,20 @@ commands/tech/list_tech_templates.py,sha256=5hhDJJjrqGyWDPPcFzFeFs-4rsal1M2Bl7EU
100
93
  commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOnKZ-ySM-lSdgYn8,6315
101
94
  commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
102
95
  commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
103
- md_processing/__init__.py,sha256=c0m0rak6b5ReJO4N8jx8GpGWh6c301vcVxzNbq8jQAA,5089
104
- md_processing/data/commands.json,sha256=8LGGMDWnmpVq53oE6FbWoqM91Or94ZFxwpa7AJUKPkw,235726
105
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md,sha256=25iXGRIkGUiDbfop8Rpd-QRdsjmI3Jo-S4yzfzAmeDE,8549
106
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md,sha256=WY33hougDWyrDRtk8-4Sm2z4CNHG6u1jKNUZX_QbpG8,27000
107
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md,sha256=gI1DmLfqUI9FtVVynYJe0NqSr4PJ0Ej--BXetyA49js,9871
108
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md,sha256=xXBt7J61eLHpVW41OoIPztsyn48U9HLqbLG5h8s9wLw,13666
109
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md,sha256=wlbFOxDn7jiTr43hdwXw_M894kybCQgdSmGR8QC8PWw,24311
110
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md,sha256=JPIDeQjKwXgHhj9FE4oOfRmcZROvH9N9EUq-rbVBZ1E,1381
111
- md_processing/dr_egeria_inbox/archive/freddie_intro.md,sha256=7srXdwdVO4phWSp0nhbdt6U8KgVG2WCSKfLCYzRHO-0,7437
112
- md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md,sha256=JRfOtByc57-En5rp5z-g1l93FIbem3ST7plItWr6IKY,7067
113
- md_processing/dr_egeria_inbox/archive/test-term.md,sha256=9XKBBrpgMBbXB-DRVgyhR4lwy4Z3zX1Tp9H601y06qs,1529
114
- md_processing/dr_egeria_inbox/cat_test.md,sha256=Xcz8Qwak-TEj-JnXoqZTpX3sy501tRqvFVllB14QX6w,1068
115
- md_processing/dr_egeria_inbox/data_designer_search_test.md,sha256=Fn0GJYShbA9sMn_q1iipg9P5f8C5RuTZ-XLF2mQQusA,73
116
- md_processing/dr_egeria_inbox/data_field.md,sha256=jbjihghaBRAd_14n3LO1-vGCPzS3aNpNrntv1eCLKXY,702
117
- md_processing/dr_egeria_inbox/data_spec.md,sha256=3VrV2pf0czFzYcWonn5L5W1NZG1CgSBViI0m1y0NBFA,1119
118
- md_processing/dr_egeria_inbox/data_spec_test.md,sha256=pSRtK0l0vygBv63rsy1Jq7FfyFqa1WQxolhIor0uWCc,16838
119
- md_processing/dr_egeria_inbox/data_test.md,sha256=PNLCMXEjTl3gW7LodpGgGgM2XVT0aXcDSqNgSTq1P_I,2802
120
- md_processing/dr_egeria_inbox/data_test2.md,sha256=QVf859O7gm8l40Krb5p5oOYWA0DlGiEAR2-xn0onef4,4745
121
- md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md,sha256=LcsXBuzL_I7972WRXs7-SGMZTfuYVWPtfTVIm995wuk,5557
122
- md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md,sha256=0nWv-AAfdkoliy6i0xcwGb-LUb7c_BhU2qi7CssP1L0,10415
123
- md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md,sha256=9Zp04P4zNHxvviy8dJgjEB0AyYB9VwVG05POzlFnvEk,15388
124
- md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md,sha256=ujoKrf54EOJ9Z32QWneWJL8f6gZ32GxCdG76cYCvwBk,40559
125
- md_processing/dr_egeria_inbox/dr_egeria_isc1.md,sha256=22mus2pnS55P_LTcnE6AnjSYjnEOB7XhLqEDue4oOIM,449
96
+ md_processing/__init__.py,sha256=k9qozzeNFsjgMMcNpM1ibPqOVJCfy-3DEmi2dmSzGqM,5384
97
+ md_processing/data/commands.json,sha256=tEbshY56hczPErVDNvTt5SKGwZtpNDd8Qfa_ZjLDv1s,240067
126
98
  md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
127
- md_processing/dr_egeria_inbox/glossary_search_test.md,sha256=AC_hyZHizAaqBp0yGK1WLyxkorxcWg8eKZlGHFGWQxE,294
128
- md_processing/dr_egeria_inbox/glossary_test1.md,sha256=H92jI2i25yXrHTQLfT-o5K4BL86Vn-pyJNsQbFwWCZE,4771
129
- md_processing/dr_egeria_inbox/rel.md,sha256=stIzGh1FTXuCW_GniFKS1_mtmQPTwA1a1OmYeP5TszQ,97
130
- md_processing/dr_egeria_inbox/sb.md,sha256=aY5QlVMxi5lh91ttr8bMCbl2z4qmsIN6XJ4SojFz8VU,1945
131
- md_processing/dr_egeria_inbox/solution-components.md,sha256=jr6WeNWE2tTRWesEJc6Gmylx1nObKHyD_bcilAVwems,2126
132
- md_processing/dr_egeria_inbox/solution_blueprints.md,sha256=9__-MhIf7u4am_YtV3UsMSKocqzoJrg8qTpmBo0rJUQ,2018
133
- md_processing/dr_egeria_inbox/synonym_test.md,sha256=lUAfT8E5gT4ml7gMI_G_nB3gsnimuaUEB6crMar3-8w,430
134
- md_processing/dr_egeria_inbox/t1.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- md_processing/dr_egeria_inbox/t2.md,sha256=FP9xUKlP89Y92_9YESChyglS6r8YgvBGgPMTSWI7m_E,6950
136
99
  md_processing/md_commands/__init__.py,sha256=ssEojzFlSYtY2bHqqOoKo8PFaANZ_kq_gIbtlXnuc2s,93
137
- md_processing/md_commands/data_designer_commands.py,sha256=jlxXW5C7Xqw4ulL9wtpJgR33yMplFlZffIlU5njD8b4,80490
138
- md_processing/md_commands/glossary_commands.py,sha256=c4o0MTsdtTTMkPk5LNBgDnCI8PqQn_y_wkcuEYL59yg,54852
100
+ md_processing/md_commands/data_designer_commands.py,sha256=IezRfoXT-3q4EKdI9el4uMGZYY35FTK-AcKg7yJXo1g,91752
101
+ md_processing/md_commands/glossary_commands.py,sha256=QqcWSk2pXB6VWiqy75Hvzme79U10scbwm1i4sX4-9jg,53376
139
102
  md_processing/md_commands/project_commands.py,sha256=d4kF-ldz6vqZy50ajxWLoupZs4wJvBShJScDqfH8O4U,8050
140
- md_processing/md_commands/solution_architect_commands.py,sha256=k03Abg8kfQ3mqitX8yy6Ax30pTt4iaheqIdxGLjUmbI,51006
103
+ md_processing/md_commands/solution_architect_commands.py,sha256=XOLmlySS3cuqV8r2AcTuuPrt5kctKQrR-1sfspqx0yY,51000
141
104
  md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
142
- md_processing/md_processing_utils/common_md_proc_utils.py,sha256=fS4PCczYKyI89dHh3sqCzsHiT_n1swGfw6Fq9t2nuHU,41456
105
+ md_processing/md_processing_utils/common_md_proc_utils.py,sha256=ZBATa8Ni_q3WJs755SaOttSoTN9epJ5pgvEjWXG7_MI,42295
143
106
  md_processing/md_processing_utils/common_md_utils.py,sha256=GQ4FKJ3n_NckFgoGwE7FIlmYqaWClaFJ-1aK3PxiPy8,5850
144
107
  md_processing/md_processing_utils/extraction_utils.py,sha256=780oJsXvW50kX2d64FQIwJQTigQuNiLVRitAEzComQM,20066
145
- md_processing/md_processing_utils/md_processing_constants.py,sha256=awUmHamEB-LdcjjmpGdIb0y8dEkXWJNL_g7UUIg182M,6648
108
+ md_processing/md_processing_utils/md_processing_constants.py,sha256=SAgipsb93iQ387Kl8E4bERBfIYhAF2nDwV2ui2gPUBs,6854
146
109
  md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
147
- pyegeria/.DS_Store,sha256=aExDotxdVFK-8C6Es8SJjvtOsGrm-SknQULFzsFDZCQ,6148
148
110
  pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
149
111
  pyegeria/__init__.py,sha256=NgPs08IQIH25GlvFXjPGDxKB6ln44lAS0EWHg4LJSh4,30874
150
112
  pyegeria/_client.py,sha256=tG2rchGpBkK7Y3K6KGAYBaQhVKvVuTo2gUTzNjd9uhI,33383
@@ -155,10 +117,10 @@ pyegeria/_validators.py,sha256=vP9nuZwucnCo_LrPU7hkitpWzaych5bTZEKE58TaTnQ,12726
155
117
  pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
156
118
  pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
157
119
  pyegeria/classification_manager_omvs.py,sha256=EBWjdx_C999bRu2-INL8RZxZ-wz92mzVqVBQ6mkyGM0,187228
158
- pyegeria/collection_manager_omvs.py,sha256=Mz-DPXBI2fuxWQOPmtMdjXE6tMsIJnnzAazP1A5YXwc,128456
120
+ pyegeria/collection_manager_omvs.py,sha256=GCiItk_zO206gaR5Dj3Q-5zJ5corymZhjNjEaUFzIB4,130729
159
121
  pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
160
122
  pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
161
- pyegeria/data_designer_omvs.py,sha256=EM931M_dl4ULis2n1Oegbp-kxkp5gR81TG0x4MygtDs,196559
123
+ pyegeria/data_designer_omvs.py,sha256=q4NC6Sbf9rQvbMMCOSTJZPx9KQSqU5QstYfaJKWrOB0,202519
162
124
  pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
163
125
  pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
164
126
  pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
@@ -167,7 +129,7 @@ pyegeria/egeria_my_client.py,sha256=eOKLk2zdI6FHZnhAimfR_0yNdBjpUgD41dJZcJODcqE,
167
129
  pyegeria/egeria_tech_client.py,sha256=FedfavxepFvy6IMSo1YBHh4F_Ahid8uoUsHoSbq9ywM,4200
168
130
  pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
169
131
  pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
170
- pyegeria/glossary_browser_omvs.py,sha256=j6CJt1_O42OT3bVzwwiAoqsCtH5urC5zfghEl0tO8Vg,167000
132
+ pyegeria/glossary_browser_omvs.py,sha256=Jb2Tt2qNjnoWQNBDMdZiuQffH6nC4lKekZNEJCiW5BE,166966
171
133
  pyegeria/glossary_manager_omvs.py,sha256=aGYZFuzWrPmPLLNwkNpV7-FsalqwDR7gyBzgdubnM04,87989
172
134
  pyegeria/governance_officer_omvs.py,sha256=4vPDK7PjPvm81jRaCNvOzvqMe88Q0g7Qc2e6-tbw8lg,86333
173
135
  pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
@@ -177,19 +139,19 @@ pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho
177
139
  pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
178
140
  pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
179
141
  pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
180
- pyegeria/output_formatter.py,sha256=634FbHs_l7AX33kBGwv0Gh1B5NV_cyhOOxT6p3uGzlA,15603
142
+ pyegeria/output_formatter.py,sha256=X8zL14sp-0LwFCfB4RDPC4dS2quwN1iP8n5EBDnt2kI,16141
181
143
  pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
182
144
  pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
183
145
  pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
184
146
  pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
185
147
  pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
186
- pyegeria/solution_architect_omvs.py,sha256=eskhA9dkH7X4LcZTebMQE9fkKNhsWOAuKe5HHIhC8Og,204696
148
+ pyegeria/solution_architect_omvs.py,sha256=qQq4s_0V83BeAcUVFmARXjA5S_VwaELDbctmWbpG8Bk,214402
187
149
  pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
188
150
  pyegeria/utils.py,sha256=fhSN5yOb3-Yelwt9WpBkWRmP5u7I9Jr-M27H0dD-G14,5871
189
151
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
190
152
  pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
191
- pyegeria-5.4.0.dev3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
192
- pyegeria-5.4.0.dev3.dist-info/METADATA,sha256=FpIEeRR6K1-dzmw_g_la-xg4vr7mlPNhZ_jovaC8oyM,2799
193
- pyegeria-5.4.0.dev3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
194
- pyegeria-5.4.0.dev3.dist-info/entry_points.txt,sha256=UigZmPobfP9Rkz3PfjWUrJbKjImUeX00iOz6lR_wP5Q,6247
195
- pyegeria-5.4.0.dev3.dist-info/RECORD,,
153
+ pyegeria-5.4.0.dev6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
154
+ pyegeria-5.4.0.dev6.dist-info/METADATA,sha256=Su0nKlGjHTpy6GIb5hLu9X6fKIG7Cngs1PTDGyy-LmA,2799
155
+ pyegeria-5.4.0.dev6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
156
+ pyegeria-5.4.0.dev6.dist-info/entry_points.txt,sha256=UigZmPobfP9Rkz3PfjWUrJbKjImUeX00iOz6lR_wP5Q,6247
157
+ pyegeria-5.4.0.dev6.dist-info/RECORD,,
commands/cat/.DS_Store DELETED
Binary file