pyegeria 5.3.4.9__py3-none-any.whl → 5.3.4.10__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.
- pyegeria/asset_catalog_omvs.py +2 -2
- pyegeria/commands/ops/monitor_integ_daemon_status.py +3 -3
- {pyegeria-5.3.4.9.dist-info → pyegeria-5.3.4.10.dist-info}/METADATA +1 -1
- {pyegeria-5.3.4.9.dist-info → pyegeria-5.3.4.10.dist-info}/RECORD +7 -7
- {pyegeria-5.3.4.9.dist-info → pyegeria-5.3.4.10.dist-info}/LICENSE +0 -0
- {pyegeria-5.3.4.9.dist-info → pyegeria-5.3.4.10.dist-info}/WHEEL +0 -0
- {pyegeria-5.3.4.9.dist-info → pyegeria-5.3.4.10.dist-info}/entry_points.txt +0 -0
pyegeria/asset_catalog_omvs.py
CHANGED
@@ -467,7 +467,7 @@ class AssetCatalog(Client):
|
|
467
467
|
)
|
468
468
|
|
469
469
|
response = await self._async_make_request("GET", url)
|
470
|
-
return response.json().get("assetGraph",
|
470
|
+
return response.json().get("assetGraph", NO_ASSETS_FOUND)
|
471
471
|
|
472
472
|
def get_asset_graph(
|
473
473
|
self,
|
@@ -578,7 +578,7 @@ class AssetCatalog(Client):
|
|
578
578
|
)
|
579
579
|
|
580
580
|
response = await self._async_make_request("POST", url)
|
581
|
-
return response.json().get("assetLineageGraph",
|
581
|
+
return response.json().get("assetLineageGraph", NO_ASSETS_FOUND)
|
582
582
|
|
583
583
|
def get_asset_lineage_graph(
|
584
584
|
self,
|
@@ -45,7 +45,7 @@ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
|
45
45
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
46
46
|
EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
|
47
47
|
EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
|
48
|
-
EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH",
|
48
|
+
EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", 200))
|
49
49
|
|
50
50
|
disable_ssl_warnings = True
|
51
51
|
|
@@ -64,7 +64,7 @@ def display_integration_daemon_status(
|
|
64
64
|
user_pass: str = os.environ.get("EGERIA_USER_PASSWORD"),
|
65
65
|
paging: bool = False,
|
66
66
|
jupyter: bool = os.environ.get("EGERIA_JUPYTER", "False"),
|
67
|
-
width: int =
|
67
|
+
width: int = EGERIA_WIDTH,
|
68
68
|
sort: bool = True,
|
69
69
|
) -> None:
|
70
70
|
"""Display the status of connectors running on the specified Integration Daemon OMAG Server.
|
@@ -202,8 +202,8 @@ def display_integration_daemon_status(
|
|
202
202
|
return table
|
203
203
|
|
204
204
|
try:
|
205
|
+
console = Console(width=width) # main_pagig, force_terminal=not jupyter)
|
205
206
|
if paging is True:
|
206
|
-
console = Console(width=width) # main_pagig, force_terminal=not jupyter)
|
207
207
|
with console.pager():
|
208
208
|
console.print(generate_table(search_list))
|
209
209
|
else:
|
@@ -5,7 +5,7 @@ pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8Md
|
|
5
5
|
pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
6
6
|
pyegeria/_globals.py,sha256=3eH8Rf27HQg2fOub1HD7p4NFyyhZoO50iBLd7TLaSrU,951
|
7
7
|
pyegeria/_validators.py,sha256=vP9nuZwucnCo_LrPU7hkitpWzaych5bTZEKE58TaTnQ,12726
|
8
|
-
pyegeria/asset_catalog_omvs.py,sha256=
|
8
|
+
pyegeria/asset_catalog_omvs.py,sha256=MOg_s12ve0yT7tPd1M87YN70nKdkP-JAxgtYeU5qh-c,25688
|
9
9
|
pyegeria/automated_curation_omvs.py,sha256=8eqUdWDgV02iFLpqnP7pbT2C5T-BoHp28Y0L5m93Kls,130343
|
10
10
|
pyegeria/classification_manager_omvs.py,sha256=n55-62Mby-_5pxPGaz3nkjM9NWlY4PzSl3tP0WSnGJU,187212
|
11
11
|
pyegeria/collection_manager_omvs.py,sha256=xNuF3Ki6Rg-TehdbFGS8exSOUXpkQ3X63__OdXuCkc8,101746
|
@@ -171,7 +171,7 @@ pyegeria/commands/ops/monitor_asset_events.py,sha256=OOUzVJWZegqG6jG7OQZq4q1egHL
|
|
171
171
|
pyegeria/commands/ops/monitor_engine_activity.py,sha256=Lm0bcznqaJxehj6Rtuae7DX4p-Z6FLSsWHNDkn6QvI8,9889
|
172
172
|
pyegeria/commands/ops/monitor_engine_activity_c.py,sha256=Jf9Eo-ZtEPminf5gcz4NsT2wDD2AddcbTPJzSYdD5Sc,10773
|
173
173
|
pyegeria/commands/ops/monitor_gov_eng_status.py,sha256=J6PB0X_ycfOw4o0lu5aFOwccCKFEPp4lRGkv6r91uHw,9863
|
174
|
-
pyegeria/commands/ops/monitor_integ_daemon_status.py,sha256=
|
174
|
+
pyegeria/commands/ops/monitor_integ_daemon_status.py,sha256=VTqUyu12_qo8HavI8jIgZfltGBi_0WCTit6Kiuhmun0,11772
|
175
175
|
pyegeria/commands/ops/monitor_platform_status.py,sha256=kCGd6WEbLZBZXz3yBWTYaU0yUrInOtO27Tw8xKmzKSM,7240
|
176
176
|
pyegeria/commands/ops/monitor_server_startup.py,sha256=gwGW-uDLOnI2WNAym76L96DTlpwS5pAAHY7r2mzvFsI,3908
|
177
177
|
pyegeria/commands/ops/monitor_server_status.py,sha256=cve4oDOHJf5hHUTatoIj8mfAywwKCka0ipZmz_aDUOQ,7137
|
@@ -260,8 +260,8 @@ pyegeria/test_mer.ipynb,sha256=G7hpHn07IXnt_VKvnTDvljwwHB7RfC0etOMyZKt1icQ,30809
|
|
260
260
|
pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
|
261
261
|
pyegeria/valid_metadata_omvs.py,sha256=kL3bEkoBtNCaQKjziFwRAqQyleu-i2ua_REIogfulFw,65031
|
262
262
|
pyegeria/x_action_author_omvs.py,sha256=6b725SPsC52AI7ols7Qq8MsBlZuAXr_BgJ_-ychVRCw,6386
|
263
|
-
pyegeria-5.3.4.
|
264
|
-
pyegeria-5.3.4.
|
265
|
-
pyegeria-5.3.4.
|
266
|
-
pyegeria-5.3.4.
|
267
|
-
pyegeria-5.3.4.
|
263
|
+
pyegeria-5.3.4.10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
264
|
+
pyegeria-5.3.4.10.dist-info/METADATA,sha256=81108YuOUJ_EEiqNT8Cc903E0MFepmXM6WKt0je_A9I,2736
|
265
|
+
pyegeria-5.3.4.10.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
266
|
+
pyegeria-5.3.4.10.dist-info/entry_points.txt,sha256=E83aZ9RhrxffYGmHgBwhLdS5fvEeYhrIPp0FZRvaFOI,6180
|
267
|
+
pyegeria-5.3.4.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|