acryl-datahub-cloud 0.3.7.7rc7__py3-none-any.whl → 0.3.7.7rc8__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.

@@ -365,6 +365,7 @@
365
365
  "Searchable": {
366
366
  "fieldType": "KEYWORD"
367
367
  },
368
+ "deprecated": true,
368
369
  "type": [
369
370
  {
370
371
  "type": "enum",
@@ -383,7 +384,7 @@
383
384
  ],
384
385
  "name": "filterStatus",
385
386
  "default": "DISABLED",
386
- "doc": "The filter status of this structured property - whether it will show up in search filters or not"
387
+ "doc": "The filter status of this structured property - whether it will show up in search filters or not\nDeprecated! Use structuredPropertySettings.showInSearchFilters instead"
387
388
  }
388
389
  ]
389
390
  }
@@ -6,6 +6,7 @@
6
6
  "entityCategory": "core",
7
7
  "entityAspects": [
8
8
  "propertyDefinition",
9
+ "structuredPropertySettings",
9
10
  "institutionalMemory",
10
11
  "status",
11
12
  "share",
@@ -0,0 +1,114 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "structuredPropertySettings"
5
+ },
6
+ "name": "StructuredPropertySettings",
7
+ "namespace": "com.linkedin.pegasus2avro.structured",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "fieldType": "BOOLEAN"
12
+ },
13
+ "type": "boolean",
14
+ "name": "isHidden",
15
+ "default": false,
16
+ "doc": "Whether or not this asset should be hidden in the main application"
17
+ },
18
+ {
19
+ "Searchable": {
20
+ "fieldType": "BOOLEAN"
21
+ },
22
+ "type": "boolean",
23
+ "name": "showInSearchFilters",
24
+ "default": false,
25
+ "doc": "Whether or not this asset should be displayed as a search filter"
26
+ },
27
+ {
28
+ "Searchable": {
29
+ "fieldType": "BOOLEAN"
30
+ },
31
+ "type": "boolean",
32
+ "name": "showInAssetSummary",
33
+ "default": false,
34
+ "doc": "Whether or not this asset should be displayed in the asset sidebar"
35
+ },
36
+ {
37
+ "Searchable": {
38
+ "fieldType": "BOOLEAN"
39
+ },
40
+ "type": "boolean",
41
+ "name": "showAsAssetBadge",
42
+ "default": false,
43
+ "doc": "Whether or not this asset should be displayed as an asset badge on other\nasset's headers"
44
+ },
45
+ {
46
+ "Searchable": {
47
+ "fieldType": "BOOLEAN"
48
+ },
49
+ "type": "boolean",
50
+ "name": "showInColumnsTable",
51
+ "default": false,
52
+ "doc": "Whether or not this asset should be displayed as a column in the schema field table\nin a Dataset's \"Columns\" tab."
53
+ },
54
+ {
55
+ "Searchable": {
56
+ "/time": {
57
+ "fieldName": "lastModifiedSettings",
58
+ "fieldType": "DATETIME"
59
+ }
60
+ },
61
+ "type": [
62
+ "null",
63
+ {
64
+ "type": "record",
65
+ "name": "AuditStamp",
66
+ "namespace": "com.linkedin.pegasus2avro.common",
67
+ "fields": [
68
+ {
69
+ "type": "long",
70
+ "name": "time",
71
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
72
+ },
73
+ {
74
+ "java": {
75
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
76
+ },
77
+ "type": "string",
78
+ "name": "actor",
79
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
80
+ "Urn": "Urn"
81
+ },
82
+ {
83
+ "java": {
84
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
85
+ },
86
+ "type": [
87
+ "null",
88
+ "string"
89
+ ],
90
+ "name": "impersonator",
91
+ "default": null,
92
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
93
+ "Urn": "Urn"
94
+ },
95
+ {
96
+ "type": [
97
+ "null",
98
+ "string"
99
+ ],
100
+ "name": "message",
101
+ "default": null,
102
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
103
+ }
104
+ ],
105
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
106
+ }
107
+ ],
108
+ "name": "lastModified",
109
+ "default": null,
110
+ "doc": "Last Modified Audit stamp"
111
+ }
112
+ ],
113
+ "doc": "Settings specific to a structured property entity"
114
+ }
@@ -1,80 +1,80 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.7.7rc7
3
+ Version: 0.3.7.7rc8
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: pydantic<2; extra == "datahub-lineage-features"
8
- Requires-Dist: pyarrow; extra == "datahub-lineage-features"
9
- Requires-Dist: duckdb; extra == "datahub-lineage-features"
10
7
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
11
8
  Requires-Dist: pandas; extra == "datahub-lineage-features"
