castor-extractor 0.16.5__py3-none-any.whl → 0.16.9__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 castor-extractor might be problematic. Click here for more details.
- CHANGELOG.md +17 -0
- castor_extractor/utils/__init__.py +2 -1
- castor_extractor/utils/collection.py +32 -0
- castor_extractor/utils/collection_test.py +60 -0
- castor_extractor/utils/time.py +9 -1
- castor_extractor/utils/time_test.py +8 -1
- castor_extractor/visualization/domo/client/client.py +28 -43
- castor_extractor/visualization/domo/client/client_test.py +1 -23
- castor_extractor/visualization/domo/client/endpoints.py +13 -6
- castor_extractor/visualization/domo/client/pagination.py +4 -0
- castor_extractor/visualization/looker/api/client.py +21 -17
- castor_extractor/visualization/looker/api/sdk.py +10 -58
- castor_extractor/visualization/looker/api/utils.py +1 -1
- castor_extractor/visualization/looker/extract.py +2 -1
- castor_extractor/visualization/looker/multithreading.py +1 -1
- castor_extractor/visualization/tableau_revamp/__init__.py +3 -0
- castor_extractor/visualization/tableau_revamp/assets.py +18 -0
- castor_extractor/visualization/tableau_revamp/client/__init__.py +2 -0
- castor_extractor/visualization/tableau_revamp/client/client.py +297 -0
- castor_extractor/visualization/tableau_revamp/client/credentials.py +104 -0
- castor_extractor/visualization/tableau_revamp/client/errors.py +3 -0
- castor_extractor/visualization/tableau_revamp/client/gql_queries.py +134 -0
- castor_extractor/visualization/tableau_revamp/client/tsc_fields.py +34 -0
- castor_extractor/visualization/tableau_revamp/constants.py +5 -0
- castor_extractor/visualization/tableau_revamp/extract.py +53 -0
- castor_extractor/warehouse/databricks/client.py +12 -5
- castor_extractor/warehouse/databricks/client_test.py +22 -3
- castor_extractor/warehouse/databricks/format.py +5 -1
- {castor_extractor-0.16.5.dist-info → castor_extractor-0.16.9.dist-info}/METADATA +6 -3
- {castor_extractor-0.16.5.dist-info → castor_extractor-0.16.9.dist-info}/RECORD +33 -22
- {castor_extractor-0.16.5.dist-info → castor_extractor-0.16.9.dist-info}/LICENCE +0 -0
- {castor_extractor-0.16.5.dist-info → castor_extractor-0.16.9.dist-info}/WHEEL +0 -0
- {castor_extractor-0.16.5.dist-info → castor_extractor-0.16.9.dist-info}/entry_points.txt +0 -0
|
@@ -66,15 +66,34 @@ def test_DatabricksClient__keep_catalog():
|
|
|
66
66
|
assert not client._keep_catalog("something_unknown")
|
|
67
67
|
|
|
68
68
|
|
|
69
|
+
def test_DatabricksClient__get_user_mapping():
|
|
70
|
+
client = MockDatabricksClient()
|
|
71
|
+
users = [
|
|
72
|
+
{"id": "both", "email": "hello@world.com", "user_name": "hello world"},
|
|
73
|
+
{"id": "no_email", "email": "", "user_name": "no email"},
|
|
74
|
+
{"id": "no_name", "email": "no@name.fr", "user_name": ""},
|
|
75
|
+
{"id": "no_both", "email": "", "user_name": ""},
|
|
76
|
+
{"id": "", "email": "no@id.com", "user_name": "no id"},
|
|
77
|
+
]
|
|
78
|
+
expected = {
|
|
79
|
+
"hello@world.com": "both",
|
|
80
|
+
"hello world": "both",
|
|
81
|
+
"no@name.fr": "no_name",
|
|
82
|
+
"no email": "no_email",
|
|
83
|
+
}
|
|
84
|
+
mapping = client._get_user_mapping(users)
|
|
85
|
+
assert mapping == expected
|
|
86
|
+
|
|
87
|
+
|
|
69
88
|
def test_DatabricksClient__match_table_with_user():
|
|
70
89
|
client = MockDatabricksClient()
|
|
71
|
-
|
|
90
|
+
user_mapping = {"bob@castordoc.com": 3}
|
|
72
91
|
|
|
73
92
|
table = {"id": 1, "owner_email": "bob@castordoc.com"}
|
|
74
|
-
table_with_owner = client._match_table_with_user(table,
|
|
93
|
+
table_with_owner = client._match_table_with_user(table, user_mapping)
|
|
75
94
|
|
|
76
95
|
assert table_with_owner == {**table, "owner_external_id": 3}
|
|
77
96
|
|
|
78
97
|
table_without_owner = {"id": 1, "owner_email": None}
|
|
79
|
-
actual = client._match_table_with_user(table_without_owner,
|
|
98
|
+
actual = client._match_table_with_user(table_without_owner, user_mapping)
|
|
80
99
|
assert actual == table_without_owner
|
|
@@ -127,13 +127,17 @@ class DatabricksFormatter:
|
|
|
127
127
|
return email["value"]
|
|
128
128
|
return emails[0]["value"]
|
|
129
129
|
|
|
130
|
+
def _email(self, user: dict) -> Optional[str]:
|
|
131
|
+
emails = user.get("emails")
|
|
132
|
+
return self._primary(emails) if emails else None
|
|
133
|
+
|
|
130
134
|
def format_user(self, raw_users: List[dict]) -> List[dict]:
|
|
131
135
|
users = []
|
|
132
136
|
for user in raw_users:
|
|
133
137
|
users.append(
|
|
134
138
|
{
|
|
135
139
|
"id": user["id"],
|
|
136
|
-
"email": self.
|
|
140
|
+
"email": self._email(user),
|
|
137
141
|
"first_name": None,
|
|
138
142
|
"last_name": user.get("displayName") or user["userName"],
|
|
139
143
|
"user_name": user["userName"],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: castor-extractor
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.9
|
|
4
4
|
Summary: Extract your metadata assets.
|
|
5
5
|
Home-page: https://www.castordoc.com/
|
|
6
6
|
License: EULA
|
|
7
7
|
Author: Castor
|
|
8
8
|
Author-email: support@castordoc.com
|
|
9
|
-
Requires-Python: >=3.8,<3.
|
|
9
|
+
Requires-Python: >=3.8,<3.13
|
|
10
10
|
Classifier: License :: Other/Proprietary License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
18
|
Provides-Extra: all
|
|
18
19
|
Provides-Extra: bigquery
|
|
19
20
|
Provides-Extra: dbt
|
|
@@ -34,8 +35,10 @@ Requires-Dist: google-cloud-core (>=2.1.0,<3.0.0)
|
|
|
34
35
|
Requires-Dist: google-cloud-storage (>=2,<3)
|
|
35
36
|
Requires-Dist: google-resumable-media (>=2.0.3,<3.0.0)
|
|
36
37
|
Requires-Dist: googleapis-common-protos (>=1.53.0,<2.0.0)
|
|
37
|
-
Requires-Dist: looker-sdk (>=
|
|
38
|
+
Requires-Dist: looker-sdk (>=23.0.0) ; extra == "looker" or extra == "all"
|
|
38
39
|
Requires-Dist: msal (>=1.20.0,<2.0.0) ; extra == "powerbi" or extra == "all"
|
|
40
|
+
Requires-Dist: numpy (<1.25) ; python_version >= "3.8" and python_version < "3.9"
|
|
41
|
+
Requires-Dist: numpy (>=1.26,<2) ; python_version >= "3.12" and python_version < "3.13"
|
|
39
42
|
Requires-Dist: psycopg2-binary (>=2.0.0,<3.0.0) ; extra == "metabase" or extra == "postgres" or extra == "redshift" or extra == "all"
|
|
40
43
|
Requires-Dist: pycryptodome (>=3.0.0,<4.0.0) ; extra == "metabase" or extra == "all"
|
|
41
44
|
Requires-Dist: pydantic (>=2.6,<3.0)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
CHANGELOG.md,sha256=
|
|
1
|
+
CHANGELOG.md,sha256=WwEWPQQuGqVnWLhPtEh3SuOlBrNgHyHcLsYuvahpN7E,10437
|
|
2
2
|
Dockerfile,sha256=HcX5z8OpeSvkScQsN-Y7CNMUig_UB6vTMDl7uqzuLGE,303
|
|
3
3
|
LICENCE,sha256=sL-IGa4hweyya1HgzMskrRdybbIa2cktzxb5qmUgDg8,8254
|
|
4
4
|
README.md,sha256=uF6PXm9ocPITlKVSh9afTakHmpLx3TvawLf-CbMP3wM,3578
|
|
@@ -44,7 +44,7 @@ castor_extractor/uploader/env_test.py,sha256=ClCWWtwd2N-5ClIDUxVMeKkWfhhOTxpppsX
|
|
|
44
44
|
castor_extractor/uploader/upload.py,sha256=5Aj3UOx8cpSVvzjYRz7S6nLk249IqUiCia70utU_970,3363
|
|
45
45
|
castor_extractor/uploader/upload_test.py,sha256=BfGjAYEEDBmEcUS6_b3SlKyiQNR1iRf6-qmADDirTJI,328
|
|
46
46
|
castor_extractor/uploader/utils.py,sha256=NCe0tkB28BVhqzOaDhDjaSfODjjcPWB17X6chnvyCWs,478
|
|
47
|
-
castor_extractor/utils/__init__.py,sha256=
|
|
47
|
+
castor_extractor/utils/__init__.py,sha256=bmzAOc-PKsVreMJtF7DGpPQeHrVqxWel_BblRftt6Ag,1186
|
|
48
48
|
castor_extractor/utils/client/__init__.py,sha256=CRE-xJKm6fVV9dB8ljzB5YoOxX4I1sCD1KSgqs3Y8_Y,161
|
|
49
49
|
castor_extractor/utils/client/abstract.py,sha256=aA5Qcb9TwWDSMq8WpXbGkOB20hehwX2VTpqQAwV76wk,2048
|
|
50
50
|
castor_extractor/utils/client/api.py,sha256=tHa7eC11sS_eOCXhlnvUa2haRfOLENmjKgjB09Ijt0s,1664
|
|
@@ -53,7 +53,8 @@ castor_extractor/utils/client/postgres.py,sha256=n6ulaT222WWPY0_6qAZ0MHF0m91HtI9
|
|
|
53
53
|
castor_extractor/utils/client/query.py,sha256=O6D5EjD1KmBlwa786Uw4D4kzxx97_HH50xIIeSWt0B8,205
|
|
54
54
|
castor_extractor/utils/client/uri.py,sha256=jmP9hY-6PRqdc3-vAOdtll_U6q9VCqSqmBAN6QRs3ZI,150
|
|
55
55
|
castor_extractor/utils/client/uri_test.py,sha256=1XKF6qSseCeD4G4ckaNO07JXfGbt7XUVinOZdpEYrDQ,259
|
|
56
|
-
castor_extractor/utils/collection.py,sha256=
|
|
56
|
+
castor_extractor/utils/collection.py,sha256=L4KLCjpgYBEwC7lSPFWBkiUzeLOTv5e-X6c-nibdnmQ,1555
|
|
57
|
+
castor_extractor/utils/collection_test.py,sha256=I9xLnBUPiAGj7UDqEd0G6pcgqjcNHJ5DYXbmTXVhBM8,1713
|
|
57
58
|
castor_extractor/utils/constants.py,sha256=qBQprS9U66mS-RIBXiLujdTSV3WvGv40Bc0khP4Abdk,39
|
|
58
59
|
castor_extractor/utils/dbt/__init__.py,sha256=LHQROlMqYWCc7tcmhdjXtROFpJqUvCg9jPC8avHgD4I,107
|
|
59
60
|
castor_extractor/utils/dbt/assets.py,sha256=JY1nKEGySZ84wNoe7dnizwAYw2q0t8NVaIfqhB2rSw0,148
|
|
@@ -92,8 +93,8 @@ castor_extractor/utils/salesforce/credentials_test.py,sha256=FQRyNk2Jsh6KtYiW20o
|
|
|
92
93
|
castor_extractor/utils/store.py,sha256=D_pVaPsu1MKAJC0K47O_vYTs-Afl6oejravAJdvjmGc,2040
|
|
93
94
|
castor_extractor/utils/string.py,sha256=aW6bbjqEGnh9kT5KZBnMlV6fhdgOJ0ENCkCTDon1xA0,2377
|
|
94
95
|
castor_extractor/utils/string_test.py,sha256=OmRVCJUXMcCTwY-QJDhUViYpxkvQQgNRJLCaXY0iUnk,2535
|
|
95
|
-
castor_extractor/utils/time.py,sha256=
|
|
96
|
-
castor_extractor/utils/time_test.py,sha256=
|
|
96
|
+
castor_extractor/utils/time.py,sha256=Rll1KJVDZdCKjWuiXA_BuB9OHeEfb_f6Z637Kkxnobs,1385
|
|
97
|
+
castor_extractor/utils/time_test.py,sha256=pEwpcHI7wGPnfgwrH1DNHEbPz3HEAryNF5yPL7Dqkp8,448
|
|
97
98
|
castor_extractor/utils/type.py,sha256=87t32cTctEjX-_BqZLtPLWu-M9OVvw_lFU4DbaQ6V0U,313
|
|
98
99
|
castor_extractor/utils/validation.py,sha256=NNMkdyvMzConslnyCM3gmciEtPPvefW0vAT2gNsMhvE,1909
|
|
99
100
|
castor_extractor/utils/validation_test.py,sha256=aSetitOCkH_K-Wto9ISOVGso5jGfTUOBLm3AZnvavO8,1181
|
|
@@ -102,29 +103,29 @@ castor_extractor/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
102
103
|
castor_extractor/visualization/domo/__init__.py,sha256=_mAYVfoVLizfLGF_f6ZiwBhdPpvoJY_diySf33dt3Jo,127
|
|
103
104
|
castor_extractor/visualization/domo/assets.py,sha256=bK1urFR2tnlWkVkkhR32mAKMoKbESNlop-CNGx-65PY,206
|
|
104
105
|
castor_extractor/visualization/domo/client/__init__.py,sha256=UDszV3IXNC9Wp_j55NZ-6ey2INo0TYtAg2QNIJOjglE,88
|
|
105
|
-
castor_extractor/visualization/domo/client/client.py,sha256=
|
|
106
|
-
castor_extractor/visualization/domo/client/client_test.py,sha256=
|
|
106
|
+
castor_extractor/visualization/domo/client/client.py,sha256=8bQgK6TFJcEvSH19ZzVNlsyz86jgIypOAheOCXLORVU,10203
|
|
107
|
+
castor_extractor/visualization/domo/client/client_test.py,sha256=pEIL8AALixq9a7sckW-TVqaz1k4oKUtfGUjGpTPOJi0,1790
|
|
107
108
|
castor_extractor/visualization/domo/client/credentials.py,sha256=CksQ9W9X6IGjTlYN0okwGAmURMRJKAjctxODAvAJUAo,1148
|
|
108
|
-
castor_extractor/visualization/domo/client/endpoints.py,sha256=
|
|
109
|
-
castor_extractor/visualization/domo/client/pagination.py,sha256=
|
|
109
|
+
castor_extractor/visualization/domo/client/endpoints.py,sha256=6UI5psMYaIa1Pq_Gulb4cNna7NZ16xMotScX7yg5TRQ,2367
|
|
110
|
+
castor_extractor/visualization/domo/client/pagination.py,sha256=ukVkHVzoH4mfZ29H9YcnC2YrdVolP10wv25J6Q3ehRw,821
|
|
110
111
|
castor_extractor/visualization/domo/client/pagination_test.py,sha256=nV4yZWfus13QFCr-tlBUgwva21VqfpF6P-0ks_Awwis,581
|
|
111
112
|
castor_extractor/visualization/domo/constants.py,sha256=AriJZPrCY5Z3HRUANrMu-4U0b7hQK_jRDcxiB-hbrQ4,233
|
|
112
113
|
castor_extractor/visualization/domo/extract.py,sha256=GWWRfPEMt4SgzBGFaTcoOabsoOqLRFIEFAtgXwb8LDI,2567
|
|
113
114
|
castor_extractor/visualization/looker/__init__.py,sha256=Xu5bJ3743kaP8szMMp2NXCgvM1EdOQgtic4utUlO9Cc,145
|
|
114
115
|
castor_extractor/visualization/looker/api/__init__.py,sha256=rN03VMucxIqc0yfd17dIe3ZNFpcg5CA09epn1fKJg90,99
|
|
115
|
-
castor_extractor/visualization/looker/api/client.py,sha256=
|
|
116
|
+
castor_extractor/visualization/looker/api/client.py,sha256=tfV-zx5FAtPCtu_NFIxfSFiQ1AtxxIeAj1sHT5Vug3I,9790
|
|
116
117
|
castor_extractor/visualization/looker/api/client_test.py,sha256=wsi20-neBXHaahDqf4nwCp8Ew5fRFCmVHG3OqrePKFs,1868
|
|
117
118
|
castor_extractor/visualization/looker/api/constants.py,sha256=pZpq09tqcGi2Vh8orXxn9eil8ewfPUOLKfVuqgV2W-A,4126
|
|
118
|
-
castor_extractor/visualization/looker/api/sdk.py,sha256=
|
|
119
|
+
castor_extractor/visualization/looker/api/sdk.py,sha256=RiCb-3BAL59iGqLfPEO9490cM05LRv-xGoo-AM-Z4No,2251
|
|
119
120
|
castor_extractor/visualization/looker/api/sdk_test.py,sha256=NHtKZTflPhqzBFHs1TyAQaubgxfzLLwYKFT8rEqR55I,1742
|
|
120
|
-
castor_extractor/visualization/looker/api/utils.py,sha256=
|
|
121
|
+
castor_extractor/visualization/looker/api/utils.py,sha256=TJqq9UBVFtS33VB1zHzT6kU8f9MOyqXsUcr57ZurJy4,588
|
|
121
122
|
castor_extractor/visualization/looker/assets.py,sha256=K08nV6MMIpfF9r91TmCO7_62smHzGRv3gR4aIOootMQ,827
|
|
122
123
|
castor_extractor/visualization/looker/constant.py,sha256=JvmAfbyAg-LQIoI48Slg9k5T0mYggs_76D_6vD-mP88,695
|
|
123
124
|
castor_extractor/visualization/looker/env.py,sha256=vPqirdeGKm3as2T-tBTjbpulQe8W7-3UE2j-Z57wFXk,1174
|
|
124
|
-
castor_extractor/visualization/looker/extract.py,sha256=
|
|
125
|
+
castor_extractor/visualization/looker/extract.py,sha256=Y7ZsiUO3uaAkBX0inhjMcEXX4nyBTo9ewthtLfbQhzU,5132
|
|
125
126
|
castor_extractor/visualization/looker/fields.py,sha256=WmiSehmczWTufCLg4r2Ozq2grUpzxDNvIAHyGuOoGs4,636
|
|
126
127
|
castor_extractor/visualization/looker/fields_test.py,sha256=7Cwq8Qky6aTZg8nCHp1gmPJtd9pGNB4QeMIRRWdHo5w,782
|
|
127
|
-
castor_extractor/visualization/looker/multithreading.py,sha256=
|
|
128
|
+
castor_extractor/visualization/looker/multithreading.py,sha256=6CrMOy9kMBfhHnZI7XrpNNyBiYYCO3CE4AuIjQVlLH0,2610
|
|
128
129
|
castor_extractor/visualization/looker/parameters.py,sha256=Nk2hfrg3L9twU-51Q7Wdp9uaxy8M2_juEebWoLfIMPc,2427
|
|
129
130
|
castor_extractor/visualization/metabase/__init__.py,sha256=hSIoVgPzhQh-9H8XRUzga4EZSOYejGdH-qY_hBNGbyw,125
|
|
130
131
|
castor_extractor/visualization/metabase/assets.py,sha256=47fMax7QjFKyjEuH2twsjd-l9EM4RJutAZb4GbASdkU,2836
|
|
@@ -240,6 +241,16 @@ castor_extractor/visualization/tableau/tests/unit/utils/env_key.py,sha256=fBX8pG
|
|
|
240
241
|
castor_extractor/visualization/tableau/tsc_fields.py,sha256=BoV6XVu-HUan9hxeYRbvbS9dIMfgDlgfOvdY7DiFiZc,966
|
|
241
242
|
castor_extractor/visualization/tableau/types.py,sha256=_T3fahMHRkV2TVaYcjITh61T0FLzSBYKD21VurzkF5M,322
|
|
242
243
|
castor_extractor/visualization/tableau/usage.py,sha256=LlFwlbEr-EnYUJjKZha99CRCRrERJ350oAvzBQlp9_s,427
|
|
244
|
+
castor_extractor/visualization/tableau_revamp/__init__.py,sha256=a3DGjQhaz17gBqW-E84TAgupKbqLC40y5Ajo1yn-ot4,156
|
|
245
|
+
castor_extractor/visualization/tableau_revamp/assets.py,sha256=owlwaI2E4UKk1YhkaHgaAXx6gu3Op6EqZ7bjp0tHI6s,351
|
|
246
|
+
castor_extractor/visualization/tableau_revamp/client/__init__.py,sha256=wmS9uLtUiqNYVloi0-DgD8d2qzu3RVZEAtWiaDp6G_M,90
|
|
247
|
+
castor_extractor/visualization/tableau_revamp/client/client.py,sha256=8BO7J-HFM2j6_f-Hjj3uSWip11eKeZ0cjhxGEqMTPRA,9428
|
|
248
|
+
castor_extractor/visualization/tableau_revamp/client/credentials.py,sha256=fHG32egq6ll2U4BNazalMof_plzfCMQjrN9WOs6kezk,3014
|
|
249
|
+
castor_extractor/visualization/tableau_revamp/client/errors.py,sha256=dTe1shqmWmAXpDpCz-E24m8dGYjt6rvIGV9qQb4jnvI,150
|
|
250
|
+
castor_extractor/visualization/tableau_revamp/client/gql_queries.py,sha256=jBxvjQnOIWfFjMJpr7S_ZPnQhdzabxoO3jyEKi8A8ns,2112
|
|
251
|
+
castor_extractor/visualization/tableau_revamp/client/tsc_fields.py,sha256=WsDliPCo-XsQ7wN-j0gpW9bdxCHvgH-aePywiltzfbU,688
|
|
252
|
+
castor_extractor/visualization/tableau_revamp/constants.py,sha256=PcdudAogQhi3e-knalhgliMKjy5ahN0em_-7XSLrnxM,87
|
|
253
|
+
castor_extractor/visualization/tableau_revamp/extract.py,sha256=2SLUxp5okM4AcEJJ61ZgcC2ikfZZl9MH17CEXMXmgl0,1450
|
|
243
254
|
castor_extractor/warehouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
255
|
castor_extractor/warehouse/abstract/__init__.py,sha256=QNwFRsLpH6aqVpl37qzklLr62iA85Yx6nZAivHDhpyk,366
|
|
245
256
|
castor_extractor/warehouse/abstract/asset.py,sha256=qe5ugm7fnkvjbzdELRAeywbuKH4OLq2YHlXdjepehxE,2159
|
|
@@ -266,11 +277,11 @@ castor_extractor/warehouse/bigquery/queries/view_ddl.sql,sha256=obCm-IN9V8_YSZTw
|
|
|
266
277
|
castor_extractor/warehouse/bigquery/query.py,sha256=hrFfjd5jW2oQnZ6ozlkn-gDe6sCIzu5zSX19T9W6fIk,4162
|
|
267
278
|
castor_extractor/warehouse/bigquery/types.py,sha256=LZVWSmE57lOemNbB5hBRyYmDk9bFAU4nbRaJWALl6N8,140
|
|
268
279
|
castor_extractor/warehouse/databricks/__init__.py,sha256=bTvDxjGQGM2J3hOnVhfNmFP1y8DK0tySiD_EXe5_xWE,200
|
|
269
|
-
castor_extractor/warehouse/databricks/client.py,sha256=
|
|
270
|
-
castor_extractor/warehouse/databricks/client_test.py,sha256=
|
|
280
|
+
castor_extractor/warehouse/databricks/client.py,sha256=FsHlpHZ9JTG92Rf_8Z7277o9HBaAD0CKxSEHiujOgXg,8271
|
|
281
|
+
castor_extractor/warehouse/databricks/client_test.py,sha256=Y-LBveZFRVaaL49Lo2MwbcJReBcYLNRdHtR_w7xWNWQ,3381
|
|
271
282
|
castor_extractor/warehouse/databricks/credentials.py,sha256=PpGv5_GP320UQjV_gvaxSpOw58AmqSznmjGhGfe6bdU,655
|
|
272
283
|
castor_extractor/warehouse/databricks/extract.py,sha256=-vJhAIxSu1lD_xGl-GXZYTmc5BGu0aXM3l-U0UghREM,5773
|
|
273
|
-
castor_extractor/warehouse/databricks/format.py,sha256=
|
|
284
|
+
castor_extractor/warehouse/databricks/format.py,sha256=Nd5L89yWhpIl0OEMV7WK1H3JYUa9WGPC0c-NUOT_uXM,5101
|
|
274
285
|
castor_extractor/warehouse/databricks/format_test.py,sha256=iPmdJof43fBYL1Sa_fBrCWDQHCHgm7IWCZag1kWkj9E,1970
|
|
275
286
|
castor_extractor/warehouse/databricks/types.py,sha256=T2SyLy9pY_olLtstdC77moPxIiikVsuQLMxh92YMJQo,78
|
|
276
287
|
castor_extractor/warehouse/mysql/__init__.py,sha256=2KFDogo9GNbApHqw3Vm5t_uNmIRjdp76nmP_WQQMfQY,116
|
|
@@ -357,8 +368,8 @@ castor_extractor/warehouse/synapse/queries/schema.sql,sha256=aX9xNrBD_ydwl-znGSF
|
|
|
357
368
|
castor_extractor/warehouse/synapse/queries/table.sql,sha256=mCE8bR1Vb7j7SwZW2gafcXidQ2fo1HwxcybA8wP2Kfs,1049
|
|
358
369
|
castor_extractor/warehouse/synapse/queries/user.sql,sha256=sTb_SS7Zj3AXW1SggKPLNMCd0qoTpL7XI_BJRMaEpBg,67
|
|
359
370
|
castor_extractor/warehouse/synapse/queries/view_ddl.sql,sha256=3EVbp5_yTgdByHFIPLHmnoOnqqLE77SrjAwFDvu4e54,249
|
|
360
|
-
castor_extractor-0.16.
|
|
361
|
-
castor_extractor-0.16.
|
|
362
|
-
castor_extractor-0.16.
|
|
363
|
-
castor_extractor-0.16.
|
|
364
|
-
castor_extractor-0.16.
|
|
371
|
+
castor_extractor-0.16.9.dist-info/LICENCE,sha256=sL-IGa4hweyya1HgzMskrRdybbIa2cktzxb5qmUgDg8,8254
|
|
372
|
+
castor_extractor-0.16.9.dist-info/METADATA,sha256=qRP78w8BztI4N8IyOLoESkFdhKWByXf7PQQjFLTvu6A,6582
|
|
373
|
+
castor_extractor-0.16.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
374
|
+
castor_extractor-0.16.9.dist-info/entry_points.txt,sha256=SbyPk58Gh-FRztfCNnUZQ6w7SatzNJFZ6GIJLNsy7tI,1427
|
|
375
|
+
castor_extractor-0.16.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|