ingestr 0.13.1__py3-none-any.whl → 0.13.2__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.
- ingestr/src/destinations.py +12 -4
- ingestr/src/version.py +1 -1
- {ingestr-0.13.1.dist-info → ingestr-0.13.2.dist-info}/METADATA +1 -1
- {ingestr-0.13.1.dist-info → ingestr-0.13.2.dist-info}/RECORD +7 -7
- {ingestr-0.13.1.dist-info → ingestr-0.13.2.dist-info}/WHEEL +0 -0
- {ingestr-0.13.1.dist-info → ingestr-0.13.2.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.1.dist-info → ingestr-0.13.2.dist-info}/licenses/LICENSE.md +0 -0
ingestr/src/destinations.py
CHANGED
|
@@ -297,12 +297,21 @@ class ClickhouseDestination:
|
|
|
297
297
|
raise ValueError(
|
|
298
298
|
"The TCP port of the ClickHouse server is required to establish a connection."
|
|
299
299
|
)
|
|
300
|
-
|
|
300
|
+
|
|
301
301
|
query_params = parse_qs(parsed_uri.query)
|
|
302
|
+
secure = int(query_params["secure"][0]) if "secure" in query_params else 1
|
|
303
|
+
|
|
302
304
|
http_port = (
|
|
303
|
-
int(query_params["http_port"][0])
|
|
305
|
+
int(query_params["http_port"][0])
|
|
306
|
+
if "http_port" in query_params
|
|
307
|
+
else 8443 if secure == 1 else 8123
|
|
304
308
|
)
|
|
305
309
|
|
|
310
|
+
if secure not in (0, 1):
|
|
311
|
+
raise ValueError(
|
|
312
|
+
"Invalid value for secure. Set to `1` for a secure HTTPS connection or `0` for a non-secure HTTP connection."
|
|
313
|
+
)
|
|
314
|
+
|
|
306
315
|
credentials = ClickHouseCredentials(
|
|
307
316
|
{
|
|
308
317
|
"host": host,
|
|
@@ -311,10 +320,9 @@ class ClickhouseDestination:
|
|
|
311
320
|
"password": password,
|
|
312
321
|
"database": database,
|
|
313
322
|
"http_port": http_port,
|
|
314
|
-
"secure":
|
|
323
|
+
"secure": secure,
|
|
315
324
|
}
|
|
316
325
|
)
|
|
317
|
-
|
|
318
326
|
return dlt.destinations.clickhouse(credentials=credentials)
|
|
319
327
|
|
|
320
328
|
def dlt_run_params(self, uri: str, table: str, **kwargs) -> dict:
|
ingestr/src/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.13.
|
|
1
|
+
__version__ = "0.13.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ingestr
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.2
|
|
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
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
ingestr/main.py,sha256=ufn8AcM2ID80ChUApJzYDjnQaurMXOkYfTm6GzAggSQ,24746
|
|
2
2
|
ingestr/src/.gitignore,sha256=8cX1AZTSI0TcdZFGTmS_oyBjpfCzhOEt0DdAo2dFIY8,203
|
|
3
3
|
ingestr/src/blob.py,sha256=XDk_XqmU_He4sQ1brY3ceoZgpq_ZBZihz1gHW9MzqUk,1381
|
|
4
|
-
ingestr/src/destinations.py,sha256=
|
|
4
|
+
ingestr/src/destinations.py,sha256=aMRlgsq5ANnpSQmGqqWY8diB8DsF_WHbb667GnJ56js,11178
|
|
5
5
|
ingestr/src/errors.py,sha256=Ufs4_DfE77_E3vnA1fOQdi6cmuLVNm7_SbFLkL1XPGk,686
|
|
6
6
|
ingestr/src/factory.py,sha256=3XM2rilA69vkkOCHNzUt1XqCOc3gLMnOnlQmW5d1V5s,4870
|
|
7
7
|
ingestr/src/filters.py,sha256=0JQXeAr2APFMnW2sd-6BlAMWv93bXV17j8b5MM8sHmM,580
|
|
8
8
|
ingestr/src/sources.py,sha256=VBuD6ngMHKaCLeYZ9Oe9tw67578hPc1dP_5iBNtEJdM,61683
|
|
9
9
|
ingestr/src/table_definition.py,sha256=REbAbqdlmUMUuRh8nEQRreWjPVOQ5ZcfqGkScKdCrmk,390
|
|
10
10
|
ingestr/src/time.py,sha256=H_Fk2J4ShXyUM-EMY7MqCLZQhlnZMZvO952bmZPc4yE,254
|
|
11
|
-
ingestr/src/version.py,sha256=
|
|
11
|
+
ingestr/src/version.py,sha256=blu6md2c3Nnj5gDBi8U36sYO3k8HcND8s7UoQBjfn3g,23
|
|
12
12
|
ingestr/src/adjust/__init__.py,sha256=ULjtJqrNS6XDvUyGl0tjl12-tLyXlCgeFe2icTbtu3Q,3255
|
|
13
13
|
ingestr/src/adjust/adjust_helpers.py,sha256=av97NPSn-hQtTbAC0vUSCAWYePmOiG5R-DGdMssm7FQ,3646
|
|
14
14
|
ingestr/src/airtable/__init__.py,sha256=GHWYrjI2qhs_JihdNJysB0Ni3bzqT_MLXn_S9_Q5zRA,2775
|
|
@@ -100,8 +100,8 @@ ingestr/testdata/delete_insert_part2.csv,sha256=B_KUzpzbNdDY_n7wWop1mT2cz36TmayS
|
|
|
100
100
|
ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ7ZqYN0,276
|
|
101
101
|
ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
|
|
102
102
|
ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
|
|
103
|
-
ingestr-0.13.
|
|
104
|
-
ingestr-0.13.
|
|
105
|
-
ingestr-0.13.
|
|
106
|
-
ingestr-0.13.
|
|
107
|
-
ingestr-0.13.
|
|
103
|
+
ingestr-0.13.2.dist-info/METADATA,sha256=ivVRv68P1AR_inmOV4_yMW8tfTnTtE7EBnA-bKDiIL4,8252
|
|
104
|
+
ingestr-0.13.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
105
|
+
ingestr-0.13.2.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
|
|
106
|
+
ingestr-0.13.2.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
|
|
107
|
+
ingestr-0.13.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|