acryl-datahub-cloud 0.3.12rc4__py3-none-any.whl → 0.3.12rc6__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_forms_notifications/get_feature_flag.gql +7 -0
- acryl_datahub_cloud/sdk/__init__.py +11 -1
- acryl_datahub_cloud/sdk/assertion/__init__.py +0 -0
- acryl_datahub_cloud/sdk/{assertion.py → assertion/assertion_base.py} +565 -166
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +224 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +46 -14
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +1 -2
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +12 -43
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +274 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1202 -27
- acryl_datahub_cloud/sdk/entities/assertion.py +4 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/METADATA +44 -44
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/RECORD +18 -13
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/top_level.txt +0 -0
|
@@ -408,6 +408,7 @@ class Assertion(HasPlatformInstance, HasTags, Entity):
|
|
|
408
408
|
models.FreshnessAssertionInfoClass,
|
|
409
409
|
models.VolumeAssertionInfoClass,
|
|
410
410
|
models.SqlAssertionInfoClass,
|
|
411
|
+
models.FieldAssertionInfoClass,
|
|
411
412
|
]:
|
|
412
413
|
if assertion_info.type not in get_enum_options(models.AssertionTypeClass):
|
|
413
414
|
raise SDKNotYetSupportedError(f"Assertion type: {assertion_info.type}")
|
|
@@ -424,5 +425,8 @@ class Assertion(HasPlatformInstance, HasTags, Entity):
|
|
|
424
425
|
elif assertion_info.type == models.AssertionTypeClass.SQL:
|
|
425
426
|
assert assertion_info.sqlAssertion is not None
|
|
426
427
|
return assertion_info.sqlAssertion
|
|
428
|
+
elif assertion_info.type == models.AssertionTypeClass.FIELD:
|
|
429
|
+
assert assertion_info.fieldAssertion is not None
|
|
430
|
+
return assertion_info.fieldAssertion
|
|
427
431
|
else:
|
|
428
432
|
raise AssertionError("Unreachable code, all cases should be handled above")
|
{acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/METADATA
RENAMED
|
@@ -1,97 +1,97 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.12rc6
|
|
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:
|
|
10
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
11
11
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
12
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
12
13
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
13
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
14
14
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
15
15
|
Provides-Extra: datahub-reporting-forms
|
|
16
|
-
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
17
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
18
16
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
18
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
19
19
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
20
21
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
21
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
22
22
|
Provides-Extra: datahub-reporting-extract-graph
|
|
23
|
-
Requires-Dist:
|
|
23
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
24
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
25
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
26
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
25
27
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
26
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
27
28
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
28
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
29
29
|
Provides-Extra: datahub-reporting-extract-sql
|
|
30
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
30
31
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
32
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
31
33
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
32
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
33
34
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
34
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
35
35
|
Provides-Extra: datahub-usage-reporting
|
|
36
|
-
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
37
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
39
36
|
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
38
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
41
41
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
42
|
-
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
43
42
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
45
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
46
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
47
43
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
45
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
46
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
47
|
+
Requires-Dist: elasticsearch==7.13.4; 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: slack-sdk; extra == "acryl-cs-issues"
|
|
54
53
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
55
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
56
54
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
55
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
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
60
|
Requires-Dist: pandas; extra == "all"
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist: jinja2; extra == "all"
|
|
61
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
63
62
|
Requires-Dist: openai; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
63
|
+
Requires-Dist: boto3; extra == "all"
|
|
64
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
65
65
|
Requires-Dist: tenacity; extra == "all"
|
|
66
|
-
Requires-Dist: duckdb; extra == "all"
|
|
67
66
|
Requires-Dist: polars==1.30.0; extra == "all"
|
|
68
|
-
Requires-Dist:
|
|
67
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
69
68
|
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
70
|
-
Requires-Dist: zenpy; extra == "all"
|
|
71
|
-
Requires-Dist: boto3; extra == "all"
|
|
72
|
-
Requires-Dist: pyarrow; extra == "all"
|
|
73
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
74
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
75
69
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
70
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
76
71
|
Requires-Dist: pydantic<2; extra == "all"
|
|
72
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
73
|
+
Requires-Dist: duckdb; extra == "all"
|
|
74
|
+
Requires-Dist: jinja2; extra == "all"
|
|
75
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
76
|
+
Requires-Dist: zenpy; extra == "all"
|
|
77
77
|
Provides-Extra: dev
|
|
78
|
-
Requires-Dist:
|
|
78
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
79
79
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
80
|
-
Requires-Dist:
|
|
80
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
81
|
+
Requires-Dist: pandas; extra == "dev"
|
|
82
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
83
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
84
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
85
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
86
|
+
Requires-Dist: pydantic<2; extra == "dev"
|
|
87
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
88
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
81
89
|
Requires-Dist: jinja2; extra == "dev"
|
|
82
90
|
Requires-Dist: openai; extra == "dev"
|
|
83
|
-
Requires-Dist:
|
|
84
|
-
Requires-Dist:
|
|
91
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
92
|
+
Requires-Dist: boto3; extra == "dev"
|
|
85
93
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
86
|
-
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
87
94
|
Requires-Dist: zenpy; extra == "dev"
|
|
88
|
-
Requires-Dist:
|
|
89
|
-
Requires-Dist: pyarrow; extra == "dev"
|
|
90
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
91
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
92
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
93
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
94
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
95
|
-
Requires-Dist: pydantic<2; extra == "dev"
|
|
95
|
+
Requires-Dist: tenacity; 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=A0ekQJc9cPsba55yHW1-WmeYOWNcACYDJkvuuo_cYQA,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=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -14,6 +14,7 @@ acryl_datahub_cloud/api/__init__.py,sha256=odqk3YUMCTlGZrZ7NmFFaGNgERcdT0ms4OSVS
|
|
|
14
14
|
acryl_datahub_cloud/api/client.py,sha256=6BXCNbmC4K4dbGfkTXgbSqHabt90PjpEAgb52m7XRX0,145
|
|
15
15
|
acryl_datahub_cloud/datahub_forms_notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py,sha256=VyVUze33LMnKxSNRreL1jYOogg4vswT61oXiiS7MDHk,21419
|
|
17
|
+
acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql,sha256=RibIdribsX7X4xnm6_rzZT5C2e4a4gf7rFCq9nt0vtM,91
|
|
17
18
|
acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql,sha256=ibSULhbUmRLpOAygirKJXCorLubscTEEXP55GlBzldI,271
|
|
18
19
|
acryl_datahub_cloud/datahub_forms_notifications/query.py,sha256=4OfPmNkNdrPLS0XbQHZASsdfUeme3ZxucJQDsBI3hG0,498
|
|
19
20
|
acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql,sha256=_JtqPvgyMVTH_rwxB2QQBl3iItr95rUqosiVnvAJJyk,555
|
|
@@ -428,22 +429,26 @@ acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEU
|
|
|
428
429
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
|
|
429
430
|
acryl_datahub_cloud/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
431
|
acryl_datahub_cloud/notifications/notification_recipient_builder.py,sha256=jmAh4q4OTjdYwySn-geRU23eiVWvHzABddr6yXii3E4,14573
|
|
431
|
-
acryl_datahub_cloud/sdk/__init__.py,sha256=
|
|
432
|
-
acryl_datahub_cloud/sdk/
|
|
433
|
-
acryl_datahub_cloud/sdk/assertions_client.py,sha256=gYWl-lnqLsDcjXiBwOBLzAtebTPf7SVJ_M9MM-ijPnI,79521
|
|
432
|
+
acryl_datahub_cloud/sdk/__init__.py,sha256=Iqt8XTmyEwkM6Bh2P3bR2CcT9TQVgUPYJAOrhVXIcoU,1189
|
|
433
|
+
acryl_datahub_cloud/sdk/assertions_client.py,sha256=Y8CV7icioWxl2C3Sf3EIPXj0di6EI8RhfKJQo0Y-JY0,138113
|
|
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=pBcYsnHwjVchYm0Yr9fPHOCKwAvhTl6Lk568o3YSAhQ,29787
|
|
437
|
+
acryl_datahub_cloud/sdk/assertion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
+
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=hs1R-ED7_F6Yd9E6QH1RRZDC_Zo4mdSurU6C-RkVIQY,52307
|
|
439
|
+
acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py,sha256=kR9hnx7YDDmkccx7hem2UWZBGi-XcFHOwbaEvjrTWTU,9000
|
|
440
|
+
acryl_datahub_cloud/sdk/assertion/types.py,sha256=8TXOEAlMmHyxaG5PEtP8e64aBt5GGlSw0A9KbMU-Yn0,515
|
|
437
441
|
acryl_datahub_cloud/sdk/assertion_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=
|
|
439
|
-
acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py,sha256=
|
|
440
|
-
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=
|
|
442
|
+
acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=KoKjr2l4N53uasYqlvyHAPLa4eEIBZmJa-kkTsuggx8,64721
|
|
443
|
+
acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py,sha256=XcEQF5hZfr6AXubjgFIpg9tP1LpG5SiKDU3YEK44U6c,10594
|
|
444
|
+
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=IeQpI5Vka9mgCpTqeLjO4ILFeN9D02oWcgc5tgV8xdA,38787
|
|
445
|
+
acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py,sha256=7T7lG5St5WR1fBA6cMI5z7gwJdF0LlUMbMh2Akt1bns,10254
|
|
441
446
|
acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
|
-
acryl_datahub_cloud/sdk/entities/assertion.py,sha256
|
|
447
|
+
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
443
448
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
444
449
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
445
|
-
acryl_datahub_cloud-0.3.
|
|
446
|
-
acryl_datahub_cloud-0.3.
|
|
447
|
-
acryl_datahub_cloud-0.3.
|
|
448
|
-
acryl_datahub_cloud-0.3.
|
|
449
|
-
acryl_datahub_cloud-0.3.
|
|
450
|
+
acryl_datahub_cloud-0.3.12rc6.dist-info/METADATA,sha256=5t_XeSZc3CnhSCCRZ91Gg8xvwAHGaJpFOMidS8DSI5E,4723
|
|
451
|
+
acryl_datahub_cloud-0.3.12rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
452
|
+
acryl_datahub_cloud-0.3.12rc6.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
453
|
+
acryl_datahub_cloud-0.3.12rc6.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
454
|
+
acryl_datahub_cloud-0.3.12rc6.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/top_level.txt
RENAMED
|
File without changes
|