ingestr 0.13.26__py3-none-any.whl → 0.13.27__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 ingestr might be problematic. Click here for more details.
- ingestr/src/buildinfo.py +1 -1
- ingestr/src/sources.py +11 -5
- {ingestr-0.13.26.dist-info → ingestr-0.13.27.dist-info}/METADATA +2 -2
- {ingestr-0.13.26.dist-info → ingestr-0.13.27.dist-info}/RECORD +7 -7
- {ingestr-0.13.26.dist-info → ingestr-0.13.27.dist-info}/WHEEL +0 -0
- {ingestr-0.13.26.dist-info → ingestr-0.13.27.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.26.dist-info → ingestr-0.13.27.dist-info}/licenses/LICENSE.md +0 -0
ingestr/src/buildinfo.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "v0.13.
|
|
1
|
+
version = "v0.13.27"
|
ingestr/src/sources.py
CHANGED
|
@@ -1398,13 +1398,19 @@ class GoogleAnalyticsSource:
|
|
|
1398
1398
|
parse_uri = urlparse(uri)
|
|
1399
1399
|
source_fields = parse_qs(parse_uri.query)
|
|
1400
1400
|
cred_path = source_fields.get("credentials_path")
|
|
1401
|
+
cred_base64 = source_fields.get("credentials_base64")
|
|
1401
1402
|
|
|
1402
|
-
if not cred_path:
|
|
1403
|
-
raise ValueError("credentials_path is required to connect Google Analytics")
|
|
1404
|
-
credentials = {}
|
|
1403
|
+
if not cred_path and not cred_base64:
|
|
1404
|
+
raise ValueError("credentials_path or credentials_base64 is required to connect Google Analytics")
|
|
1405
1405
|
|
|
1406
|
-
|
|
1407
|
-
|
|
1406
|
+
credentials = {}
|
|
1407
|
+
if cred_path:
|
|
1408
|
+
with open(cred_path[0], "r") as f:
|
|
1409
|
+
credentials = json.load(f)
|
|
1410
|
+
elif cred_base64:
|
|
1411
|
+
credentials = json.loads(
|
|
1412
|
+
base64.b64decode(cred_base64[0]).decode("utf-8")
|
|
1413
|
+
)
|
|
1408
1414
|
|
|
1409
1415
|
property_id = source_fields.get("property_id")
|
|
1410
1416
|
if not property_id:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ingestr
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.27
|
|
4
4
|
Summary: ingestr is a command-line application that ingests data from various sources and stores them in any database.
|
|
5
5
|
Project-URL: Homepage, https://github.com/bruin-data/ingestr
|
|
6
6
|
Project-URL: Issues, https://github.com/bruin-data/ingestr/issues
|
|
@@ -74,7 +74,7 @@ Requires-Dist: google-cloud-storage==3.1.0
|
|
|
74
74
|
Requires-Dist: google-crc32c==1.6.0
|
|
75
75
|
Requires-Dist: google-resumable-media==2.7.2
|
|
76
76
|
Requires-Dist: googleapis-common-protos==1.69.0
|
|
77
|
-
Requires-Dist: greenlet==3.
|
|
77
|
+
Requires-Dist: greenlet==3.2.0
|
|
78
78
|
Requires-Dist: grpcio-status==1.62.3
|
|
79
79
|
Requires-Dist: grpcio==1.70.0
|
|
80
80
|
Requires-Dist: hdbcli==2.23.27
|
|
@@ -2,7 +2,7 @@ ingestr/conftest.py,sha256=Q03FIJIZpLBbpj55cfCHIKEjc1FCvWJhMF2cidUJKQU,1748
|
|
|
2
2
|
ingestr/main.py,sha256=wvbRCJ2--M0Zw2cYtSH874TxTtlD0wadHREeLG3anOY,25618
|
|
3
3
|
ingestr/src/.gitignore,sha256=8cX1AZTSI0TcdZFGTmS_oyBjpfCzhOEt0DdAo2dFIY8,203
|
|
4
4
|
ingestr/src/blob.py,sha256=onMe5ZHxPXTdcB_s2oGNdMo-XQJ3ajwOsWE9eSTGFmc,1495
|
|
5
|
-
ingestr/src/buildinfo.py,sha256=
|
|
5
|
+
ingestr/src/buildinfo.py,sha256=KAR_TXhR11JwQNb01TN64yrPzC6Xv6G-HVq71tG_n90,21
|
|
6
6
|
ingestr/src/destinations.py,sha256=vrGij4qMPCdXTMIimROWBJFqzOqCM4DFmgyubgSHejA,11279
|
|
7
7
|
ingestr/src/errors.py,sha256=Ufs4_DfE77_E3vnA1fOQdi6cmuLVNm7_SbFLkL1XPGk,686
|
|
8
8
|
ingestr/src/factory.py,sha256=659h_sVRBhtPv2dvtOK8tf3PtUhlK3KsWLrb20_iQKw,5333
|
|
@@ -10,7 +10,7 @@ ingestr/src/filters.py,sha256=5LNpBgm8FJXdrFHGyM7dLVyphKykSpPk7yuQAZ8GML4,1133
|
|
|
10
10
|
ingestr/src/loader.py,sha256=9NaWAyfkXdqAZSS-N72Iwo36Lbx4PyqIfaaH1dNdkFs,1712
|
|
11
11
|
ingestr/src/partition.py,sha256=E0WHqh1FTheQAIVK_-jWUx0dgyYZCD1VxlAm362gao4,964
|
|
12
12
|
ingestr/src/resource.py,sha256=XG-sbBapFVEM7OhHQFQRTdTLlh-mHB-N4V1t8F8Tsww,543
|
|
13
|
-
ingestr/src/sources.py,sha256=
|
|
13
|
+
ingestr/src/sources.py,sha256=Zmjg3pDsCjSl8IG_bwH1eGiBxsrUMVesPLlYtz7YU-U,73859
|
|
14
14
|
ingestr/src/table_definition.py,sha256=REbAbqdlmUMUuRh8nEQRreWjPVOQ5ZcfqGkScKdCrmk,390
|
|
15
15
|
ingestr/src/time.py,sha256=H_Fk2J4ShXyUM-EMY7MqCLZQhlnZMZvO952bmZPc4yE,254
|
|
16
16
|
ingestr/src/version.py,sha256=J_2xgZ0mKlvuHcjdKCx2nlioneLH0I47JiU_Slr_Nwc,189
|
|
@@ -121,8 +121,8 @@ ingestr/testdata/delete_insert_part2.csv,sha256=B_KUzpzbNdDY_n7wWop1mT2cz36TmayS
|
|
|
121
121
|
ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ7ZqYN0,276
|
|
122
122
|
ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
|
|
123
123
|
ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
|
|
124
|
-
ingestr-0.13.
|
|
125
|
-
ingestr-0.13.
|
|
126
|
-
ingestr-0.13.
|
|
127
|
-
ingestr-0.13.
|
|
128
|
-
ingestr-0.13.
|
|
124
|
+
ingestr-0.13.27.dist-info/METADATA,sha256=cq7IIe2m-ecKzlBDJVATmzn-t82fASfuQEgwHRf4v10,13659
|
|
125
|
+
ingestr-0.13.27.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
126
|
+
ingestr-0.13.27.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
|
|
127
|
+
ingestr-0.13.27.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
|
|
128
|
+
ingestr-0.13.27.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|