9
+ Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
+ Requires-Dist: duckdb; extra == "datahub-lineage-features"
11
+ Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
- Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
13
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
14
14
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
15
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
16
15
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
17
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
16
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
17
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
18
18
  Provides-Extra: datahub-reporting-extract-graph
19
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
20
- Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
22
- Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
23
19
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
24
20
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
21
+ Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
22
+ Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
24
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
25
25
  Provides-Extra: datahub-reporting-extract-sql
26
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
26
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
27
27
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
28
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
29
28
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
30
- Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
30
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
31
31
  Provides-Extra: datahub-usage-feature-reporting
32
- Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
33
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
32
+ Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
34
33
  Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
34
+ Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
35
35
  Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
36
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
36
+ Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
37
37
  Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
38
- Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
38
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
39
39
  Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
40
40
  Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
41
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
42
- Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
41
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
42
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
43
43
  Provides-Extra: acryl-cs-issues
44
44
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
45
- Requires-Dist: openai; extra == "acryl-cs-issues"
46
45
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
47
46
  Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
47
+ Requires-Dist: openai; extra == "acryl-cs-issues"
48
48
  Provides-Extra: all
49
- Requires-Dist: pydantic<2; extra == "all"
50
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
49
+ Requires-Dist: pandas; extra == "all"
51
50
  Requires-Dist: pyarrow; extra == "all"
51
+ Requires-Dist: boto3; extra == "all"
52
52
  Requires-Dist: numpy<2; extra == "all"
53
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
54
- Requires-Dist: zenpy; extra == "all"
53
+ Requires-Dist: pydantic<2; extra == "all"
55
54
  Requires-Dist: polars<=1.16.0; extra == "all"
55
+ Requires-Dist: zenpy; extra == "all"
56
+ Requires-Dist: slack-sdk; extra == "all"
57
+ Requires-Dist: openai; extra == "all"
58
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
56
59
  Requires-Dist: jinja2; extra == "all"
57
- Requires-Dist: boto3; extra == "all"
58
60
  Requires-Dist: duckdb; extra == "all"
59
- Requires-Dist: slack-sdk; extra == "all"
60
61
  Requires-Dist: scipy<=1.14.1; extra == "all"
61
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
62
- Requires-Dist: pandas; extra == "all"
63
- Requires-Dist: openai; extra == "all"
62
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
63
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
64
64
  Provides-Extra: dev
65
- Requires-Dist: pydantic<2; extra == "dev"
66
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
65
+ Requires-Dist: pandas; extra == "dev"
67
66
  Requires-Dist: pyarrow; extra == "dev"
67
+ Requires-Dist: boto3; extra == "dev"
68
68
  Requires-Dist: numpy<2; extra == "dev"
69
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
70
- Requires-Dist: zenpy; extra == "dev"
69
+ Requires-Dist: pydantic<2; extra == "dev"
71
70
  Requires-Dist: polars<=1.16.0; extra == "dev"
72
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
71
+ Requires-Dist: zenpy; extra == "dev"
72
+ Requires-Dist: slack-sdk; extra == "dev"
73
+ Requires-Dist: openai; extra == "dev"
74
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
73
75
  Requires-Dist: jinja2; extra == "dev"
74
- Requires-Dist: boto3; extra == "dev"
75
76
  Requires-Dist: duckdb; extra == "dev"
76
- Requires-Dist: slack-sdk; extra == "dev"
77
77
  Requires-Dist: scipy<=1.14.1; extra == "dev"
