pyegeria 5.4.8.6__py3-none-any.whl → 5.4.8.8__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.
- examples/Coco_config/README.md +19 -0
- examples/Coco_config/__init__.py +4 -0
- examples/Coco_config/config_cocoMDS1.py +108 -0
- examples/Coco_config/config_cocoMDS2.py +126 -0
- examples/Coco_config/config_cocoMDS3.py +109 -0
- examples/Coco_config/config_cocoMDS4.py +91 -0
- examples/Coco_config/config_cocoMDS5.py +116 -0
- examples/Coco_config/config_cocoMDS6.py +114 -0
- examples/Coco_config/config_cocoMDSx.py +119 -0
- examples/Coco_config/config_cocoView1.py +155 -0
- examples/Coco_config/config_coco_core.py +255 -0
- examples/Coco_config/config_coco_datalake.py +450 -0
- examples/Coco_config/config_exchangeDL01.py +106 -0
- examples/Coco_config/config_governDL01.py +80 -0
- examples/Coco_config/config_monitorDev01.py +60 -0
- examples/Coco_config/config_monitorGov01.py +194 -0
- examples/Coco_config/globals.py +154 -0
- examples/GeoSpatial Products Example.py +535 -0
- examples/Jupyter Notebooks/P-egeria-server-config.ipynb +2137 -0
- examples/Jupyter Notebooks/README.md +2 -0
- examples/Jupyter Notebooks/common/P-environment-check.ipynb +115 -0
- examples/Jupyter Notebooks/common/__init__.py +14 -0
- examples/Jupyter Notebooks/common/common-functions.ipynb +4694 -0
- examples/Jupyter Notebooks/common/environment-check.ipynb +53 -0
- examples/Jupyter Notebooks/common/globals.ipynb +184 -0
- examples/Jupyter Notebooks/common/globals.py +154 -0
- examples/Jupyter Notebooks/common/orig_globals.py +152 -0
- examples/format_sets/all_format_sets.json +910 -0
- examples/format_sets/custom_format_sets.json +268 -0
- examples/format_sets/subset_format_sets.json +187 -0
- examples/format_sets_save_load_example.py +294 -0
- examples/output_formats_example.py +193 -0
- md_processing/__init__.py +6 -0
- md_processing/data/commands.json +30640 -59579
- md_processing/dr_egeria.py +18 -0
- md_processing/md_commands/feedback_commands.py +763 -0
- md_processing/md_commands/project_commands.py +1 -1
- md_processing/md_processing_utils/md_processing_constants.py +134 -4
- pyegeria/__init__.py +1 -1
- pyegeria/_client_new.py +109 -12
- pyegeria/_globals.py +3 -2
- pyegeria/base_report_formats.py +17 -0
- pyegeria/format_set_executor.py +5 -2
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/METADATA +1 -1
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/RECORD +49 -16
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/top_level.txt +1 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/entry_points.txt +0 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Product": {
|
|
3
|
+
"heading": "Product Format Set",
|
|
4
|
+
"description": "A format set for product information",
|
|
5
|
+
"aliases": [
|
|
6
|
+
"Product",
|
|
7
|
+
"Products"
|
|
8
|
+
],
|
|
9
|
+
"annotations": {},
|
|
10
|
+
"formats": [
|
|
11
|
+
{
|
|
12
|
+
"types": [
|
|
13
|
+
"TABLE"
|
|
14
|
+
],
|
|
15
|
+
"attributes": [
|
|
16
|
+
{
|
|
17
|
+
"name": "ID",
|
|
18
|
+
"key": "id",
|
|
19
|
+
"format": false
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "Name",
|
|
23
|
+
"key": "name",
|
|
24
|
+
"format": false
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Description",
|
|
28
|
+
"key": "description",
|
|
29
|
+
"format": true
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"types": [
|
|
35
|
+
"DETAIL",
|
|
36
|
+
"FORM"
|
|
37
|
+
],
|
|
38
|
+
"attributes": [
|
|
39
|
+
{
|
|
40
|
+
"name": "ID",
|
|
41
|
+
"key": "id",
|
|
42
|
+
"format": false
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Name",
|
|
46
|
+
"key": "name",
|
|
47
|
+
"format": false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Description",
|
|
51
|
+
"key": "description",
|
|
52
|
+
"format": true
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Created By",
|
|
56
|
+
"key": "created_by",
|
|
57
|
+
"format": false
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "Created Date",
|
|
61
|
+
"key": "created_date",
|
|
62
|
+
"format": false
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "Modified By",
|
|
66
|
+
"key": "modified_by",
|
|
67
|
+
"format": false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "Modified Date",
|
|
71
|
+
"key": "modified_date",
|
|
72
|
+
"format": false
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"types": [
|
|
78
|
+
"TECHNICAL",
|
|
79
|
+
"DICT"
|
|
80
|
+
],
|
|
81
|
+
"attributes": [
|
|
82
|
+
{
|
|
83
|
+
"name": "ID",
|
|
84
|
+
"key": "id",
|
|
85
|
+
"format": false
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "Name",
|
|
89
|
+
"key": "name",
|
|
90
|
+
"format": false
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "Description",
|
|
94
|
+
"key": "description",
|
|
95
|
+
"format": true
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "Type",
|
|
99
|
+
"key": "type",
|
|
100
|
+
"format": false
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Status",
|
|
104
|
+
"key": "status",
|
|
105
|
+
"format": false
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "Version",
|
|
109
|
+
"key": "version",
|
|
110
|
+
"format": false
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"action": [
|
|
116
|
+
{
|
|
117
|
+
"function": "ProductManager.find_products",
|
|
118
|
+
"user_params": [
|
|
119
|
+
"search_string"
|
|
120
|
+
],
|
|
121
|
+
"spec_params": {}
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
"Customer": {
|
|
126
|
+
"heading": "Customer Format Set",
|
|
127
|
+
"description": "A format set for customer information",
|
|
128
|
+
"aliases": [
|
|
129
|
+
"Customer",
|
|
130
|
+
"Customers"
|
|
131
|
+
],
|
|
132
|
+
"annotations": {},
|
|
133
|
+
"formats": [
|
|
134
|
+
{
|
|
135
|
+
"types": [
|
|
136
|
+
"TABLE"
|
|
137
|
+
],
|
|
138
|
+
"attributes": [
|
|
139
|
+
{
|
|
140
|
+
"name": "ID",
|
|
141
|
+
"key": "id",
|
|
142
|
+
"format": false
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "Name",
|
|
146
|
+
"key": "name",
|
|
147
|
+
"format": false
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "Description",
|
|
151
|
+
"key": "description",
|
|
152
|
+
"format": true
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"types": [
|
|
158
|
+
"DETAIL",
|
|
159
|
+
"FORM"
|
|
160
|
+
],
|
|
161
|
+
"attributes": [
|
|
162
|
+
{
|
|
163
|
+
"name": "ID",
|
|
164
|
+
"key": "id",
|
|
165
|
+
"format": false
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "Name",
|
|
169
|
+
"key": "name",
|
|
170
|
+
"format": false
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "Description",
|
|
174
|
+
"key": "description",
|
|
175
|
+
"format": true
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "Created By",
|
|
179
|
+
"key": "created_by",
|
|
180
|
+
"format": false
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "Created Date",
|
|
184
|
+
"key": "created_date",
|
|
185
|
+
"format": false
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "Modified By",
|
|
189
|
+
"key": "modified_by",
|
|
190
|
+
"format": false
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "Modified Date",
|
|
194
|
+
"key": "modified_date",
|
|
195
|
+
"format": false
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"types": [
|
|
201
|
+
"FULL",
|
|
202
|
+
"REPORT"
|
|
203
|
+
],
|
|
204
|
+
"attributes": [
|
|
205
|
+
{
|
|
206
|
+
"name": "ID",
|
|
207
|
+
"key": "id",
|
|
208
|
+
"format": false
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"name": "Name",
|
|
212
|
+
"key": "name",
|
|
213
|
+
"format": false
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "Description",
|
|
217
|
+
"key": "description",
|
|
218
|
+
"format": true
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "Created By",
|
|
222
|
+
"key": "created_by",
|
|
223
|
+
"format": false
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "Created Date",
|
|
227
|
+
"key": "created_date",
|
|
228
|
+
"format": false
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "Modified By",
|
|
232
|
+
"key": "modified_by",
|
|
233
|
+
"format": false
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "Modified Date",
|
|
237
|
+
"key": "modified_date",
|
|
238
|
+
"format": false
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "Type",
|
|
242
|
+
"key": "type",
|
|
243
|
+
"format": false
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "Status",
|
|
247
|
+
"key": "status",
|
|
248
|
+
"format": false
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "Version",
|
|
252
|
+
"key": "version",
|
|
253
|
+
"format": false
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"action": [
|
|
259
|
+
{
|
|
260
|
+
"function": "CustomerManager.find_customers",
|
|
261
|
+
"user_params": [
|
|
262
|
+
"search_string"
|
|
263
|
+
],
|
|
264
|
+
"spec_params": {}
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
}
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Collections": {
|
|
3
|
+
"heading": "Common Collection Information",
|
|
4
|
+
"description": "Attributes generic to all Collections.",
|
|
5
|
+
"aliases": [
|
|
6
|
+
"Collection",
|
|
7
|
+
"RootCollection",
|
|
8
|
+
"Folder",
|
|
9
|
+
"ReferenceList",
|
|
10
|
+
"HomeCollection",
|
|
11
|
+
"ResultSet",
|
|
12
|
+
"RecentAccess",
|
|
13
|
+
"WorkItemList",
|
|
14
|
+
"Namespace"
|
|
15
|
+
],
|
|
16
|
+
"annotations": {
|
|
17
|
+
"wikilinks": [
|
|
18
|
+
"[[Commons]]"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"formats": [
|
|
22
|
+
{
|
|
23
|
+
"types": [
|
|
24
|
+
"DICT"
|
|
25
|
+
],
|
|
26
|
+
"attributes": [
|
|
27
|
+
{
|
|
28
|
+
"name": "Display Name",
|
|
29
|
+
"key": "display_name",
|
|
30
|
+
"format": false
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Qualified Name",
|
|
34
|
+
"key": "qualified_name",
|
|
35
|
+
"format": true
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Category",
|
|
39
|
+
"key": "category",
|
|
40
|
+
"format": false
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Description",
|
|
44
|
+
"key": "description",
|
|
45
|
+
"format": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Created By",
|
|
49
|
+
"key": "created_by",
|
|
50
|
+
"format": false
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Create Time",
|
|
54
|
+
"key": "create_time",
|
|
55
|
+
"format": false
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "Updated By",
|
|
59
|
+
"key": "updated_by",
|
|
60
|
+
"format": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "Update Time",
|
|
64
|
+
"key": "update_time",
|
|
65
|
+
"format": false
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"types": [
|
|
71
|
+
"TABLE"
|
|
72
|
+
],
|
|
73
|
+
"attributes": [
|
|
74
|
+
{
|
|
75
|
+
"name": "Display Name",
|
|
76
|
+
"key": "display_name",
|
|
77
|
+
"format": false
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "Qualified Name",
|
|
81
|
+
"key": "qualified_name",
|
|
82
|
+
"format": true
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "Category",
|
|
86
|
+
"key": "category",
|
|
87
|
+
"format": false
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "Description",
|
|
91
|
+
"key": "description",
|
|
92
|
+
"format": true
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"types": [
|
|
98
|
+
"ALL"
|
|
99
|
+
],
|
|
100
|
+
"attributes": [
|
|
101
|
+
{
|
|
102
|
+
"name": "Display Name",
|
|
103
|
+
"key": "display_name",
|
|
104
|
+
"format": false
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "Qualified Name",
|
|
108
|
+
"key": "qualified_name",
|
|
109
|
+
"format": true
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Category",
|
|
113
|
+
"key": "category",
|
|
114
|
+
"format": false
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "Description",
|
|
118
|
+
"key": "description",
|
|
119
|
+
"format": true
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"action": [
|
|
125
|
+
{
|
|
126
|
+
"function": "CollectionManager.find_collections",
|
|
127
|
+
"user_params": [
|
|
128
|
+
"search_string"
|
|
129
|
+
],
|
|
130
|
+
"spec_params": {}
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"DataDictionary": {
|
|
135
|
+
"heading": "Data Dictionary Information",
|
|
136
|
+
"description": "Attributes useful to Data Dictionary.",
|
|
137
|
+
"aliases": [
|
|
138
|
+
"Data Dict",
|
|
139
|
+
"Data Dictionary"
|
|
140
|
+
],
|
|
141
|
+
"annotations": {
|
|
142
|
+
"wikilinks": [
|
|
143
|
+
"[[Data Dictionary]]"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"formats": [
|
|
147
|
+
{
|
|
148
|
+
"types": [
|
|
149
|
+
"ALL"
|
|
150
|
+
],
|
|
151
|
+
"attributes": [
|
|
152
|
+
{
|
|
153
|
+
"name": "Display Name",
|
|
154
|
+
"key": "display_name",
|
|
155
|
+
"format": false
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "Qualified Name",
|
|
159
|
+
"key": "qualified_name",
|
|
160
|
+
"format": true
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Category",
|
|
164
|
+
"key": "category",
|
|
165
|
+
"format": false
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "Description",
|
|
169
|
+
"key": "description",
|
|
170
|
+
"format": true
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"action": [
|
|
176
|
+
{
|
|
177
|
+
"function": "CollectionManager.find_collections",
|
|
178
|
+
"user_params": [
|
|
179
|
+
"search_string"
|
|
180
|
+
],
|
|
181
|
+
"spec_params": {
|
|
182
|
+
"classification_name": "DataDictionary"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
}
|
|
187
|
+
}
|