acryl-datahub-cloud 0.3.10rc2__py3-none-any.whl → 0.3.10rc4__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.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +5 -5
- {acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/METADATA +50 -50
- {acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/RECORD +7 -7
- {acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/top_level.txt +0 -0
|
@@ -5,9 +5,6 @@ from enum import Enum
|
|
|
5
5
|
from typing import Any, Callable, Dict, Iterable, List, Optional
|
|
6
6
|
|
|
7
7
|
import pandas as pd
|
|
8
|
-
from pydantic import BaseModel
|
|
9
|
-
|
|
10
|
-
from acryl_datahub_cloud.elasticsearch.graph_service import BaseModelRow
|
|
11
8
|
from datahub.emitter.mcp import MetadataChangeProposalWrapper
|
|
12
9
|
from datahub.ingestion.graph.client import DataHubGraph
|
|
13
10
|
from datahub.ingestion.graph.filters import RawSearchFilterRule
|
|
@@ -19,6 +16,9 @@ from datahub.metadata.schema_classes import (
|
|
|
19
16
|
FormStateClass,
|
|
20
17
|
FormTypeClass,
|
|
21
18
|
)
|
|
19
|
+
from pydantic import BaseModel
|
|
20
|
+
|
|
21
|
+
from acryl_datahub_cloud.elasticsearch.graph_service import BaseModelRow
|
|
22
22
|
|
|
23
23
|
logger = logging.getLogger(__name__)
|
|
24
24
|
|
|
@@ -51,7 +51,7 @@ class FormReportingRow(BaseModelRow):
|
|
|
51
51
|
assignee_urn: Optional[str]
|
|
52
52
|
asset_urn: str
|
|
53
53
|
platform_urn: str
|
|
54
|
-
platform_instance_urn: str
|
|
54
|
+
platform_instance_urn: Optional[str]
|
|
55
55
|
domain_urn: Optional[str]
|
|
56
56
|
parent_domain_urn: Optional[str]
|
|
57
57
|
asset_verified: Optional[bool]
|
|
@@ -127,7 +127,7 @@ class DataHubFormReportingData(FormData):
|
|
|
127
127
|
incompleteFormsCompletedPromptIds: List[str] = []
|
|
128
128
|
incompleteFormsCompletedPromptResponseTimes: List[str] = []
|
|
129
129
|
platform: str = ""
|
|
130
|
-
platformInstance: str =
|
|
130
|
+
platformInstance: Optional[str] = None
|
|
131
131
|
domains: List[str] = []
|
|
132
132
|
|
|
133
133
|
def __init__(self, graph: DataHubGraph, allowed_forms: Optional[List[str]] = None):
|
{acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/METADATA
RENAMED
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.10rc4
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Provides-Extra: datahub-lineage-features
|
|
7
|
-
Requires-Dist:
|
|
7
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
8
8
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
9
|
-
Requires-Dist:
|
|
9
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
10
10
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
11
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
14
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
15
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
17
13
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
18
14
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
16
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
18
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
19
19
|
Provides-Extra: datahub-reporting-extract-graph
|
|
20
|
-
Requires-Dist:
|
|
20
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
21
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
21
22
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
22
|
-
Requires-Dist:
|
|
23
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
23
24
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
25
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
26
26
|
Provides-Extra: datahub-reporting-extract-sql
|
|
27
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
28
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
27
29
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
28
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
29
30
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
32
32
|
Provides-Extra: datahub-usage-reporting
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
36
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
37
|
-
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
33
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
34
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
39
35
|
Requires-Dist: polars==1.23.0; extra == "datahub-usage-reporting"
|
|
40
36
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
38
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
43
39
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist:
|
|
40
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
41
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
42
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
43
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
45
45
|
Provides-Extra: datahub-metadata-sharing
|
|
46
46
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
47
47
|
Provides-Extra: datahub-action-request-owner
|
|
48
48
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
49
49
|
Provides-Extra: acryl-cs-issues
|
|
50
|
-
Requires-Dist:
|
|
50
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
51
51
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
52
52
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
53
|
-
Requires-Dist:
|
|
53
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
54
54
|
Provides-Extra: all
|
|
55
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
56
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
57
55
|
Requires-Dist: openai; extra == "all"
|
|
56
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
57
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
58
58
|
Requires-Dist: pydantic<2; extra == "all"
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
59
|
+
Requires-Dist: zenpy; extra == "all"
|
|
60
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
61
61
|
Requires-Dist: boto3; extra == "all"
|
|
62
|
-
Requires-Dist:
|
|
62
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
63
63
|
Requires-Dist: pandas; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
64
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
65
65
|
Requires-Dist: tenacity; extra == "all"
|
|
66
|
-
Requires-Dist: duckdb; extra == "all"
|
|
67
|
-
Requires-Dist: polars==1.23.0; extra == "all"
|
|
68
|
-
Requires-Dist: zenpy; extra == "all"
|
|
69
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
70
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
71
66
|
Requires-Dist: numpy<2; extra == "all"
|
|
67
|
+
Requires-Dist: polars==1.23.0; extra == "all"
|
|
68
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
69
|
+
Requires-Dist: jinja2; extra == "all"
|
|
70
|
+
Requires-Dist: duckdb; extra == "all"
|
|
71
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
72
72
|
Provides-Extra: dev
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
75
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
76
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
77
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
73
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
78
74
|
Requires-Dist: tenacity; extra == "dev"
|
|
79
75
|
Requires-Dist: openai; extra == "dev"
|
|
80
|
-
Requires-Dist:
|
|
81
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
82
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
83
|
-
Requires-Dist: pydantic<2; extra == "dev"
|
|
76
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
84
77
|
Requires-Dist: polars==1.23.0; extra == "dev"
|
|
85
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
86
78
|
Requires-Dist: pyarrow; extra == "dev"
|
|
87
|
-
Requires-Dist:
|
|
88
|
-
Requires-Dist:
|
|
79
|
+
Requires-Dist: pydantic<2; extra == "dev"
|
|
80
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
81
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
82
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
89
83
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
90
|
-
Requires-Dist:
|
|
84
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
85
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
86
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
87
|
+
Requires-Dist: boto3; extra == "dev"
|
|
88
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
89
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
90
|
+
Requires-Dist: pandas; extra == "dev"
|
|
91
91
|
Dynamic: provides-extra
|
|
92
92
|
Dynamic: requires-dist
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=H_qCWW5O-TvaSuGox6u3Hk6QoI4wYHPt9Ps2T04tA-g,556
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=2pAA7GrRfVUvVCxPAgxi4BVgpwq9F_bvVWfjtkjAHVg,25231
|
|
@@ -19,7 +19,7 @@ acryl_datahub_cloud/datahub_metadata_sharing/scroll_shared_entities.gql,sha256=N
|
|
|
19
19
|
acryl_datahub_cloud/datahub_metadata_sharing/share_entity.gql,sha256=tJ0VkAekRQCxZ3TkaC0nVqMHQoILqf2J6J-HfbSRL0U,286
|
|
20
20
|
acryl_datahub_cloud/datahub_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=Vn7BMQAiUF9aLlfa1uSX8yQivsljx2985hMRa1AtSmY,19293
|
|
22
|
-
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=
|
|
22
|
+
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=iWJg3RQ_n8_sdvzRxWBGc3EVA0q60Hc1hmZodyZLhLs,21969
|
|
23
23
|
acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=4dth7SWKw39kO0oq7C6minRGVmeetdEKsMQCdTx1Yog,7759
|
|
24
24
|
acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=4Z62LkVzB0jbdGcdMwjCChGc_iOFIMc0-a-AgIkEqS8,9402
|
|
25
25
|
acryl_datahub_cloud/datahub_reporting/forms.py,sha256=WUmJ3DLcKn4VcSplZFxmzdPrxQY2mYKqKc7hk8XZ9_Q,5939
|
|
@@ -410,8 +410,8 @@ acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh
|
|
|
410
410
|
acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=fxNxEMxGdUDi_-T0sd6KJks5BWEo5AzboQxpZYKLbiQ,1434
|
|
411
411
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
412
412
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
413
|
-
acryl_datahub_cloud-0.3.
|
|
414
|
-
acryl_datahub_cloud-0.3.
|
|
415
|
-
acryl_datahub_cloud-0.3.
|
|
416
|
-
acryl_datahub_cloud-0.3.
|
|
417
|
-
acryl_datahub_cloud-0.3.
|
|
413
|
+
acryl_datahub_cloud-0.3.10rc4.dist-info/METADATA,sha256=Crkj5PQ1--DRBN-LfgL1_H5y1xdnBqse5tNZt3zONoA,4541
|
|
414
|
+
acryl_datahub_cloud-0.3.10rc4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
415
|
+
acryl_datahub_cloud-0.3.10rc4.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
|
|
416
|
+
acryl_datahub_cloud-0.3.10rc4.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
417
|
+
acryl_datahub_cloud-0.3.10rc4.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.10rc2.dist-info → acryl_datahub_cloud-0.3.10rc4.dist-info}/top_level.txt
RENAMED
|
File without changes
|