pyegeria 5.3.6.2.3__py3-none-any.whl → 5.3.6.2.5__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.
@@ -0,0 +1,78 @@
1
+ # Update Glossaries Form - created at 2025-03-06 19:39
2
+ Glossaries found from the search string: `All Glossaries`
3
+
4
+ # Update Glossary
5
+
6
+ ## Glossary Name
7
+ Egeria-Markdown
8
+
9
+ ## Description
10
+ Glossary to describe the vocabulary of Freddie - an Egeria Markdown language to support the exchange of metadata in a Markdown form.
11
+ Freddie allows users to input metadata using any text entry system that supports the entry of standard Markdown characters and through post-processing
12
+ commands, validates the Egeria content and allows the requests to be sent to Egeria. This is an update
13
+
14
+ ## Language
15
+ English
16
+
17
+ ## Usage
18
+ 1) (optional) load an example or template for the type of object from Egeria.
19
+ 2) Create a new document (perhaps from the template) and edit it, adding in the content with the Freddie controlled Markdown language.
20
+ 3) Process the document to validate and display it before you submit it, Validation may annotate your document with recommendations and potential issues.
21
+ 4) Submit the document to Egeria using the Freddie_sings command.
22
+ 5) anything?
23
+
24
+ ## Qualified Name
25
+ Glossary:Egeria-Markdown
26
+
27
+ ## GUID
28
+ 5d45b499-d0d5-4fad-bc23-763bc4073296
29
+
30
+
31
+ ---
32
+
33
+ # Update Glossary
34
+
35
+ ## Glossary Name
36
+ Teddy Bear Drop Foot Terminology
37
+
38
+ ## Description
39
+ This glossary describes terminology invented for the fictitious study into Teddy Bear Drop Foot that is being used to demonstrate aspects of open governance without risk to real patient data.
40
+
41
+ ## Language
42
+ English
43
+
44
+ ## Usage
45
+ Used with the Teddy Bear Drop Foot Demonstration Study.
46
+
47
+ ## Qualified Name
48
+ Glossary:TeddyBearDropFootTerminology
49
+
50
+ ## GUID
51
+ c103d0c9-7581-47e1-a684-6bbe0ecd596f
52
+
53
+
54
+ ---
55
+
56
+ # Update Glossary
57
+
58
+ ## Glossary Name
59
+ Sustainability Glossary
60
+
61
+ ## Description
62
+ Terminology associated with Coco Pharmaceutical's sustainability initiative.
63
+
64
+ ## Language
65
+ English
66
+
67
+ ## Usage
68
+ For all Coco Pharmaceutical employees wishing to understand more about sustainability and the organization's efforts to improve its operations.
69
+
70
+ ## Qualified Name
71
+ Glossary:Sustainability
72
+
73
+ ## GUID
74
+ 30bfe79e-adf2-4fda-b9c5-9c86ad6b0d6c
75
+
76
+
77
+ ---
78
+
@@ -213,11 +213,16 @@ from pyegeria.commands.tech.list_valid_metadata_values import display_metadata_v
213
213
  )
214
214
 
215
215
  @click.option(
216
- "--inbox_path",
216
+ "--root_path",
217
217
  default=os.environ.get("EGERIA_ROOT_PATH", "/home/jovyan"),
218
- help="Path to inbox files",
218
+ help="Root path to use for file operations",
219
219
  )
220
220
 
221
+ @click.option(
222
+ "--inbox_path",
223
+ default=os.environ.get("EGERIA_INBOX_PATH", "loading-bay/freddies-inbox"),
224
+ help="Path to outbox files",
225
+ )
221
226
  @click.option(
222
227
  "--outbox_path",
223
228
  default=os.environ.get("EGERIA_OUTBOX_PATH", "distribution-hub/freddies-outbox"),
@@ -244,6 +249,7 @@ def cli(
244
249
  width,
245
250
  home_glossary_guid,
246
251
  glossary_path,
252
+ root_path,
247
253
  inbox_path,
248
254
  outbox_path,
249
255
  ):
@@ -266,6 +272,7 @@ def cli(
266
272
  width,
267
273
  home_glossary_guid,
268
274
  glossary_path,
275
+ root_path,
269
276
  inbox_path,
270
277
  outbox_path
271
278
  )
@@ -1135,13 +1142,13 @@ def glossary_group(ctx):
1135
1142
  "--markdown",
1136
1143
  flag_value=True,
1137
1144
  default=False,
1138
- help="Optionally display glossary list in markdown format",
1145
+ help="Optionally write file in markdown format",
1139
1146
  )
