acryl-datahub-cloud 0.3.12rc8__py3-none-any.whl → 0.3.12rc10__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 +29 -13
- acryl_datahub_cloud/metadata/schema.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +9 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +8 -10
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +2 -4
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +3 -5
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +2 -4
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +2 -4
- acryl_datahub_cloud/sdk/assertions_client.py +163 -411
- {acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/METADATA +37 -37
- {acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/RECORD +15 -15
- {acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/top_level.txt +0 -0
{acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.12rc10
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Requires-Dist: croniter
|
|
@@ -8,90 +8,90 @@ Requires-Dist: pytz
|
|
|
8
8
|
Requires-Dist: types-croniter
|
|
9
9
|
Provides-Extra: datahub-lineage-features
|
|
10
10
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
11
|
-
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
12
11
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
12
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
13
13
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
14
14
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
15
15
|
Provides-Extra: datahub-reporting-forms
|
|
16
16
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
-
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
18
17
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
19
18
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
19
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
20
20
|
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
21
21
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
22
22
|
Provides-Extra: datahub-reporting-extract-graph
|
|
23
23
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
|
-
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
25
24
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
25
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
26
26
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
27
27
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
28
28
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
29
29
|
Provides-Extra: datahub-reporting-extract-sql
|
|
30
30
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
|
-
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
32
31
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
32
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
33
33
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
34
34
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
35
35
|
Provides-Extra: datahub-usage-reporting
|
|
36
|
-
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
37
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
39
|
-
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
41
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
42
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
43
36
|
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
38
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
45
40
|
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
41
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
46
42
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
47
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
45
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
46
|
+
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
47
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
48
48
|
Provides-Extra: datahub-metadata-sharing
|
|
49
49
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
50
50
|
Provides-Extra: datahub-action-request-owner
|
|
51
51
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
52
52
|
Provides-Extra: acryl-cs-issues
|
|
53
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
53
54
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
54
55
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
55
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
56
56
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
57
57
|
Provides-Extra: datahub-forms-notifications
|
|
58
58
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
59
59
|
Provides-Extra: all
|
|
60
|
-
Requires-Dist: polars==1.30.0; extra == "all"
|
|
61
|
-
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
62
60
|
Requires-Dist: zenpy; extra == "all"
|
|
63
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
64
61
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
67
|
-
Requires-Dist: duckdb; extra == "all"
|
|
68
|
-
Requires-Dist: pandas; extra == "all"
|
|
69
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
62
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
70
63
|
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
64
|
+
Requires-Dist: pandas; extra == "all"
|
|
65
|
+
Requires-Dist: duckdb; extra == "all"
|
|
71
66
|
Requires-Dist: tenacity; extra == "all"
|
|
67
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
68
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
69
|
+
Requires-Dist: boto3; extra == "all"
|
|
70
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
71
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
72
|
+
Requires-Dist: polars==1.30.0; extra == "all"
|
|
72
73
|
Requires-Dist: openai; extra == "all"
|
|
73
|
-
Requires-Dist: pyarrow; extra == "all"
|
|
74
74
|
Requires-Dist: pydantic<2; extra == "all"
|
|
75
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
75
76
|
Requires-Dist: jinja2; extra == "all"
|
|
76
|
-
Requires-Dist: boto3; extra == "all"
|
|
77
77
|
Provides-Extra: dev
|
|
78
|
-
Requires-Dist:
|
|
79
|
-
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
78
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
80
79
|
Requires-Dist: tenacity; extra == "dev"
|
|
80
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
81
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
82
|
+
Requires-Dist: boto3; extra == "dev"
|
|
81
83
|
Requires-Dist: zenpy; extra == "dev"
|
|
82
|
-
Requires-Dist:
|
|
84
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
85
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
83
86
|
Requires-Dist: pyarrow; extra == "dev"
|
|
87
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
88
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
89
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
90
|
+
Requires-Dist: openai; extra == "dev"
|
|
91
|
+
Requires-Dist: pandas; extra == "dev"
|
|
92
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
84
93
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
85
94
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
86
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
87
95
|
Requires-Dist: jinja2; extra == "dev"
|
|
88
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
89
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
90
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
91
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
92
|
-
Requires-Dist: pandas; extra == "dev"
|
|
93
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
94
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
95
|
-
Requires-Dist: boto3; extra == "dev"
|
|
96
96
|
Dynamic: provides-extra
|
|
97
97
|
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=ta7jFV-hmQVmIZpt1QKKCJKi9hqOO2-JIFIeWkkRP80,557
|
|
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
|
|
@@ -26,7 +26,7 @@ acryl_datahub_cloud/datahub_metadata_sharing/scroll_shared_entities.gql,sha256=N
|
|
|
26
26
|
acryl_datahub_cloud/datahub_metadata_sharing/share_entity.gql,sha256=tJ0VkAekRQCxZ3TkaC0nVqMHQoILqf2J6J-HfbSRL0U,286
|
|
27
27
|
acryl_datahub_cloud/datahub_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=tDxWiXjZCpc5LcMF_ADb7eJbRZFSfa9Z0VS2408ekIo,19095
|
|
29
|
-
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=
|
|
29
|
+
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=6Z-n7l0a9rddjGiISt6HMSKGgCx2Z_Asdb5MSclHjWU,22606
|
|
30
30
|
acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=n8DXMbGlAllWh5FcQ4bnUf3HYOiNYsSodWomigtmfWA,7896
|
|
31
31
|
acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=H5y3e35RuwXk23trhcCKsjFkStGlXZiYzdIYf0213Hw,9537
|
|
32
32
|
acryl_datahub_cloud/datahub_reporting/forms.py,sha256=WUmJ3DLcKn4VcSplZFxmzdPrxQY2mYKqKc7hk8XZ9_Q,5939
|
|
@@ -44,7 +44,7 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
44
44
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
46
46
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
47
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
47
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=mXfE_yCTBNJ7V-Hq_lwj6xy-Ef0Imvter_Fpw11l5gY,1156047
|
|
48
48
|
acryl_datahub_cloud/metadata/schema_classes.py,sha256=XrT0EQn0gO1-x2o-7OYet4RqwfeCPxagqH_bkIo7o58,1492667
|
|
49
49
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
50
50
|
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=GrTD3dMb9pdGg_Zpyq0VFufMsg6580Yg7SoU-Irtod8,163823
|
|
@@ -420,7 +420,7 @@ acryl_datahub_cloud/metadata/schemas/TestResults.avsc,sha256=_n0Cl0zd3yvtxVntU5q
|
|
|
420
420
|
acryl_datahub_cloud/metadata/schemas/TrainingData.avsc,sha256=7p7sFBA_UyV5IbNU5qLgS3vVu70yevKCfJKSGmTzVTg,2069
|
|
421
421
|
acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc,sha256=iaeFRbL2aVSYFwj-HQHyfIVaHRrK3kLbkkLXgIfJTsk,10639
|
|
422
422
|
acryl_datahub_cloud/metadata/schemas/UsageAggregation.avsc,sha256=QaF6lyWGUq8IlRel2h4qIXOXCMxBhrwjoaUELsd-I6g,4538
|
|
423
|
-
acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=
|
|
423
|
+
acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=hSUBdXc_wkuXIr8ziJCiRRjCg0k1CAQUqN7B9sP66yo,6790
|
|
424
424
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
425
425
|
acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=hT4BS3rSZYfJpjzv1rYzJJQjU_r_PP3h-3GSrSObf38,8089
|
|
426
426
|
acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
|
|
@@ -430,7 +430,7 @@ acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAz
|
|
|
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
432
|
acryl_datahub_cloud/sdk/__init__.py,sha256=Iqt8XTmyEwkM6Bh2P3bR2CcT9TQVgUPYJAOrhVXIcoU,1189
|
|
433
|
-
acryl_datahub_cloud/sdk/assertions_client.py,sha256=
|
|
433
|
+
acryl_datahub_cloud/sdk/assertions_client.py,sha256=BxrbtF95m0UKQGpg0cLaWQkQjq04vKMxwt7ecfTiSNQ,164157
|
|
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
|
|
@@ -439,17 +439,17 @@ acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=2BQkN93vKAqb-fBX10f1y
|
|
|
439
439
|
acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py,sha256=kR9hnx7YDDmkccx7hem2UWZBGi-XcFHOwbaEvjrTWTU,9000
|
|
440
440
|
acryl_datahub_cloud/sdk/assertion/types.py,sha256=8TXOEAlMmHyxaG5PEtP8e64aBt5GGlSw0A9KbMU-Yn0,515
|
|
441
441
|
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/freshness_assertion_input.py,sha256=
|
|
444
|
-
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=
|
|
445
|
-
acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py,sha256=
|
|
446
|
-
acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py,sha256=
|
|
442
|
+
acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=AQYvPS2ESD2v3FnijbineFYQmp9zZ4gn3GaWq4fZw2I,64849
|
|
443
|
+
acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py,sha256=gITXa8P7ktutZhLFfCSfrrRB8vFvwaLBMTW6I57fmm4,10552
|
|
444
|
+
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=ZaGRNq8p34gu_RK_WuOmYmQ8IucU-Co9YUia71IIGiM,38791
|
|
445
|
+
acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py,sha256=5A0rjvpoWO9pjf-KKs2VJDV9LZiQrwZ1flfTuU4u6XU,10212
|
|
446
|
+
acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py,sha256=mO41PmQLyWSMB_t1u2KhCgc3KS6Ug0IIevDVgSBvs8k,26767
|
|
447
447
|
acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
448
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
449
449
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
450
450
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
451
|
-
acryl_datahub_cloud-0.3.
|
|
452
|
-
acryl_datahub_cloud-0.3.
|
|
453
|
-
acryl_datahub_cloud-0.3.
|
|
454
|
-
acryl_datahub_cloud-0.3.
|
|
455
|
-
acryl_datahub_cloud-0.3.
|
|
451
|
+
acryl_datahub_cloud-0.3.12rc10.dist-info/METADATA,sha256=AEAT8epQVxWS7YfS3DhWNw_jLRV1fcHPcCbpsQjx9Vc,4724
|
|
452
|
+
acryl_datahub_cloud-0.3.12rc10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
453
|
+
acryl_datahub_cloud-0.3.12rc10.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
454
|
+
acryl_datahub_cloud-0.3.12rc10.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
455
|
+
acryl_datahub_cloud-0.3.12rc10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.12rc8.dist-info → acryl_datahub_cloud-0.3.12rc10.dist-info}/top_level.txt
RENAMED
|
File without changes
|