pyegeria 0.8.4.49__py3-none-any.whl → 1.5.1__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/README.md +35 -0
- pyegeria/automated_curation_omvs.py +8 -8
- pyegeria/valid_metadata_omvs.py +1142 -123
- {pyegeria-0.8.4.49.dist-info → pyegeria-1.5.1.dist-info}/METADATA +7 -4
- {pyegeria-0.8.4.49.dist-info → pyegeria-1.5.1.dist-info}/RECORD +8 -7
- {pyegeria-0.8.4.49.dist-info → pyegeria-1.5.1.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.49.dist-info → pyegeria-1.5.1.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.49.dist-info → pyegeria-1.5.1.dist-info}/entry_points.txt +0 -0
pyegeria/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
2
|
+
<!-- Copyright Contributors to the ODPi Egeria project. -->
|
3
|
+
|
4
|
+

|
5
|
+
|
6
|
+
[](LICENSE)
|
7
|
+
|
8
|
+
|
9
|
+
# pyegeria: a python client for Egeria
|
10
|
+
|
11
|
+
This is a package for easily using the Egeria
|
12
|
+
open metadata environment from python. Details about the
|
13
|
+
open source Egeria project can be found at [Egeria Project](https://egeria-project.org).
|
14
|
+
|
15
|
+
This package is in active development. There is initial
|
16
|
+
support for many of Egeria's services including configuration and operation. This client depends on
|
17
|
+
This release supports Egeria 5.1 and above - although most of the functions may work on earlier versions of Egeria as well.
|
18
|
+
|
19
|
+
The code is organized to mimic the existing Egeria Java Client structure.
|
20
|
+
|
21
|
+
WARNING: files that start with "X" are in-progress placeholders that are not meant to be used..they will mature and
|
22
|
+
evolve.
|
23
|
+
|
24
|
+
All feedback is welcome. Please engage via our [community](http://egeria-project.org/guides/community/),
|
25
|
+
team calls, or via github issues in this repo. If interested in contributing,
|
26
|
+
you can engage via the community or directly reach out to
|
27
|
+
[dan.wolfson\@pdr-associates.com](mailto:dan.wolfson@pdr-associates.com?subject=pyegeria).
|
28
|
+
|
29
|
+
This is a learning experience.
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
----
|
34
|
+
License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
|
35
|
+
Copyright Contributors to the ODPi Egeria project.
|
@@ -2336,11 +2336,11 @@ class AutomatedCuration(Client):
|
|
2336
2336
|
) -> str:
|
2337
2337
|
"""Initiate a postgres database survey"""
|
2338
2338
|
|
2339
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2339
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2340
2340
|
|
2341
2341
|
body = {
|
2342
2342
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
2343
|
-
"governanceActionTypeQualifiedName": "
|
2343
|
+
"governanceActionTypeQualifiedName": "survey-postgres-database",
|
2344
2344
|
"actionTargets": [
|
2345
2345
|
{
|
2346
2346
|
"class": "NewActionTarget",
|
@@ -2365,7 +2365,7 @@ class AutomatedCuration(Client):
|
|
2365
2365
|
) -> str:
|
2366
2366
|
"""Initiate a postgres server survey - Async version"""
|
2367
2367
|
|
2368
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2368
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2369
2369
|
|
2370
2370
|
body = {
|
2371
2371
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
@@ -2426,7 +2426,7 @@ class AutomatedCuration(Client):
|
|
2426
2426
|
- AssetSurvey:survey-all-folders-and-files
|
2427
2427
|
"""
|
2428
2428
|
|
2429
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2429
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2430
2430
|
|
2431
2431
|
body = {
|
2432
2432
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
@@ -2489,7 +2489,7 @@ class AutomatedCuration(Client):
|
|
2489
2489
|
async def _async_initiate_file_survey(self, file_guid: str) -> str:
|
2490
2490
|
"""Initiate a file survey - async version"""
|
2491
2491
|
|
2492
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2492
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2493
2493
|
|
2494
2494
|
body = {
|
2495
2495
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
@@ -2525,7 +2525,7 @@ class AutomatedCuration(Client):
|
|
2525
2525
|
|
2526
2526
|
"""
|
2527
2527
|
|
2528
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2528
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2529
2529
|
|
2530
2530
|
body = {
|
2531
2531
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
@@ -2576,7 +2576,7 @@ class AutomatedCuration(Client):
|
|
2576
2576
|
|
2577
2577
|
"""
|
2578
2578
|
|
2579
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2579
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2580
2580
|
|
2581
2581
|
body = {
|
2582
2582
|
"class": "InitiateGovernanceActionTypeRequestBody",
|
@@ -2626,7 +2626,7 @@ class AutomatedCuration(Client):
|
|
2626
2626
|
|
2627
2627
|
"""
|
2628
2628
|
|
2629
|
-
url = f"{self.curation_command_root}/governance-action-types/
|
2629
|
+
url = f"{self.curation_command_root}/governance-action-types/initiate"
|
2630
2630
|
|
2631
2631
|
body = {
|
2632
2632
|
"class": "InitiateGovernanceActionTypeRequestBody",
|