1140
1147
  @click.option(
1141
1148
  "--form",
1142
1149
  flag_value=True,
1143
1150
  default=False,
1144
- help="Optionally display glossary list as an update form",
1151
+ help="Optionally write file as an update form",
1145
1152
  )
1146
1153
  @click.pass_context
1147
1154
  def show_terms(ctx, search_string, glossary_guid, glossary_name, markdown, form):
@@ -1164,8 +1171,20 @@ def show_terms(ctx, search_string, glossary_guid, glossary_name, markdown, form)
1164
1171
 
1165
1172
  @glossary_group.command("glossaries")
1166
1173
  @click.option("--search_string", default="*", help="Name to search for glossaries")
1174
+ @click.option(
1175
+ "--markdown",
1176
+ flag_value=True,
1177
+ default=False,
1178
+ help="Optionally display glossary list in markdown format",
1179
+ )
1180
+ @click.option(
1181
+ "--form",
1182
+ flag_value=True,
1183
+ default=False,
1184
+ help="Optionally display glossary list as an update form",
1185
+ )
1167
1186
  @click.pass_context
1168
- def glossaries(ctx, search_string):
1187
+ def glossaries(ctx, search_string, markdown, form):
1169
1188
  """Display a list of glossaries"""
1170
1189
  c = ctx.obj
1171
1190
  display_glossaries(
@@ -1176,6 +1195,8 @@ def glossaries(ctx, search_string):
1176
1195
  c.password,
1177
1196
  c.jupyter,
1178
1197
  c.width,
1198
+ markdown,
1199
+ form,
1179
1200
  )
1180
1201
 
1181
1202
 
@@ -1520,38 +1541,6 @@ def show_project_dependencies(ctx, project):
1520
1541
  )
1521
1542
 
1522
1543
 
1523
- @glossary_group.command("glossary-terms")
1524
- @click.option(
1525
- "--search-string",
1526
- default="*",
1527
- help="List glossary terms similar to search string - minimum of 4 characters",
1528
- )
1529
- @click.option(
1530
- "--glossary-guid",
1531
- default=None,
1532
- help="Optionally restrict search to glossary with the specified guid",
1533
- )
1534
- @click.option(
1535
- "--glossary-name",
1536
- default="*",
1537
- help="Optionally restrict search to a specific named glossary",
1538
- )
1539
- @click.pass_context
1540
- def show_terms(ctx, search_string, glossary_guid, glossary_name):
1541
- """Find and display glossary terms"""
1542
- c = ctx.obj
1543
- display_glossary_terms(
1544
- search_string,
1545
- glossary_guid,
1546
- glossary_name,
1547
- c.view_server,
1548
- c.view_server_url,
1549
- c.userid,
1550
- c.password,
1551
- c.jupyter,
1552
- c.width,
1553
- )
1554
-
1555
1544
 
1556
1545
  @asset_group.command("asset-graph")
1557
1546
  @click.argument("asset_guid", nargs=1)
@@ -1714,37 +1703,6 @@ def databases(ctx):
1714
1703
  )
1715
1704
 
1716
1705
 
1717
- @glossary_group.command("glossaries")
1718
- @click.option("--search_string", default="*", help="Name to search for glossaries")
1719
- @click.option(
1720
- "--markdown",
1721
- flag_value=True,
1722
- default=False,
1723
- help="Optionally display glossary list in markdown format",
1724
- )
1725
- @click.option(
1726
- "--form",
1727
- flag_value=True,
1728
- default=False,
1729
- help="Optionally display glossary list as an update form",
1730
- )
1731
- @click.pass_context
1732
- def glossaries(ctx, search_string, markdown, form):
1733
- """Display a list of glossaries"""
1734
- c = ctx.obj
1735
- display_glossaries(
1736
- search_string,
1737
- c.view_server,
1738
- c.view_server_url,
1739
- c.userid,
1740
- c.password,
1741
- c.jupyter,
1742
- c.width,
1743
- markdown,
1744
- form
1745
- )
1746
-
1747
-
1748
1706
  # @tell_cat.group("survey")
