acryl-datahub-cloud 0.3.12.1rc2__py3-none-any.whl → 0.3.12.2__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/sdk/__init__.py +20 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +146 -97
- acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +10 -22
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +99 -19
- acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +965 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +191 -0
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +60 -11
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +438 -347
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +105 -61
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +381 -392
- acryl_datahub_cloud/sdk/assertions_client.py +993 -314
- {acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/METADATA +49 -49
- {acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/RECORD +18 -15
- {acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/top_level.txt +0 -0
{acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/METADATA
RENAMED
|
@@ -1,98 +1,98 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.12.
|
|
3
|
+
Version: 0.3.12.2
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Requires-Dist: croniter
|
|
7
7
|
Requires-Dist: pytz
|
|
8
8
|
Requires-Dist: types-croniter
|
|
9
9
|
Provides-Extra: datahub-lineage-features
|
|
10
|
-
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
11
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
12
10
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
13
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
14
11
|
Requires-Dist: tenacity; extra == "datahub-lineage-features"
|
|
12
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
13
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
15
14
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
15
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
16
16
|
Provides-Extra: datahub-reporting-forms
|
|
17
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
18
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
19
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
20
17
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
21
|
-
Requires-Dist:
|
|
18
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
19
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
22
21
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
22
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
23
23
|
Provides-Extra: datahub-reporting-extract-graph
|
|
24
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
25
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
26
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
27
24
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
28
|
-
Requires-Dist:
|
|
25
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
26
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
27
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
29
28
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
29
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
30
30
|
Provides-Extra: datahub-reporting-extract-sql
|
|
31
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
32
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
33
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
34
31
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
32
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
33
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
34
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
35
35
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
36
36
|
Provides-Extra: datahub-usage-reporting
|
|
37
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
38
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
41
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
42
|
+
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
38
43
|
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
39
45
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
41
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
42
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
43
46
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
45
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
46
|
-
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
47
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
48
47
|
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
48
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
49
49
|
Provides-Extra: datahub-metadata-sharing
|
|
50
50
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
51
51
|
Provides-Extra: datahub-action-request-owner
|
|
52
52
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
53
53
|
Provides-Extra: acryl-cs-issues
|
|
54
54
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
55
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
55
56
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
56
57
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
57
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
58
58
|
Provides-Extra: datahub-forms-notifications
|
|
59
59
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
60
60
|
Provides-Extra: all
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist:
|
|
61
|
+
Requires-Dist: openai; extra == "all"
|
|
62
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
63
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
64
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
63
65
|
Requires-Dist: polars==1.30.0; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
66
|
+
Requires-Dist: tenacity; extra == "all"
|
|
67
|
+
Requires-Dist: duckdb; extra == "all"
|
|
68
|
+
Requires-Dist: boto3; extra == "all"
|
|
69
|
+
Requires-Dist: zenpy; extra == "all"
|
|
65
70
|
Requires-Dist: pydantic<2; extra == "all"
|
|
66
|
-
Requires-Dist: jinja2; extra == "all"
|
|
67
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
68
71
|
Requires-Dist: numpy<2; extra == "all"
|
|
69
|
-
Requires-Dist:
|
|
70
|
-
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
71
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
72
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
73
|
-
Requires-Dist: openai; extra == "all"
|
|
72
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
74
73
|
Requires-Dist: pandas; extra == "all"
|
|
75
|
-
Requires-Dist: zenpy; extra == "all"
|
|
76
|
-
Requires-Dist: tenacity; extra == "all"
|
|
77
74
|
Requires-Dist: slack-sdk; extra == "all"
|
|
75
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
76
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
77
|
+
Requires-Dist: jinja2; extra == "all"
|
|
78
78
|
Provides-Extra: dev
|
|
79
|
-
Requires-Dist: boto3; extra == "dev"
|
|
80
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
81
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
82
|
-
Requires-Dist: pyarrow; extra == "dev"
|
|
83
|
-
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
84
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
85
|
-
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
86
|
-
Requires-Dist: pydantic<2; extra == "dev"
|
|
87
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
88
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
89
|
-
Requires-Dist: openai; extra == "dev"
|
|
90
79
|
Requires-Dist: pandas; extra == "dev"
|
|
91
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
92
80
|
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
81
|
+
Requires-Dist: openai; extra == "dev"
|
|
82
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
83
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
84
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
85
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
86
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
93
87
|
Requires-Dist: tenacity; extra == "dev"
|
|
88
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
89
|
+
Requires-Dist: boto3; extra == "dev"
|
|
90
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
91
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
92
|
+
Requires-Dist: pydantic<2; extra == "dev"
|
|
93
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
94
94
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
95
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
96
95
|
Requires-Dist: numpy<2; extra == "dev"
|
|
96
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
97
97
|
Dynamic: provides-extra
|
|
98
98
|
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=fJD5fNe6f1eLB-O4PfQKIt-Cuiv2K2ksvvsBNQeDW9A,555
|
|
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=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -429,27 +429,30 @@ acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEU
|
|
|
429
429
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
|
|
430
430
|
acryl_datahub_cloud/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
431
|
acryl_datahub_cloud/notifications/notification_recipient_builder.py,sha256=jmAh4q4OTjdYwySn-geRU23eiVWvHzABddr6yXii3E4,14573
|
|
432
|
-
acryl_datahub_cloud/sdk/__init__.py,sha256=
|
|
433
|
-
acryl_datahub_cloud/sdk/assertions_client.py,sha256=
|
|
432
|
+
acryl_datahub_cloud/sdk/__init__.py,sha256=X95kEdCFf0IKh1b0zMZHc7uGpQZ9DjFdT84YQNoI1XE,1782
|
|
433
|
+
acryl_datahub_cloud/sdk/assertions_client.py,sha256=IHBJyKl1F7QrXq0R9N_XZcpoemvzveVsGeo4BmECXug,201116
|
|
434
434
|
acryl_datahub_cloud/sdk/errors.py,sha256=UfaA-u9rp_XhqiWAeVF-PcjgCPxUKLXe0GVkWCuX8Ds,1038
|
|
435
435
|
acryl_datahub_cloud/sdk/resolver_client.py,sha256=X5qy7lewDZ4QarpFrQ7goWDaMSC60sie1srnD4zwyH4,1468
|
|
436
436
|
acryl_datahub_cloud/sdk/subscription_client.py,sha256=1dEYfMUsMbQ7Gf0ap06I13AnYzJsch1aynXareK5xsQ,31432
|
|
437
437
|
acryl_datahub_cloud/sdk/assertion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=
|
|
439
|
-
acryl_datahub_cloud/sdk/assertion/
|
|
438
|
+
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=DCOkqW6OZh7vmButpOfVQ5jGFtVVPF7_8B1QyLqCAp0,61043
|
|
439
|
+
acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py,sha256=dia64PkkqblnzHQ2TxQA7ei0llK-AoYvBf3ML8q1pEE,7441
|
|
440
|
+
acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py,sha256=lXGUxcTO7W7-COaBHtexKShdicHHrsHm8kR1eC9J6xI,8583
|
|
440
441
|
acryl_datahub_cloud/sdk/assertion/types.py,sha256=8TXOEAlMmHyxaG5PEtP8e64aBt5GGlSw0A9KbMU-Yn0,515
|
|
441
442
|
acryl_datahub_cloud/sdk/assertion_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
|
-
acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=
|
|
443
|
-
acryl_datahub_cloud/sdk/assertion_input/
|
|
444
|
-
acryl_datahub_cloud/sdk/assertion_input/
|
|
445
|
-
acryl_datahub_cloud/sdk/assertion_input/
|
|
446
|
-
acryl_datahub_cloud/sdk/assertion_input/
|
|
443
|
+
acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=PoobQjnF9oj3_QtXyaowE-dO0wU21lcbYrCqokrPqHM,67789
|
|
444
|
+
acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py,sha256=CdtWxXhwsQqrEYICSDAt2HVAJ34ZRDJ92ZYihrG8bzE,37879
|
|
445
|
+
acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py,sha256=7BSpO2tF21O7gmAqbpV0o8NN3j5d8SuCXYMfFI-ENWw,7921
|
|
446
|
+
acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py,sha256=SlLdehzt6GgnG-UCfoAFRbRB8HG0fnCbRCceEcvXQP8,12288
|
|
447
|
+
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=heekdl9-Ggu6hgc6JKgtJ8h9RqYLe8fwIy4cksQJlt8,40236
|
|
448
|
+
acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py,sha256=uOd5d-Gh_MD_T7ffGjy8Z8oxolOpBMuzvF-Enmo00TM,14076
|
|
449
|
+
acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py,sha256=Qc4M3QE6ojrfvfX0Y3L26ffwr7vURgOKkr9Q0tlyxT8,28886
|
|
447
450
|
acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
451
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
449
452
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
450
453
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
451
|
-
acryl_datahub_cloud-0.3.12.
|
|
452
|
-
acryl_datahub_cloud-0.3.12.
|
|
453
|
-
acryl_datahub_cloud-0.3.12.
|
|
454
|
-
acryl_datahub_cloud-0.3.12.
|
|
455
|
-
acryl_datahub_cloud-0.3.12.
|
|
454
|
+
acryl_datahub_cloud-0.3.12.2.dist-info/METADATA,sha256=jdqew9HJUrkB6uTWEIjaP7VQwvQpA8KhiartAh53vks,4783
|
|
455
|
+
acryl_datahub_cloud-0.3.12.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
456
|
+
acryl_datahub_cloud-0.3.12.2.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
457
|
+
acryl_datahub_cloud-0.3.12.2.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
458
|
+
acryl_datahub_cloud-0.3.12.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.12.1rc2.dist-info → acryl_datahub_cloud-0.3.12.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|