78
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
79
- Requires-Dist: pandas; extra == "dev"
80
- Requires-Dist: openai; extra == "dev"
78
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
79
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
80
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=t6Faupx_kI2Tm3LxzHjqXz5vMOtcdD6rvraj_OdRMhk,557
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=pgCX4iUkwp9eh47t-ZUT2esMECBcRSrNYENwWTC3hEI,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=uFjR2SqGS34y09-S9WqOqNGY8nOq6ptGf4y9781i8Z4,25230
@@ -25,10 +25,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
25
25
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  acryl_datahub_cloud/lineage_features/source.py,sha256=DS9VgFXtGDRP98dHBE4KVoB2MDFE-4FSS5RlBuYZqRY,5519
27
27
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
28
- acryl_datahub_cloud/metadata/schema.avsc,sha256=xpxdbHu5ZYS36v1xZo0TPUp6YWrNVsHORfdFoPAu9aI,1070142
29
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=ij01j8rZNyRZEECPw7OZPHoercAdW726Fly3iQxdsaE,1350416
28
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=p-1rR01mcoHSaunjuI0eBNbsrqCEnBhqq_PF2qQB1ww,1074413
29
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=StVjs4lqb9KTeA99gRIhneAzOvqBDjcLnQEZHE2DHwI,1355405
30
30
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
31
- acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=42Qj-MV_bgobj55sId7kZbMwd2bto8HEZ6mrOxEZmLY,119444
31
+ acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=44Y13gEneLA5tL6mt3IJo-9-8AN2URKXM51zmzesti8,119444
32
32
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
33
33
  acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
34
34
  acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
@@ -107,7 +107,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/secret/__init__.py,sha256
107
107
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/__init__.py,sha256=qA_voeSf0fRLEKPqaRBbxCKr55p663UNGOfxpPZh7XQ,427
108
108
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py,sha256=dmZ-cnA9YrHcbYwKIQHdRzQ0zcFyXzf9e6Uqa4Qsz8E,1497
109
109
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/step/__init__.py,sha256=HLNNbqBlyhcg09eXWx_AMD_JoOtBPYEi2kv12PE0R9E,329
110
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=AmTAUkUmtOVxKc-0Oi2mx0Zr1zo_xoM7NJkyp1OXDr0,1025
110
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=T4RWiXIVKgPxdmrbciYL8w4kQdzvgqwcmnREeY5-aOo,1150
111
111
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/subscription/__init__.py,sha256=JRQ9eerz1qiTd0qe7wc1AUUgeMnnDK31ay39t-qTjiQ,852
112
112
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/tag/__init__.py,sha256=Odb4mzloKJIlpoFHODEIxt_OIgFNrZExcyQtvXxjOFQ,290
113
113
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/telemetry/__init__.py,sha256=N4CJwzAqTrRoCQ2Aoa_e8cUZI_fzn9Zdo2okvO-_nWE,302
@@ -355,8 +355,9 @@ acryl_datahub_cloud/metadata/schemas/SourceCode.avsc,sha256=tUgo2rczO5x1fxw3fYNW
355
355
  acryl_datahub_cloud/metadata/schemas/Status.avsc,sha256=rPZSXSJdwnNywqNx2qll8cdt54aYgI-YUbRr3GK7h78,522
356
356
  acryl_datahub_cloud/metadata/schemas/StorageFeatures.avsc,sha256=F5LFc4P05YrKReB8ZsxJNXSLg2FJaE7vk63NM4GN0dE,1752
357
357
  acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc,sha256=N0NNDrkqbIgEHrb5uz1ynwZh3mb_ICVK7tDcnBLMfjI,4032
358
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=xetghmPnH684RcG6n1fpr-7okLbLfRwzRIBumqz9Miw,12197
359
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=TOVMmlEwM3uMqmQNofHlmyDFJupF5wbj8aDuYGCpSUQ,613
358
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=yLmH1SNHL4c7J6aIA5GBrc1rI3aAyWPlT47yYFnZZYk,12295
359
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-64C6yVU8_D1h5vYeg8fNp5t2S6VLpOEcMZM,649
360
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
360
361
  acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
361
362
  acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=ZTPsp2moR8t9BEzG4tKLcflAsAlY_Yeve-81k7aZ6bY,13143
362
363
  acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
@@ -374,8 +375,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
374
375
  acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
375
376
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
376
377
  acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
377
- acryl_datahub_cloud-0.3.7.7rc7.dist-info/METADATA,sha256=PzpIhzZFMxrQPPfxbRYuZrvstrQXA2yENFycP3RTjO8,4067
378
- acryl_datahub_cloud-0.3.7.7rc7.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
379
- acryl_datahub_cloud-0.3.7.7rc7.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
380
- acryl_datahub_cloud-0.3.7.7rc7.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
381
- acryl_datahub_cloud-0.3.7.7rc7.dist-info/RECORD,,
378
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/METADATA,sha256=NUZa_3GK1abEFCLd8FCdlw8POwRqQntKy9p5Pzgaq0Y,4067
379
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
380
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
381
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
382
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/RECORD,,