1749
1707
  # @click.pass_context
1750
1708
  # def survey(ctx):
@@ -143,11 +143,16 @@ from pyegeria.commands.tech.list_asset_types import display_asset_types
143
143
  )
144
144
 
145
145
  @click.option(
146
- "--inbox_path",
146
+ "--root_path",
147
147
  default=os.environ.get("EGERIA_ROOT_PATH", "/home/jovyan"),
148
- help="Path to inbox files",
148
+ help="Root path to use for file operations",
149
149
  )
150
150
 
151
+ @click.option(
152
+ "--inbox_path",
153
+ default=os.environ.get("EGERIA_INBOX_PATH", "loading-bay/freddies-inbox"),
154
+ help="Path to inbox files",
155
+ )
151
156
  @click.option(
152
157
  "--outbox_path",
153
158
  default=os.environ.get("EGERIA_OUTBOX_PATH", "distribution-hub/freddies-outbox"),
@@ -174,6 +179,7 @@ def cli(
174
179
  width,
175
180
  home_glossary_guid,
176
181
  glossary_path,
182
+ root_path,
177
183
  inbox_path,
178
184
  outbox_path,
179
185
  ):
@@ -196,6 +202,7 @@ def cli(
196
202
  width,
197
203
  home_glossary_guid,
198
204
  glossary_path,
205
+ root_path,
199
206
  inbox_path,
200
207
  outbox_path
201
208
  )
@@ -21,6 +21,7 @@ class Config(object):
21
21
  width: int,
22
22
  home_glossary_guid: str,
23
23
  glossary_path: str,
24
+ root_path: str,
24
25
  inbox_path: str,
25
26
  outbox_path: str
26
27
  ):
@@ -43,6 +44,7 @@ class Config(object):
43
44
  self.url = url
44
45
  self.home_glossary_guid = home_glossary_guid
45
46
  self.glossary_path = glossary_path
47
+ self.root_path = root_path
46
48
  self.inbox_path = inbox_path
47
49
  self.outbox_path = outbox_path
48
50
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.3.6.2.3
3
+ Version: 5.3.6.2.5
4
4
  Summary: A python client for Egeria
5
5
  License: Apache 2.0
6
6
  Keywords: egeria,metadata,governance
@@ -23,6 +23,7 @@ pyegeria/commands/cat/freddies-inbox/glossary_creation_experiment.ipynb,sha256=d
23
23
  pyegeria/commands/cat/freddies-inbox/glossary_exp.md,sha256=KsUeTzDe5QkrTmIfIAXR74qZ29oSfRW-NAEn0RYIRqM,2534
24
24
  pyegeria/commands/cat/freddies-outbox/Terms-2025-03-06-13-19-29-Report.md,sha256=nvwc4CxfCylURRZHhHrYthEYhGkiV6huOTct0tV7xRE,1981
25
25
  pyegeria/commands/cat/freddies-outbox/Terms-2025-03-06-13-20-30-Update-Form.md,sha256=FKBOoF4VQCta8IzjuPPsJ12THr7_dUszFAmsD48MrIY,2046
26
+ pyegeria/commands/cat/freddies-outbox/Terms-2025-03-06-19-39-25-Update-Form.md,sha256=egPZERg6CleKgHuQX10Z1Izj-YSCXBhrPm-wKUC6ua0,2046
26
27
  pyegeria/commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
27
28
  pyegeria/commands/cat/get_collection.py,sha256=KbSFoGZeK30_bMCa0BpIuCwBF5ywCX0g4hgDPnI0lEo,5356
