pyegeria 1.5.1.0.8__py3-none-any.whl → 1.5.1.0.9__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.
@@ -47,7 +47,7 @@ def check_if_template(header: dict) -> bool:
47
47
 
48
48
 
49
49
  def list_deployed_catalogs(
50
- uc_server_name: str,
50
+ catalog_server: str,
51
51
  server: str,
52
52
  url: str,
53
53
  username: str,
@@ -79,9 +79,13 @@ def list_deployed_catalogs(
79
79
  table.add_column("Properties")
80
80
  table.add_column("Catalog Schemas")
81
81
 
82
- om_type = "DeployedDatabaseSchema"
83
-
84
- cats = c_client.get_elements_by_classification("Anchors", "Catalog")
82
+ if catalog_server in [None, "*"]:
83
+ cats = c_client.get_elements_by_classification("Anchors", "Catalog")
84
+ else:
85
+ server_guid = c_client.get_guid_for_name(catalog_server)
86
+ cats = c_client.get_elements_by_classification_with_property_value(
87
+ "Anchors", server_guid, ["anchorGUID"], "Catalog"
88
+ )
85
89
  if type(cats) is list:
86
90
  for cat in cats:
87
91
  header = cat["elementHeader"]
@@ -165,7 +169,7 @@ def list_deployed_catalogs(
165
169
 
166
170
  def main():
167
171
  parser = argparse.ArgumentParser()
168
- parser.add_argument("--server", help="Name of the server to display status for")
172
+ parser.add_argument("--server", help="Name of the view server to use")
169
173
  parser.add_argument("--url", help="URL Platform to connect to")
170
174
  parser.add_argument("--userid", help="User Id")
171
175
  parser.add_argument("--password", help="Password")
@@ -178,10 +182,9 @@ def main():
178
182
  password = args.password if args.password is not None else EGERIA_USER_PASSWORD
179
183
 
180
184
  try:
181
- # uc_server_name = Prompt.ask(
182
- # "Enter the name of a server to retrieve schemas for", default="*"
183
- # )
184
- uc_server_name = None
185
+ uc_server_name = Prompt.ask(
186
+ "Enter the name of a server to retrieve catalogs for", default="*"
187
+ )
185
188
  list_deployed_catalogs(uc_server_name, server, url, userid, password)
186
189
  except KeyboardInterrupt:
187
190
  pass
@@ -146,7 +146,7 @@ def list_deployed_database_schemas(
146
146
  if type(rel_elements) is list:
147
147
  len_els = len(rel_elements)
148
148
  rel_el_md = ""
149
- spacer = ""
149
+ spacer = "---\n"
150
150
  for rel_element in rel_elements:
151
151
  count += 1
152
152
  rel_type = rel_element["elementHeader"]["type"]["typeName"]
@@ -156,10 +156,13 @@ def list_deployed_database_schemas(
156
156
  for key in rel_props.keys():
157
157
  props_md += f"\t* **{key}**: {rel_props[key]}\n"
158
158
  rel_el_md = f"{rel_el_md}\n* **{rel_type}**:\n\t{rel_guid}\n{props_md}{spacer}"
159
- if count > 1 and count < len_els:
160
- spacer = "---\n"
161
- elif count > len_els:
162
- spacer = ""
159
+ # if count > 1 and count < len_els:
160
+ # spacer = "---\n"
161
+ # elif count > len_els:
162
+ # spacer = ""
163
+ rel_el_md = f"{rel_el_md}\n* **{rel_type}**:\n\t{rel_guid}\n{props_md}{spacer}"
164
+ if count == len_els:
165
+ rel_el_md = rel_el_md[:-4]
163
166
  rel_el_out = Markdown(rel_el_md)
164
167
 
165
168
  table.add_row(
@@ -111,6 +111,7 @@ def list_deployed_databases(
111
111
  rel_elements = c_client.get_related_elements(el_guid)
112
112
  schema_md = ""
113
113
  count = 0
114
+ rel_cnt = len(rel_elements)
114
115
  if type(rel_elements) is list:
115
116
  for rel_element in rel_elements:
116
117
  count += 1
@@ -124,9 +125,9 @@ def list_deployed_databases(
124
125
  props_md = ""
125
126
  for key in rel_props.keys():
126
127
  props_md += f"* **{key}**: {rel_props[key]}\n"
127
- rel_el_md = f"* **{rel_type}**: {rel_guid}\n{props_md}"
128
- if count >= 1:
129
- rel_el_md += "---\n"
128
+ rel_el_md = f"* **{rel_type}**: {rel_guid}\n{props_md}\n---\n"
129
+ if count == rel_cnt:
130
+ rel_el_md = rel_el_md[:-4]
130
131
  rel_el_out = Markdown(rel_el_md)
131
132
 
132
133
  table.add_row(
commands/cli/egeria.py CHANGED
@@ -34,6 +34,7 @@ from commands.my.monitor_my_todos import display_my_todos
34
34
  from commands.my.monitor_open_todos import display_todos
35
35
  from commands.cat.list_deployed_database_schemas import list_deployed_database_schemas
36
36
  from commands.cat.list_deployed_catalogs import list_deployed_catalogs
37
+ from commands.cat.list_deployed_databases import list_deployed_databases
37
38
  from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
38
39
  from commands.my.todo_actions import (
39
40
  mark_todo_complete,
@@ -928,25 +929,37 @@ def list_deployed_schemas(search_string, ctx):
928
929
  c.view_server_url,
929
930
  c.userid,
930
931
  c.password,
931
- None,
932
932
  c.jupyter,
933
933
  c.width,
934
934
  )
935
935
 
936
936
 
937
937
  @show.command("list-catalogs")
938
- # @click.option("--search-string", default="*", help="What database or catalog to search")
938
+ @click.option("--search-string", default="*", help="Server to search for catalogs")
939
939
  @click.pass_context
940
- def list_catalogs(ctx):
940
+ def list_catalogs(search_string, ctx):
941
941
  """Display a tree graph of information about an asset"""
942
942
  c = ctx.obj
943
943
  list_deployed_catalogs(
944
- " ",
944
+ search_string,
945
+ c.view_server,
946
+ c.view_server_url,
947
+ c.userid,
948
+ c.password,
949
+ c.jupyter,
950
+ c.width,
951
+ )
952
+
953
+
954
+ @click.pass_context
955
+ def list_databases(ctx):
956
+ """Display a tree graph of information about an asset"""
957
+ c = ctx.obj
958
+ list_deployed_databases(
945
959
  c.view_server,
946
960
  c.view_server_url,
947
961
  c.userid,
948
962
  c.password,
949
- None,
950
963
  c.jupyter,
951
964
  c.width,
952
965
  )
@@ -30,6 +30,7 @@ from commands.cat.list_archives import display_archive_list
30
30
  from commands.cat.list_deployed_database_schemas import list_deployed_database_schemas
31
31
  from commands.cat.list_deployed_catalogs import list_deployed_catalogs
32
32
  from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
33
+ from commands.cat.list_deployed_databases import list_deployed_databases
33
34
 
34
35
  # from pyegeria import ServerOps
35
36
  from commands.cli.ops_config import Config
@@ -507,25 +508,37 @@ def list_deployed_schemas(search_string, ctx):
507
508
  c.view_server_url,
508
509
  c.userid,
509
510
  c.password,
510
- None,
511
511
  c.jupyter,
512
512
  c.width,
513
513
  )
514
514
 
515
515
 
516
516
  @show.command("list-catalogs")
517
- # @click.option("--search-string", default="*", help="What database or catalog to search")
517
+ @click.option("--search-string", default="*", help="Server to search for catalogs")
518
518
  @click.pass_context
519
- def list_catalogs(ctx):
519
+ def list_catalogs(search_string, ctx):
520
520
  """Display a tree graph of information about an asset"""
521
521
  c = ctx.obj
522
522
  list_deployed_catalogs(
523
- " ",
523
+ search_string,
524
+ c.view_server,
525
+ c.view_server_url,
526
+ c.userid,
527
+ c.password,
528
+ c.jupyter,
529
+ c.width,
530
+ )
531
+
532
+
533
+ @click.pass_context
534
+ def list_databases(ctx):
535
+ """Display a tree graph of information about an asset"""
536
+ c = ctx.obj
537
+ list_deployed_databases(
524
538
  c.view_server,
525
539
  c.view_server_url,
526
540
  c.userid,
527
541
  c.password,
528
- None,
529
542
  c.jupyter,
530
543
  c.width,
531
544
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.0.8
3
+ Version: 1.5.1.0.9
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -10,9 +10,9 @@ commands/cat/glossary_actions.py,sha256=F5-NNiLvfHLbQKZ_RxS6XJ9HOAuXc75GMIAC5Xo0
10
10
  commands/cat/list_archives.py,sha256=83LhNeZWhzRiE-oU6veuIk9ob4XDtDWUoXdGGXaYeE8,5454
11
11
  commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
12
12
  commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
13
- commands/cat/list_deployed_catalogs.py,sha256=iMgJ_NEn1fLrUFMTnD752g-g5FAuwUtsD6o1uBnOYIo,6957
14
- commands/cat/list_deployed_database_schemas.py,sha256=Bgu4yUip6KZN74q8uVEZJjIvl_DvNkCL0oG8Q9XYigI,8312
15
- commands/cat/list_deployed_databases.py,sha256=qRt3-pDXRVm-bKznmYsisja4zA8KRT58-02Mvj8MjOc,6605
13
+ commands/cat/list_deployed_catalogs.py,sha256=eG8K-d7BijD34el_yVx9yfnLJdfwTUiJVxd-gcGwo7k,7157
14
+ commands/cat/list_deployed_database_schemas.py,sha256=8IZjeJjoHzcpj9RByd4PIbZQEX2822kfVmOhSjR9xV4,8529
15
+ commands/cat/list_deployed_databases.py,sha256=TJWqpj3PhvEmTsXhVRk_SODZNjTA5OiyhEzWwQkD-zk,6668
16
16
  commands/cat/list_glossary.py,sha256=tUtQQoTGTlDLU-yFbfO3zjiJC9QyEJfg8NxnGCo2mnI,5811
17
17
  commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
18
18
  commands/cat/list_relationships.py,sha256=U9f78cOi4HyaacqNaFSMq_7rRxVcEczvwPv468GYw3Q,5869
@@ -20,8 +20,8 @@ commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFo
20
20
  commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
21
21
  commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
22
22
  commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
23
- commands/cli/egeria.py,sha256=mKTlUkyO8B-zBwE7-lvvkesgKqWhoAkYf6ax0DialD8,30910
24
- commands/cli/egeria_cat.py,sha256=uaZvSibAAaoOx5O8__0dNUYVfNGKcYGT4WJZo5OCN08,14457
23
+ commands/cli/egeria.py,sha256=b0TReNGFre6oE8fAT_5EQvE4LMmiuKA2BYkBioYss2Y,31256
24
+ commands/cli/egeria_cat.py,sha256=UFL7mzzB-fanSaRW8QpuYJo-vUSHmkfOW5oawDkzCb4,14803
25
25
  commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
26
26
  commands/cli/egeria_ops.py,sha256=fxDXYWXRhexx06PdSLCp2FhgUtS13NdDpyg7ea775fc,11531
27
27
  commands/cli/egeria_tech.py,sha256=eTDHTHDVEYmr6gUPGfido_Uf7Fec0Nuyxlkhg4KAMAw,13160
@@ -101,8 +101,8 @@ pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0
101
101
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
102
102
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
103
103
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
104
- pyegeria-1.5.1.0.8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
105
- pyegeria-1.5.1.0.8.dist-info/METADATA,sha256=nzILP7w0hRi0UicwTi4tVLpTDNgNpASdfo8dCeuPfqM,2997
106
- pyegeria-1.5.1.0.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
107
- pyegeria-1.5.1.0.8.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
108
- pyegeria-1.5.1.0.8.dist-info/RECORD,,
104
+ pyegeria-1.5.1.0.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
105
+ pyegeria-1.5.1.0.9.dist-info/METADATA,sha256=b0VYU6zpTes5IhJKhypyC10fLQDE7zehSQvdQEuwmD0,2997
106
+ pyegeria-1.5.1.0.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
107
+ pyegeria-1.5.1.0.9.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
108
+ pyegeria-1.5.1.0.9.dist-info/RECORD,,