pyegeria 0.8.4__py3-none-any.whl → 0.8.4.2__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.
@@ -62,7 +62,7 @@ def display_archive_list(
62
62
  def generate_table() -> Table:
63
63
  """Make a new table."""
64
64
  table = Table(
65
- title=f"Project List: Egeria Archvies @ {time.asctime()}",
65
+ title=f"Archive List @ {time.asctime()}",
66
66
  header_style="white on dark_blue",
67
67
  show_lines=True,
68
68
  box=box.ROUNDED,
pyegeria/__init__.py CHANGED
@@ -87,8 +87,7 @@ from .egeria_client import Egeria
87
87
  # the use of custom connectors and templates.
88
88
  #
89
89
  #
90
- global TEMPLATE_GUIDS, INTEGRATION_GUIDS
91
-
90
+ global template_guids, integration_guids
92
91
  TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
93
92
  TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
94
93
  TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
@@ -819,7 +819,8 @@ class CollectionManager(Client):
819
819
  Parameters
820
820
  ----------
821
821
  classification_name: str
822
- Type of collection to create; e.g RootCollection, Folder, Set, DigitalProduct, etc.
822
+ Type of collection to create; e.g RootCollection, Folder, ResultsSet, DigitalProduct, HomeCollection,
823
+ RecentAccess, WorkItemList, etc.
823
824
  anchor_guid: str
824
825
  The unique identifier of the element that should be the anchor for the new element. Set to null if no
825
826
  anchor, or if this collection is to be its own anchor.
@@ -915,8 +916,10 @@ class CollectionManager(Client):
915
916
 
916
917
  Parameters
917
918
  ----------
919
+
918
920
  classification_name: str
919
- Type of collection to create; e.g RootCollection, Folder, Set, DigitalProduct, etc.
921
+ Type of collection to create; e.g RootCollection, Folder, ResultsSet, DigitalProduct, HomeCollection,
922
+ RecentAccess, WorkItemList, etc.
920
923
  anchor_guid: str
921
924
  The unique identifier of the element that should be the anchor for the new element.
922
925
  Set to null if no anchor, or if this collection is to be its own anchor.
pyegeria/egeria_client.py CHANGED
@@ -42,6 +42,12 @@ class Egeria(
42
42
  RuntimeManager,
43
43
  ServerOps,
44
44
  FullServerConfig,
45
+ ActionAuthor,
46
+ AutomatedCuration,
47
+ ClassificationManager,
48
+ RegisteredInfo,
49
+ # TemplateManager,
50
+ ValidMetadataManager,
45
51
  ):
46
52
  """
47
53
  Client to issue Runtime status requests.
@@ -982,9 +982,8 @@ class RuntimeManager(Client):
982
982
 
983
983
  Parameters
984
984
  ----------
985
- filter : str, opt
986
- Filter specifies the kind of deployed implementation type of the platforms to return information for.
987
- If the value is None, we will default to the "OMAG Server Platform".
985
+ server_guid: str
986
+ Identity of the server to report on.
988
987
 
989
988
  server : str, optional
990
989
  The name of the server to get governance engine summaries from. If not provided, the default server name
@@ -994,7 +993,7 @@ class RuntimeManager(Client):
994
993
  Returns
995
994
  -------
996
995
  Response
997
- A lit of json dict with the platform reports.
996
+ A list of json dict with the platform reports.
998
997
 
999
998
  Raises
1000
999
  ------
@@ -1019,9 +1018,8 @@ class RuntimeManager(Client):
1019
1018
 
1020
1019
  Parameters
1021
1020
  ----------
1022
- filter : str, opt
1023
- Filter specifies the kind of deployed implementation type of the platforms to return information for.
1024
- If the value is None, we will default to the "OMAG Server Platform".
1021
+ server_guid: str
1022
+ Identity of the server to report on.
1025
1023
 
1026
1024
  server : str, optional
1027
1025
  The name of the server to get governance engine summaries from. If not provided, the default server name
@@ -1030,7 +1028,7 @@ class RuntimeManager(Client):
1030
1028
  Returns
1031
1029
  -------
1032
1030
  Response
1033
- A lit of json dict with the platform reports.
1031
+ A list of json dict with the platform reports.
1034
1032
 
1035
1033
  Raises
1036
1034
  ------
@@ -1044,3 +1042,35 @@ class RuntimeManager(Client):
1044
1042
  self._async_get_server_report(server_guid, server)
1045
1043
  )
1046
1044
  return response
1045
+
1046
+ #
1047
+ # Activate
1048
+ #
1049
+ async def _async_activate_with_stored_config(
1050
+ self, server_guid: str, server: str = None
1051
+ ) -> None:
1052
+ """Activate the Open Metadata and Governance (OMAG) server using the configuration document stored for this
1053
+ server. Async Version
1054
+
1055
+ Parameters
1056
+ ----------
1057
+ server_guid: str
1058
+ Identity of the server to activate.
1059
+
1060
+ server : str, optional
1061
+ The name of the server to get governance engine summaries from. If not provided, the default server name
1062
+ will be used.
1063
+
1064
+ Returns
1065
+ -------
1066
+ None
1067
+
1068
+
1069
+ Raises
1070
+ ------
1071
+ InvalidParameterException
1072
+ PropertyServerException
1073
+ UserNotAuthorizedException
1074
+
1075
+ """
1076
+ pass
@@ -0,0 +1,79 @@
1
+ global template_guids, integration_guids
2
+ TEMPLATE_GUIDS['CSV Data File'] = '13770f93-13c8-42be-9bb8-e0b1b1e52b1f'
3
+ TEMPLATE_GUIDS['Keystore File'] = 'fbcfcc0c-1652-421f-b49b-c3e1c108768f'
4
+ TEMPLATE_GUIDS['Unity Catalog Server'] = 'dcca9788-b30f-4007-b1ac-ec634aff6879'
5
+ INTEGRATION_GUIDS['UnityCatalogInsideCatalog'] = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
6
+ INTEGRATION_GUIDS['UnityCatalogServer'] = '06d068d9-9e08-4e67-8c59-073bbf1013af'
7
+ INTEGRATION_GUIDS['JDBC'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
8
+ TEMPLATE_GUIDS['Data File'] = '66d8dda9-00cf-4e59-938c-4b0583596b1e'
9
+ TEMPLATE_GUIDS['View Server'] = 'fd61ca01-390d-4aa2-a55d-426826aa4e1b'
10
+ TEMPLATE_GUIDS['Archive File'] = '7578e504-d00f-406d-a194-3fc0a351cdf9'
11
+ TEMPLATE_GUIDS['Unity Catalog Catalog'] = '5ee006aa-a6d6-411b-9b8d-5f720c079cae'
12
+ TEMPLATE_GUIDS['PostgreSQL Relational Database'] = '3d398b3f-7ae6-4713-952a-409f3dea8520'
13
+ INTEGRATION_GUIDS['JDBC'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
14
+ TEMPLATE_GUIDS['Program File'] = '32d27e9c-1fdf-455a-ad2a-42b4d7d99108'
15
+ TEMPLATE_GUIDS['FileFolder'] = 'fbdd8efd-1b69-474c-bb6d-0a304b394146'
16
+ INTEGRATION_GUIDS['ContentPacksMonitor'] = '6bb2181e-7724-4515-ba3c-877cded55980'
17
+ INTEGRATION_GUIDS['GeneralFilesMonitor'] = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
18
+ INTEGRATION_GUIDS['SampleDataFilesMonitor'] = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
19
+ INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
20
+ TEMPLATE_GUIDS['JDBC Endpoint'] = '3d79ce50-1887-4627-ad71-ba4649aba2bc'
21
+ TEMPLATE_GUIDS['PostgreSQL Server'] = '542134e6-b9ce-4dce-8aef-22e8daf34fdb'
22
+ INTEGRATION_GUIDS['PostgreSQLServer'] = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
23
+ TEMPLATE_GUIDS['Audio Data File'] = '39b4b670-7f15-4744-a5ba-62e8edafbcee'
24
+ TEMPLATE_GUIDS['Document File'] = 'eb6f728d-fa54-4350-9807-1199cbf96851'
25
+ TEMPLATE_GUIDS['Integration Daemon'] = '6b3516f0-dd13-4786-9601-07215f995197'
26
+ TEMPLATE_GUIDS['XML Data File'] = 'ea67ae71-c674-473e-b38b-689879d2a7d9'
27
+ TEMPLATE_GUIDS['REST API Endpoint'] = '9ea4bff4-d193-492f-bcad-6e68c07c6f9e'
28
+ TEMPLATE_GUIDS['Unity Catalog Schema'] = '5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e'
29
+ TEMPLATE_GUIDS['Parquet Data File'] = '7f6cd744-79c3-4d25-a056-eeb1a91574c3'
30
+ TEMPLATE_GUIDS['3D Image Data File'] = '0059ea2b-6292-4cac-aa6f-a80a605f1114'
31
+ TEMPLATE_GUIDS['YAML File'] = '2221855b-2b64-4b45-a2ee-c40adc5e2a64'
32
+ TEMPLATE_GUIDS['Metadata Access Server'] = 'bd8de890-fa79-4c24-aab8-20b41b5893dd'
33
+ TEMPLATE_GUIDS['Properties File'] = '3b281111-a0ef-4fc4-99e7-9a0ef84a7636'
34
+ TEMPLATE_GUIDS['Vector Data File'] = 'db1bec7f-55a9-40d3-91c0-a57b76d422e2'
35
+ TEMPLATE_GUIDS['Apache Kafka Server'] = '5e1ff810-5418-43f7-b7c4-e6e062f9aff7'
36
+ INTEGRATION_GUIDS['KafkaTopic'] = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
37
+ TEMPLATE_GUIDS['Executable File'] = '3d99a163-7a13-4576-a212-784010a8302a'
38
+ INTEGRATION_GUIDS['OpenLineageAPIPublisher'] = '2156bc98-973a-4859-908d-4ccc96f53cc5'
39
+ TEMPLATE_GUIDS['Unity Catalog Table'] = '6cc1e5f5-4c1e-4290-a80e-e06643ffb13d'
40
+ TEMPLATE_GUIDS['JSON Data File'] = 'c4836635-7e9e-446a-83b5-15e206b1aff3'
41
+ TEMPLATE_GUIDS['File System'] = '522f228c-097c-4f90-9efc-26c1f2696f87'
42
+ TEMPLATE_GUIDS['Source Code File'] = '9c7013ef-f29b-4b01-a8ea-5ea14f64c67a'
43
+ TEMPLATE_GUIDS['Apple MacBook Pro'] = '32a9fd56-85c9-47fe-a211-9da3871bf4da'
44
+ TEMPLATE_GUIDS['Build Instruction File'] = 'fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504'
45
+ TEMPLATE_GUIDS['Spreadsheet Data File'] = 'e4fabff5-2ba9-4050-9076-6ed917970b4c'
46
+ TEMPLATE_GUIDS['UNIX File System'] = '27117270-8667-41d0-a99a-9118f9b60199'
47
+ TEMPLATE_GUIDS['Video Data File'] = '93b2b722-ec0f-4da4-960a-b8d4922f8bf5'
48
+ TEMPLATE_GUIDS['Unity Catalog Function'] = 'a490ba65-6104-4213-9be9-524e16fed8aa'
49
+ TEMPLATE_GUIDS['PostgreSQL Relational Database Schema'] = '82a5417c-d882-4271-8444-4c6a996a8bfc'
50
+ TEMPLATE_GUIDS['Engine Host'] = '1764a891-4234-45f1-8cc3-536af40c790d'
51
+ TEMPLATE_GUIDS['Avro Data File'] = '9f5be428-058e-41dd-b506-3a222283b579'
52
+ TEMPLATE_GUIDS['Unity Catalog Volume'] = '92d2d2dc-0798-41f0-9512-b10548d312b7'
53
+ TEMPLATE_GUIDS['File'] = 'ae3067c7-cc72-4a18-88e1-746803c2c86f'
54
+ TEMPLATE_GUIDS['Apache Kafka Topic'] = 'ea8f81c9-c59c-47de-9525-7cc59d1251e5'
55
+ TEMPLATE_GUIDS['Script File'] = 'dbd5e6bb-1ff8-46f4-a007-fb0485f68c92'
56
+ TEMPLATE_GUIDS['Apache Atlas Server'] = 'fe6dce45-a978-4417-ab55-17f05b8bcea7'
57
+ TEMPLATE_GUIDS['Raster Data File'] = '47211156-f03f-4881-8526-015e695a3dac'
58
+ TEMPLATE_GUIDS['Data Folder'] = '372a0379-7060-4c9d-8d84-bc709b31794c'
59
+ INTEGRATION_GUIDS['MaintainDataFolderLastUpdateDate'] = 'fd26f07c-ae44-4bc5-b457-37b43112224f'
60
+ INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
61
+ TEMPLATE_GUIDS['OMAG Server Platform'] = '9b06c4dc-ddc8-47ae-b56b-28775d3a96f0'
62
+ INTEGRATION_GUIDS['OpenAPI'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
63
+ INTEGRATION_GUIDS['OMAGServerPlatform'] = 'dee84e6e-7a96-4975-86c1-152fb3ab759b'
64
+ INTEGRATION_GUIDS['PostgreSQLServerCataloguer'] = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
65
+ INTEGRATION_GUIDS['UnityCatalogInsideCatalogSynchronizer'] = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
66
+ INTEGRATION_GUIDS['OpenLineageAPIPublisher'] = '2156bc98-973a-4859-908d-4ccc96f53cc5'
67
+ INTEGRATION_GUIDS['JDBCDatabaseCataloguer'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
68
+ INTEGRATION_GUIDS['FilesCataloguer'] = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
69
+ INTEGRATION_GUIDS['SampleDataCataloguer'] = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
70
+ INTEGRATION_GUIDS['OpenLineageGovernanceActionPublisher'] = '206f8faf-04da-4b6f-8280-eeee3943afeb'
71
+ INTEGRATION_GUIDS['OpenAPICataloguer'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
72
+ INTEGRATION_GUIDS['OMAGServerPlatformCataloguer'] = 'dee84e6e-7a96-4975-86c1-152fb3ab759b'
73
+ INTEGRATION_GUIDS['ApacheKafkaCataloguer'] = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
74
+ INTEGRATION_GUIDS['UnityCatalogServerSynchronizer'] = '06d068d9-9e08-4e67-8c59-073bbf1013af'
75
+ INTEGRATION_GUIDS['MaintainLastUpdateDate'] = 'fd26f07c-ae44-4bc5-b457-37b43112224f'
76
+ INTEGRATION_GUIDS['OpenLineageKafkaListener'] = '980b989c-de78-4e6a-a58d-51049d7381bf'
77
+ INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
78
+ INTEGRATION_GUIDS['ContentPacksCataloguer'] = '6bb2181e-7724-4515-ba3c-877cded55980'
79
+ INTEGRATION_GUIDS['OpenLineageCataloguer'] = '3347ac71-8dd2-403a-bc16-75a71be64bd7'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.8.4
3
+ Version: 0.8.4.2
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -8,7 +8,7 @@ examples/widgets/cat/get_project_dependencies.py,sha256=B0JaMSUi0hzVgos1sTY2uUPG
8
8
  examples/widgets/cat/get_project_structure.py,sha256=n2GbNd07w1DTo7jTR8b2ewXRyNcat_2BcCBRyDMldwk,5969
9
9
  examples/widgets/cat/get_tech_type_elements.py,sha256=-m3Q0BoNqkCtV8h75vMwTcOV-_ymEXmnJcr4Ec7WMAw,6180
10
10
  examples/widgets/cat/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
11
- examples/widgets/cat/list_archives.py,sha256=bQ0Uph35hMvufn15nO1ulYsZ20fyZmvCr57sCDgHMy8,5498
11
+ examples/widgets/cat/list_archives.py,sha256=E45WMqAUuaEL6vwHGMfbpoUm3C7CyW46pIFcRc0Yfbs,5481
12
12
  examples/widgets/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
13
13
  examples/widgets/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
14
14
  examples/widgets/cat/list_glossary.py,sha256=ybHFl1qebnE48GqtYaM1Gl26Vs9f9YAPAnrrAHHJqHs,5705
@@ -64,7 +64,7 @@ examples/widgets/tech/list_tech_templates.py,sha256=RiyA8a4fIL9BGeGf37Bkk471mK5E
64
64
  examples/widgets/tech/list_valid_metadata_values.py,sha256=N3D0_BmREPszgde3uvvYdfzq7DJ46uMOv2t1vtncGsw,6333
65
65
  examples/widgets/tech/x_list_related_elements.py,sha256=qBsf1619cecaMCTzG0MG22fAT32WNH2Z3CXrjo9z-5Y,5853
66
66
  pyegeria/Xloaded_resources_omvs.py,sha256=xNLlmEXG8njFyiN08WKkT3D_9iLWzObM_2u5GTirjEo,3276
67
- pyegeria/__init__.py,sha256=koiV5cFtZDddi3QKI0itvUZCrCNn6_SOWdNlluS7L10,9499
67
+ pyegeria/__init__.py,sha256=WyvV-B3BzaMjGBcvrL4hGttuaXcMEpJ3FTQvXsJvqF8,9498
68
68
  pyegeria/_client.py,sha256=d1cG5p7yfZDwau3O4kvlHuB-XAey-mcT3Kz3wKwtHis,26164
69
69
  pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
70
70
  pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
@@ -74,11 +74,11 @@ pyegeria/action_author_omvs.py,sha256=QZ2wMkQEvAmnr0mcgO8gnB1k95YghIgI1OBykO76O5
74
74
  pyegeria/asset_catalog_omvs.py,sha256=ss_nUCUQA0wixUeUZxZQYLcxJ_FVIhK__jn99qvyq4k,24543
75
75
  pyegeria/automated_curation_omvs.py,sha256=JdHppsoGH8bBvSRar_scEzYSVMqhOnN0Mg3PSkMOycE,150352
76
76
  pyegeria/classification_manager_omvs.py,sha256=XQ6VKz6NHtSMPr5BUnamzCBJKKVnoROoVxgz4f1N7IQ,186133
77
- pyegeria/collection_manager_omvs.py,sha256=IgemuKE-DjBkAG7y2kQFO0p3zv7YxpLHW4RU3IPuTRw,109965
77
+ pyegeria/collection_manager_omvs.py,sha256=em4hPZNu7OOwzJ69r5_RAIsvpZ7ii5KK-yO0rFqXO9w,110092
78
78
  pyegeria/core_omag_server_config.py,sha256=qp1mpTm8q6QrP1IOiXIDOpAGGyIG6fJJ0Kqu-XagF88,93659
79
79
  pyegeria/create_tech_guid_lists.py,sha256=jClpvURy20o4UV83LOwhGg3TZdHGzfjZ9y0MNZyG2To,4282
80
80
  pyegeria/egeria_cat_client.py,sha256=zpcYczfSkEL-Nd47Gw6gU2n0Zb_ZKjSAaHkUjo1uRGY,1879
81
- pyegeria/egeria_client.py,sha256=RbE557kIEP8I9_OnMivHzhPIKc31ZTY_irFh1-bEn_8,3223
81
+ pyegeria/egeria_client.py,sha256=t1SZcM4aftc86G0ZcU4pk7H4Hd4LfjhlRrDraqOnQBY,3360
82
82
  pyegeria/egeria_config_client.py,sha256=oJ3Q4ts9ZayFJFB2cKGHaTqDyAZmsvx0GUzc35fEhdk,1030
83
83
  pyegeria/egeria_my_client.py,sha256=a-KHdqEwdaTwxrdpSNDy8vjDI26iZDqGSB_UFqvdoME,1340
84
84
  pyegeria/egeria_ops_client.py,sha256=9w9CcYkzXAHZCrq-YuUS30Z13DXVNTdVntpSHBccKBY,2030
@@ -92,12 +92,13 @@ pyegeria/my_profile_omvs.py,sha256=OcexVwHGLV0JKHN257Un1BZLwcolSS7F6U6jj5uEmQM,4
92
92
  pyegeria/platform_services.py,sha256=nwuQxnnuf0bpV4LOTAdvpFUKAIUlqtYeXETMsOzFHRg,41710
93
93
  pyegeria/project_manager_omvs.py,sha256=v71B_SOTuaUDiVaC-xhH4v8lDb6cEo53oyVLTycCfY4,74469
94
94
  pyegeria/registered_info.py,sha256=QcOpQUZaM_6sAvdXM09Plxx-tBSJuNq9aD_yoqnL_Zg,6293
95
- pyegeria/runtime_manager_omvs.py,sha256=pXsywkzAO85WCp1bqskmeG6kLHdAg12xVmjGG2WMq08,35288
95
+ pyegeria/runtime_manager_omvs.py,sha256=tl8uePe8gjOkg5J1mZQ5e_kh9LEXn2bfeAMTro02oHQ,35778
96
96
  pyegeria/server_operations.py,sha256=mtl3P6D9LdquBrOzvPr1zapDxSJ-97RerPUJn_NiAto,16722
97
+ pyegeria/tech_guids_06-09-2024 11:07.py,sha256=B3fytBw9dmjnlEaCKgt6oQoGh-8HUBG0mFQeyDoUEYQ,6229
97
98
  pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
98
99
  pyegeria/valid_metadata_omvs.py,sha256=3NjdRkcKWQclGcELJIJPtz7RuenjoVWOXazgU70uCrY,36115
99
- pyegeria-0.8.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
100
- pyegeria-0.8.4.dist-info/METADATA,sha256=qX3BoBGUZoblgcMd7oVwU1ud_b8mXDNT4pVNriPnB4E,2817
101
- pyegeria-0.8.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
102
- pyegeria-0.8.4.dist-info/entry_points.txt,sha256=5Q9bDxIqPgdhd3lDnzdRSCYy9hZtNm_BL49bcmbBpGQ,3808
103
- pyegeria-0.8.4.dist-info/RECORD,,
100
+ pyegeria-0.8.4.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
101
+ pyegeria-0.8.4.2.dist-info/METADATA,sha256=GZ0gHjcVCi56SbgStFPswnxOvRrtSXXEWEReQs5AFls,2819
102
+ pyegeria-0.8.4.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
103
+ pyegeria-0.8.4.2.dist-info/entry_points.txt,sha256=5Q9bDxIqPgdhd3lDnzdRSCYy9hZtNm_BL49bcmbBpGQ,3808
104
+ pyegeria-0.8.4.2.dist-info/RECORD,,