28
29
  pyegeria/commands/cat/get_project_dependencies.py,sha256=wDK_lAfR6p4VxYRV6MZE9XgU3OfIRcWKKYn0Xf64w6o,5986
@@ -45,13 +46,13 @@ pyegeria/commands/cat/list_terms.py,sha256=WPqd5bWm_Re-NlR_OLtekmj8m2UX_8vIo9AJD
45
46
  pyegeria/commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
46
47
  pyegeria/commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
47
48
  pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
48
- pyegeria/commands/cli/egeria.py,sha256=9WaKxD150nwUaiHDt3lIclrJZhDW0XJ9e_Y2C5C_lBk,52668
49
- pyegeria/commands/cli/egeria_cat.py,sha256=Z4v0UT8EMavEBJ08VtjfwG5zP5sdlv8Mb7o-lBP2JtY,17043
49
+ pyegeria/commands/cli/egeria.py,sha256=vVB7RY4oOb43qIagBD65_xAed8QKBEUX_hiI6js8NGU,51622
50
+ pyegeria/commands/cli/egeria_cat.py,sha256=9UYmHwS1vaepUGIk5jSe5WVfG2VZMyyzxw6L_99u1ak,17241
50
51
  pyegeria/commands/cli/egeria_login_tui.py,sha256=W5ouG3nlN7z2Waa-wzYFS7yyoGfOrK-lNB0FMt2JdOk,9492
51
52
  pyegeria/commands/cli/egeria_my.py,sha256=0KTH7OIeKyp16ZeN7zK5uhadbPfAQsq38GMzJNWYG8g,6386
52
53
  pyegeria/commands/cli/egeria_ops.py,sha256=8W4t2jFGn22OOOtyUAapQH8yyOl1wo09CVNTojRQKvo,12817
53
54
  pyegeria/commands/cli/egeria_tech.py,sha256=HaTP1tzymvj4bhKl5O37JdCPTsACssqPQ-vkYeeeJXE,21140
54
- pyegeria/commands/cli/ops_config.py,sha256=cH7Zzlh5rx_Wmr2ymUNTMhPPDhAoj50GyZR-pXP2cA8,1454
55
+ pyegeria/commands/cli/ops_config.py,sha256=aYpZgC5WgbeVX81DNKS34sOqMx2pc6yqDuSO2CYRiOo,1513
55
56
  pyegeria/commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
56
57
  pyegeria/commands/doc/README.md,sha256=3TDtLjanw5Sn5fhw0apsYv2HS2Hd7NSdjLu3qTwwXBg,13941
57
58
  pyegeria/commands/doc/Visual Command Reference/README.md,sha256=StopwmMDYmJgfKeRC8nHOJMbXkz6n15zIDJBmHDPoxM,32445
@@ -250,8 +251,8 @@ pyegeria/test_w.html,sha256=q9HCstV2Ar-QiAqswte6hQ8EJuKqr5s99MUuXSxs7a8,11461
250
251
  pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
251
252
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
252
253
  pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
253
- pyegeria-5.3.6.2.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
254
- pyegeria-5.3.6.2.3.dist-info/METADATA,sha256=bBo6EbFdZ-EJx6aePdJmeXGrGVk_AuBD6AvcjCSFPwQ,2745
255
- pyegeria-5.3.6.2.3.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
256
- pyegeria-5.3.6.2.3.dist-info/entry_points.txt,sha256=9LIuEBIFodyDPNWxZFCJNSzK7-ZS85Kes3eTTYTGWHo,6407
257
- pyegeria-5.3.6.2.3.dist-info/RECORD,,
254
+ pyegeria-5.3.6.2.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
255
+ pyegeria-5.3.6.2.5.dist-info/METADATA,sha256=iadEy3TJ8gFSedPKTRuV95ULy7hiWXrcSjC1YYe9aho,2745
256
+ pyegeria-5.3.6.2.5.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
257
+ pyegeria-5.3.6.2.5.dist-info/entry_points.txt,sha256=9LIuEBIFodyDPNWxZFCJNSzK7-ZS85Kes3eTTYTGWHo,6407
258
+ pyegeria-5.3.6.2.5.dist-info/RECORD,,