pyegeria 5.4.0.27__py3-none-any.whl → 5.4.0.29__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/_output_formats.py +1 -1
- pyegeria/collection_manager.py +1 -1
- pyegeria/glossary_manager.py +1 -2
- pyegeria/logging_configuration.py +1 -1
- pyegeria/project_manager.py +1 -2
- pyegeria/utils.py +1 -1
- {pyegeria-5.4.0.27.dist-info → pyegeria-5.4.0.29.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.27.dist-info → pyegeria-5.4.0.29.dist-info}/RECORD +11 -11
- {pyegeria-5.4.0.27.dist-info → pyegeria-5.4.0.29.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.27.dist-info → pyegeria-5.4.0.29.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.27.dist-info → pyegeria-5.4.0.29.dist-info}/entry_points.txt +0 -0
pyegeria/_output_formats.py
CHANGED
@@ -72,7 +72,7 @@ from loguru import logger
|
|
72
72
|
|
73
73
|
from pyegeria._output_format_models import (Column, Format, ActionParameter, FormatSet, FormatSetDict,
|
74
74
|
save_format_sets_to_json, load_format_sets_from_json)
|
75
|
-
from pyegeria.
|
75
|
+
from pyegeria.config import settings
|
76
76
|
|
77
77
|
|
78
78
|
# Get the configured value for the user format sets directory
|
pyegeria/collection_manager.py
CHANGED
@@ -29,7 +29,7 @@ from pyegeria.output_formatter import (generate_output,
|
|
29
29
|
from pyegeria.utils import body_slimmer, dynamic_catch
|
30
30
|
|
31
31
|
|
32
|
-
app_settings =
|
32
|
+
app_settings = settings
|
33
33
|
EGERIA_LOCAL_QUALIFIER = app_settings.User_Profile.egeria_local_qualifier
|
34
34
|
|
35
35
|
COLLECTION_PROPERTIES_LIST = ["CollectionProperties", "DataDictionaryProperties",
|
pyegeria/glossary_manager.py
CHANGED
@@ -22,7 +22,7 @@ from pyegeria._exceptions_new import PyegeriaInvalidParameterException
|
|
22
22
|
from pyegeria._globals import NO_GUID_RETURNED
|
23
23
|
from pyegeria._validators import validate_guid
|
24
24
|
from pyegeria.collection_manager import CollectionManager
|
25
|
-
from pyegeria.
|
25
|
+
from pyegeria.config import settings as app_settings
|
26
26
|
from pyegeria.models import (NewElementRequestBody,
|
27
27
|
ReferenceableProperties, UpdateElementRequestBody, DeleteRequestBody, TemplateRequestBody,
|
28
28
|
NewRelationshipRequestBody, UpdateRelationshipRequestBody, NewClassificationRequestBody,
|
@@ -33,7 +33,6 @@ from pyegeria.output_formatter import (generate_output,
|
|
33
33
|
get_required_relationships)
|
34
34
|
from pyegeria.utils import body_slimmer, dynamic_catch
|
35
35
|
|
36
|
-
app_settings = get_app_config()
|
37
36
|
EGERIA_LOCAL_QUALIFIER = app_settings.User_Profile.egeria_local_qualifier
|
38
37
|
|
39
38
|
|
@@ -131,7 +131,7 @@ To suppress logging, an application can do the following:
|
|
131
131
|
# application.py (Scenario A: App uses Loguru)
|
132
132
|
import os, sys
|
133
133
|
from loguru import logger
|
134
|
-
from pyegeria.
|
134
|
+
from pyegeria.config import settings as app_settings
|
135
135
|
|
136
136
|
def console_log_filter(record):
|
137
137
|
if len(record["module"]) > 0:
|
pyegeria/project_manager.py
CHANGED
@@ -10,12 +10,11 @@ Copyright Contributors to the ODPi Egeria project.
|
|
10
10
|
import asyncio
|
11
11
|
|
12
12
|
from pyegeria._client_new import Client2
|
13
|
-
from pyegeria.
|
13
|
+
from pyegeria.config import settings as app_settings
|
14
14
|
from pyegeria.models import (SearchStringRequestBody, FilterRequestBody, GetRequestBody, NewElementRequestBody,
|
15
15
|
TemplateRequestBody)
|
16
16
|
from pyegeria.utils import body_slimmer, dynamic_catch
|
17
17
|
|
18
|
-
app_settings = get_app_config()
|
19
18
|
EGERIA_LOCAL_QUALIFIER = app_settings.User_Profile.egeria_local_qualifier
|
20
19
|
from pyegeria._globals import NO_ELEMENTS_FOUND, NO_PROJECTS_FOUND
|
21
20
|
|
pyegeria/utils.py
CHANGED
@@ -11,7 +11,7 @@ from datetime import datetime
|
|
11
11
|
from loguru import logger
|
12
12
|
from rich import print, print_json
|
13
13
|
from rich.console import Console
|
14
|
-
from pyegeria.config import settings as
|
14
|
+
from pyegeria.config import settings as app_settings
|
15
15
|
from typing import Callable, TypeVar
|
16
16
|
|
17
17
|
T = TypeVar('T', bound=Callable)
|
@@ -296,12 +296,12 @@ pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
|
296
296
|
pyegeria/_exceptions_new.py,sha256=srmrlqoWy7VvOJOhPcYFKW32MCIovgEg5J7PrYDxzQA,19706
|
297
297
|
pyegeria/_globals.py,sha256=qSU5hM4uuJZPp-YapEEKxfcdgH9hauc6R7gRkELLroY,1132
|
298
298
|
pyegeria/_output_format_models.py,sha256=CE6VzwG1VfZTrmkLkIR7kAD3V71wnyTzIQQigrngE0k,13395
|
299
|
-
pyegeria/_output_formats.py,sha256=
|
299
|
+
pyegeria/_output_formats.py,sha256=769ge4SEGeR5chmVVEUga43Kki1D3XUVFf-Dn3UyOrw,29764
|
300
300
|
pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
|
301
301
|
pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
|
302
302
|
pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
|
303
303
|
pyegeria/classification_manager_omvs.py,sha256=kMyDP_dtHf2czU4ZlWYrakQtccPoteadlUCpWRRFJ1Q,187235
|
304
|
-
pyegeria/collection_manager.py,sha256=
|
304
|
+
pyegeria/collection_manager.py,sha256=7EthHDQgQ13lxPIohqYdYlb6qGr5clv7uwY2wG0Vyb0,234519
|
305
305
|
pyegeria/collection_models.py,sha256=d3DdWONqDdAeuUQgussiCNfvhKIDFpaI35cdW_Tv4_0,5315
|
306
306
|
pyegeria/config.py,sha256=6KxSsDyadaDPbb_u7ak1iAh7vnrJE_Bk2QTE_6NvoJA,25093
|
307
307
|
pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
|
@@ -314,10 +314,10 @@ pyegeria/egeria_my_client.py,sha256=3dSBUlrivzih75hodNHe-2BM9pGB8AQVLru-_NbhYNE,
|
|
314
314
|
pyegeria/egeria_tech_client.py,sha256=BiHDO_fhyJ2I9FzQjRlOfyqUfk-9a31pJCeuIvM8WDc,4412
|
315
315
|
pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
|
316
316
|
pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
|
317
|
-
pyegeria/glossary_manager.py,sha256=
|
317
|
+
pyegeria/glossary_manager.py,sha256=DQ6pLjKraYusceP_EhsJZB_WrLEs1dZ_cRpIlEDW6_k,111539
|
318
318
|
pyegeria/governance_officer.py,sha256=Omgn1ZLQRAH0Ob5cdLA1P5BcbIpuJ2cIbGnTDovreMc,100285
|
319
319
|
pyegeria/load_config_orig.py,sha256=lOM37vdIBcYfLQFTLP5bDuNc7vTFGBNYPfqHtWGNvA4,11624
|
320
|
-
pyegeria/logging_configuration.py,sha256=
|
320
|
+
pyegeria/logging_configuration.py,sha256=BxTQRN-7OOdk5t1f1xSn8gKU8iT-MfWEgbn6cYWrRsY,7674
|
321
321
|
pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
|
322
322
|
pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
|
323
323
|
pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
|
@@ -327,17 +327,17 @@ pyegeria/models.py,sha256=JX81Wfskn5G4vTXFYl9Ctk-dnr6X2zuto-4gqbuAI9Y,19963
|
|
327
327
|
pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
|
328
328
|
pyegeria/output_formatter.py,sha256=cAMeJTfSsiPLFTgvc1g1EVI6KcmWRTAhma2W_G7WV8A,36103
|
329
329
|
pyegeria/platform_services.py,sha256=AJNa8n2mKfAMK68q886YCD-p5bpCxIlCxBsRdr0R9O4,41708
|
330
|
-
pyegeria/project_manager.py,sha256=
|
330
|
+
pyegeria/project_manager.py,sha256=0RLnmAd-8c5wmpuQr62TASai7Y2RIIKbq6ntVtKQY2k,59559
|
331
331
|
pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
|
332
332
|
pyegeria/runtime_manager_omvs.py,sha256=etM6sl__7w5WomxvgqKhJBcJp8fXrNGEyHQFBwpBKfc,80295
|
333
333
|
pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
|
334
334
|
pyegeria/solution_architect_omvs.py,sha256=ZDKOmymEAZg69pE2MO0jyYnoBtM3fCtITPSfde2MZOw,239695
|
335
335
|
pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
|
336
|
-
pyegeria/utils.py,sha256=
|
336
|
+
pyegeria/utils.py,sha256=qgiYEdCRrrL6SpX1sceZQVYR40-rfFAhUJEhsubcx80,6889
|
337
337
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
338
338
|
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
339
|
-
pyegeria-5.4.0.
|
340
|
-
pyegeria-5.4.0.
|
341
|
-
pyegeria-5.4.0.
|
342
|
-
pyegeria-5.4.0.
|
343
|
-
pyegeria-5.4.0.
|
339
|
+
pyegeria-5.4.0.29.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
340
|
+
pyegeria-5.4.0.29.dist-info/METADATA,sha256=Eah9WUip5NjzBjcW3ndeYGLPeJi_8iXFDRc-sL9Z96c,3031
|
341
|
+
pyegeria-5.4.0.29.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
342
|
+
pyegeria-5.4.0.29.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
|
343
|
+
pyegeria-5.4.0.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|