ingestr 0.13.13__py3-none-any.whl → 0.14.104__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/conftest.py +72 -0
- ingestr/main.py +134 -87
- ingestr/src/adjust/__init__.py +4 -4
- ingestr/src/adjust/adjust_helpers.py +7 -3
- ingestr/src/airtable/__init__.py +3 -2
- ingestr/src/allium/__init__.py +128 -0
- ingestr/src/anthropic/__init__.py +277 -0
- ingestr/src/anthropic/helpers.py +525 -0
- ingestr/src/applovin_max/__init__.py +6 -4
- ingestr/src/appsflyer/__init__.py +325 -0
- ingestr/src/appsflyer/client.py +49 -45
- ingestr/src/appstore/__init__.py +1 -0
- ingestr/src/arrow/__init__.py +9 -1
- ingestr/src/asana_source/__init__.py +1 -1
- ingestr/src/attio/__init__.py +102 -0
- ingestr/src/attio/helpers.py +65 -0
- ingestr/src/blob.py +37 -10
- ingestr/src/buildinfo.py +1 -1
- ingestr/src/chess/__init__.py +1 -1
- ingestr/src/clickup/__init__.py +85 -0
- ingestr/src/clickup/helpers.py +47 -0
- ingestr/src/collector/spinner.py +43 -0
- ingestr/src/couchbase_source/__init__.py +118 -0
- ingestr/src/couchbase_source/helpers.py +135 -0
- ingestr/src/cursor/__init__.py +83 -0
- ingestr/src/cursor/helpers.py +188 -0
- ingestr/src/destinations.py +508 -27
- ingestr/src/docebo/__init__.py +589 -0
- ingestr/src/docebo/client.py +435 -0
- ingestr/src/docebo/helpers.py +97 -0
- ingestr/src/elasticsearch/__init__.py +80 -0
- ingestr/src/elasticsearch/helpers.py +138 -0
- ingestr/src/errors.py +8 -0
- ingestr/src/facebook_ads/__init__.py +47 -28
- ingestr/src/facebook_ads/helpers.py +59 -37
- ingestr/src/facebook_ads/settings.py +2 -0
- ingestr/src/facebook_ads/utils.py +39 -0
- ingestr/src/factory.py +107 -2
- ingestr/src/filesystem/__init__.py +8 -3
- ingestr/src/filters.py +46 -3
- ingestr/src/fluxx/__init__.py +9906 -0
- ingestr/src/fluxx/helpers.py +209 -0
- ingestr/src/frankfurter/__init__.py +157 -0
- ingestr/src/frankfurter/helpers.py +48 -0
- ingestr/src/freshdesk/__init__.py +89 -0
- ingestr/src/freshdesk/freshdesk_client.py +137 -0
- ingestr/src/freshdesk/settings.py +9 -0
- ingestr/src/fundraiseup/__init__.py +95 -0
- ingestr/src/fundraiseup/client.py +81 -0
- ingestr/src/github/__init__.py +41 -6
- ingestr/src/github/helpers.py +5 -5
- ingestr/src/google_analytics/__init__.py +22 -4
- ingestr/src/google_analytics/helpers.py +124 -6
- ingestr/src/google_sheets/__init__.py +4 -4
- ingestr/src/google_sheets/helpers/data_processing.py +2 -2
- ingestr/src/hostaway/__init__.py +302 -0
- ingestr/src/hostaway/client.py +288 -0
- ingestr/src/http/__init__.py +35 -0
- ingestr/src/http/readers.py +114 -0
- ingestr/src/http_client.py +24 -0
- ingestr/src/hubspot/__init__.py +66 -23
- ingestr/src/hubspot/helpers.py +52 -22
- ingestr/src/hubspot/settings.py +14 -7
- ingestr/src/influxdb/__init__.py +46 -0
- ingestr/src/influxdb/client.py +34 -0
- ingestr/src/intercom/__init__.py +142 -0
- ingestr/src/intercom/helpers.py +674 -0
- ingestr/src/intercom/settings.py +279 -0
- ingestr/src/isoc_pulse/__init__.py +159 -0
- ingestr/src/jira_source/__init__.py +340 -0
- ingestr/src/jira_source/helpers.py +439 -0
- ingestr/src/jira_source/settings.py +170 -0
- ingestr/src/kafka/__init__.py +4 -1
- ingestr/src/kinesis/__init__.py +139 -0
- ingestr/src/kinesis/helpers.py +82 -0
- ingestr/src/klaviyo/{_init_.py → __init__.py} +5 -6
- ingestr/src/linear/__init__.py +634 -0
- ingestr/src/linear/helpers.py +111 -0
- ingestr/src/linkedin_ads/helpers.py +0 -1
- ingestr/src/mailchimp/__init__.py +126 -0
- ingestr/src/mailchimp/helpers.py +226 -0
- ingestr/src/mailchimp/settings.py +164 -0
- ingestr/src/masking.py +344 -0
- ingestr/src/mixpanel/__init__.py +62 -0
- ingestr/src/mixpanel/client.py +99 -0
- ingestr/src/monday/__init__.py +246 -0
- ingestr/src/monday/helpers.py +392 -0
- ingestr/src/monday/settings.py +328 -0
- ingestr/src/mongodb/__init__.py +72 -8
- ingestr/src/mongodb/helpers.py +915 -38
- ingestr/src/partition.py +32 -0
- ingestr/src/phantombuster/__init__.py +65 -0
- ingestr/src/phantombuster/client.py +87 -0
- ingestr/src/pinterest/__init__.py +82 -0
- ingestr/src/pipedrive/__init__.py +198 -0
- ingestr/src/pipedrive/helpers/__init__.py +23 -0
- ingestr/src/pipedrive/helpers/custom_fields_munger.py +102 -0
- ingestr/src/pipedrive/helpers/pages.py +115 -0
- ingestr/src/pipedrive/settings.py +27 -0
- ingestr/src/pipedrive/typing.py +3 -0
- ingestr/src/plusvibeai/__init__.py +335 -0
- ingestr/src/plusvibeai/helpers.py +544 -0
- ingestr/src/plusvibeai/settings.py +252 -0
- ingestr/src/quickbooks/__init__.py +117 -0
- ingestr/src/resource.py +40 -0
- ingestr/src/revenuecat/__init__.py +83 -0
- ingestr/src/revenuecat/helpers.py +237 -0
- ingestr/src/salesforce/__init__.py +15 -8
- ingestr/src/shopify/__init__.py +1 -17
- ingestr/src/smartsheets/__init__.py +82 -0
- ingestr/src/snapchat_ads/__init__.py +489 -0
- ingestr/src/snapchat_ads/client.py +72 -0
- ingestr/src/snapchat_ads/helpers.py +535 -0
- ingestr/src/socrata_source/__init__.py +83 -0
- ingestr/src/socrata_source/helpers.py +85 -0
- ingestr/src/socrata_source/settings.py +8 -0
- ingestr/src/solidgate/__init__.py +219 -0
- ingestr/src/solidgate/helpers.py +154 -0
- ingestr/src/sources.py +2933 -245
- ingestr/src/stripe_analytics/__init__.py +49 -21
- ingestr/src/stripe_analytics/helpers.py +286 -1
- ingestr/src/stripe_analytics/settings.py +62 -10
- ingestr/src/telemetry/event.py +10 -9
- ingestr/src/tiktok_ads/__init__.py +12 -6
- ingestr/src/tiktok_ads/tiktok_helpers.py +0 -1
- ingestr/src/trustpilot/__init__.py +48 -0
- ingestr/src/trustpilot/client.py +48 -0
- ingestr/src/wise/__init__.py +68 -0
- ingestr/src/wise/client.py +63 -0
- ingestr/src/zoom/__init__.py +99 -0
- ingestr/src/zoom/helpers.py +102 -0
- ingestr/tests/unit/test_smartsheets.py +133 -0
- {ingestr-0.13.13.dist-info → ingestr-0.14.104.dist-info}/METADATA +229 -19
- ingestr-0.14.104.dist-info/RECORD +203 -0
- ingestr/src/appsflyer/_init_.py +0 -24
- ingestr-0.13.13.dist-info/RECORD +0 -115
- {ingestr-0.13.13.dist-info → ingestr-0.14.104.dist-info}/WHEEL +0 -0
- {ingestr-0.13.13.dist-info → ingestr-0.14.104.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.13.dist-info → ingestr-0.14.104.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ingestr
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.104
|
|
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
|
|
@@ -14,54 +14,209 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
15
|
Classifier: Topic :: Database
|
|
16
16
|
Requires-Python: >=3.9
|
|
17
|
+
Requires-Dist: aiobotocore==2.21.1
|
|
18
|
+
Requires-Dist: aiohappyeyeballs==2.4.8
|
|
19
|
+
Requires-Dist: aiohttp==3.11.15
|
|
20
|
+
Requires-Dist: aioitertools==0.12.0
|
|
21
|
+
Requires-Dist: aiosignal==1.3.2
|
|
22
|
+
Requires-Dist: alembic==1.15.1
|
|
23
|
+
Requires-Dist: annotated-types==0.7.0
|
|
17
24
|
Requires-Dist: asana==3.2.3
|
|
25
|
+
Requires-Dist: asn1crypto==1.5.1
|
|
26
|
+
Requires-Dist: asynch==0.2.4
|
|
27
|
+
Requires-Dist: attrs==25.1.0
|
|
28
|
+
Requires-Dist: backoff==2.2.1
|
|
29
|
+
Requires-Dist: bcrypt==4.3.0
|
|
30
|
+
Requires-Dist: boto3==1.37.1
|
|
31
|
+
Requires-Dist: botocore==1.37.1
|
|
32
|
+
Requires-Dist: cachetools==5.5.2
|
|
33
|
+
Requires-Dist: certifi==2025.1.31
|
|
34
|
+
Requires-Dist: cffi==1.17.1
|
|
35
|
+
Requires-Dist: charset-normalizer==3.4.1
|
|
36
|
+
Requires-Dist: ciso8601==2.3.2
|
|
37
|
+
Requires-Dist: click==8.1.8
|
|
18
38
|
Requires-Dist: clickhouse-connect==0.8.14
|
|
19
39
|
Requires-Dist: clickhouse-driver==0.2.9
|
|
20
40
|
Requires-Dist: clickhouse-sqlalchemy==0.2.7
|
|
21
|
-
Requires-Dist: confluent-kafka
|
|
22
|
-
Requires-Dist:
|
|
41
|
+
Requires-Dist: confluent-kafka==2.8.0
|
|
42
|
+
Requires-Dist: couchbase==4.3.6
|
|
43
|
+
Requires-Dist: crate==2.0.0
|
|
44
|
+
Requires-Dist: cryptography==44.0.2
|
|
45
|
+
Requires-Dist: curlify==2.2.1
|
|
46
|
+
Requires-Dist: databricks-sql-connector==4.0.5
|
|
47
|
+
Requires-Dist: databricks-sqlalchemy==1.0.2
|
|
23
48
|
Requires-Dist: dataclasses-json==0.6.7
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
49
|
+
Requires-Dist: decorator==5.2.1
|
|
50
|
+
Requires-Dist: deprecation==2.1.0
|
|
51
|
+
Requires-Dist: dlt-cratedb==0.0.2
|
|
52
|
+
Requires-Dist: dlt==1.16.0
|
|
53
|
+
Requires-Dist: dnspython==2.7.0
|
|
54
|
+
Requires-Dist: duckdb-engine==0.17.0
|
|
55
|
+
Requires-Dist: duckdb==1.2.1
|
|
56
|
+
Requires-Dist: ecdsa==0.19.1
|
|
57
|
+
Requires-Dist: elastic-transport==8.17.1
|
|
58
|
+
Requires-Dist: elasticsearch==8.10.1
|
|
59
|
+
Requires-Dist: enum-compat==0.0.3
|
|
60
|
+
Requires-Dist: et-xmlfile==2.0.0
|
|
61
|
+
Requires-Dist: facebook-business==23.0.0
|
|
62
|
+
Requires-Dist: filelock==3.17.0
|
|
28
63
|
Requires-Dist: flatten-json==0.1.14
|
|
29
|
-
Requires-Dist:
|
|
64
|
+
Requires-Dist: frozenlist==1.5.0
|
|
65
|
+
Requires-Dist: fsspec==2025.3.2
|
|
66
|
+
Requires-Dist: future==1.0.0
|
|
67
|
+
Requires-Dist: gcsfs==2025.3.2
|
|
68
|
+
Requires-Dist: geojson==3.2.0
|
|
69
|
+
Requires-Dist: gitdb==4.0.12
|
|
70
|
+
Requires-Dist: gitpython==3.1.44
|
|
71
|
+
Requires-Dist: giturlparse==0.12.0
|
|
30
72
|
Requires-Dist: google-ads==25.1.0
|
|
31
73
|
Requires-Dist: google-analytics-data==0.18.17
|
|
74
|
+
Requires-Dist: google-api-core==2.24.1
|
|
32
75
|
Requires-Dist: google-api-python-client==2.130.0
|
|
76
|
+
Requires-Dist: google-auth-httplib2==0.2.0
|
|
77
|
+
Requires-Dist: google-auth-oauthlib==1.2.1
|
|
78
|
+
Requires-Dist: google-auth==2.38.0
|
|
33
79
|
Requires-Dist: google-cloud-bigquery-storage==2.24.0
|
|
80
|
+
Requires-Dist: google-cloud-bigquery==3.30.0
|
|
81
|
+
Requires-Dist: google-cloud-core==2.4.2
|
|
82
|
+
Requires-Dist: google-cloud-spanner==3.54.0
|
|
83
|
+
Requires-Dist: google-cloud-storage==3.1.0
|
|
84
|
+
Requires-Dist: google-crc32c==1.6.0
|
|
85
|
+
Requires-Dist: google-resumable-media==2.7.2
|
|
86
|
+
Requires-Dist: googleapis-common-protos==1.69.0
|
|
87
|
+
Requires-Dist: greenlet==3.2.4
|
|
88
|
+
Requires-Dist: grpc-google-iam-v1==0.14.2
|
|
89
|
+
Requires-Dist: grpc-interceptor==0.15.4
|
|
90
|
+
Requires-Dist: grpcio-status==1.62.3
|
|
91
|
+
Requires-Dist: grpcio==1.70.0
|
|
92
|
+
Requires-Dist: hdbcli==2.23.27
|
|
93
|
+
Requires-Dist: hexbytes==1.3.0
|
|
94
|
+
Requires-Dist: httplib2==0.22.0
|
|
95
|
+
Requires-Dist: humanize==4.12.1
|
|
96
|
+
Requires-Dist: idna==3.10
|
|
97
|
+
Requires-Dist: inflection==0.5.1
|
|
98
|
+
Requires-Dist: influxdb-client==1.41.0
|
|
99
|
+
Requires-Dist: intuit-oauth==1.2.4
|
|
100
|
+
Requires-Dist: isodate==0.7.2
|
|
101
|
+
Requires-Dist: jmespath==1.0.1
|
|
102
|
+
Requires-Dist: jsonpath-ng==1.7.0
|
|
103
|
+
Requires-Dist: leb128==1.0.8
|
|
104
|
+
Requires-Dist: lxml==5.3.1
|
|
105
|
+
Requires-Dist: lz4==4.4.3
|
|
106
|
+
Requires-Dist: mako==1.3.9
|
|
107
|
+
Requires-Dist: markdown-it-py==3.0.0
|
|
108
|
+
Requires-Dist: markupsafe==3.0.2
|
|
109
|
+
Requires-Dist: marshmallow==3.26.1
|
|
110
|
+
Requires-Dist: mdurl==0.1.2
|
|
111
|
+
Requires-Dist: monotonic==1.6
|
|
112
|
+
Requires-Dist: more-itertools==10.6.0
|
|
113
|
+
Requires-Dist: multidict==6.1.0
|
|
114
|
+
Requires-Dist: mypy-extensions==1.0.0
|
|
34
115
|
Requires-Dist: mysql-connector-python==9.2.0
|
|
116
|
+
Requires-Dist: numpy==2.2.3
|
|
117
|
+
Requires-Dist: oauthlib==3.2.2
|
|
118
|
+
Requires-Dist: openpyxl==3.1.5
|
|
119
|
+
Requires-Dist: oracledb==3.4.1
|
|
120
|
+
Requires-Dist: orjson==3.11.3
|
|
121
|
+
Requires-Dist: packaging==24.2
|
|
122
|
+
Requires-Dist: pandas==2.2.3
|
|
123
|
+
Requires-Dist: paramiko==3.5.1
|
|
124
|
+
Requires-Dist: pathvalidate==3.2.3
|
|
35
125
|
Requires-Dist: pendulum==3.0.0
|
|
126
|
+
Requires-Dist: platformdirs==4.3.6
|
|
127
|
+
Requires-Dist: pluggy==1.5.0
|
|
128
|
+
Requires-Dist: ply==3.11
|
|
129
|
+
Requires-Dist: propcache==0.3.0
|
|
130
|
+
Requires-Dist: proto-plus==1.26.0
|
|
131
|
+
Requires-Dist: protobuf==4.25.6
|
|
36
132
|
Requires-Dist: psutil==6.1.1
|
|
37
133
|
Requires-Dist: psycopg2-binary==2.9.10
|
|
38
134
|
Requires-Dist: py-machineid==0.6.0
|
|
39
135
|
Requires-Dist: pyairtable==2.3.3
|
|
40
136
|
Requires-Dist: pyarrow==18.1.0
|
|
137
|
+
Requires-Dist: pyasn1-modules==0.4.1
|
|
138
|
+
Requires-Dist: pyasn1==0.6.1
|
|
41
139
|
Requires-Dist: pyathena==3.12.2
|
|
140
|
+
Requires-Dist: pycountry==24.6.1
|
|
141
|
+
Requires-Dist: pycparser==2.22
|
|
142
|
+
Requires-Dist: pydantic-core==2.27.2
|
|
143
|
+
Requires-Dist: pydantic==2.10.6
|
|
144
|
+
Requires-Dist: pygments==2.19.1
|
|
145
|
+
Requires-Dist: pyjwt==2.10.1
|
|
42
146
|
Requires-Dist: pymongo==4.11.1
|
|
43
147
|
Requires-Dist: pymysql==1.1.1
|
|
148
|
+
Requires-Dist: pynacl==1.5.0
|
|
149
|
+
Requires-Dist: pyopenssl==25.0.0
|
|
150
|
+
Requires-Dist: pyparsing==3.2.1
|
|
44
151
|
Requires-Dist: pyrate-limiter==3.7.0
|
|
45
|
-
Requires-Dist:
|
|
152
|
+
Requires-Dist: python-dateutil==2.9.0.post0
|
|
153
|
+
Requires-Dist: python-dotenv==1.0.1
|
|
154
|
+
Requires-Dist: python-jose==3.5.0
|
|
155
|
+
Requires-Dist: python-quickbooks==0.9.2
|
|
156
|
+
Requires-Dist: pytz==2025.1
|
|
157
|
+
Requires-Dist: pyyaml==6.0.2
|
|
158
|
+
Requires-Dist: rauth==0.7.3
|
|
159
|
+
Requires-Dist: reactivex==4.0.4
|
|
160
|
+
Requires-Dist: requests-file==2.1.0
|
|
161
|
+
Requires-Dist: requests-oauthlib==1.3.1
|
|
162
|
+
Requires-Dist: requests-toolbelt==1.0.0
|
|
163
|
+
Requires-Dist: requests==2.32.5
|
|
164
|
+
Requires-Dist: requirements-parser==0.11.0
|
|
165
|
+
Requires-Dist: rich-argparse==1.7.0
|
|
46
166
|
Requires-Dist: rich==13.9.4
|
|
167
|
+
Requires-Dist: rsa==4.9
|
|
47
168
|
Requires-Dist: rudder-sdk-python==2.1.4
|
|
48
|
-
Requires-Dist: s3fs==
|
|
169
|
+
Requires-Dist: s3fs==2025.3.2
|
|
170
|
+
Requires-Dist: s3transfer==0.11.3
|
|
171
|
+
Requires-Dist: semver==3.0.4
|
|
172
|
+
Requires-Dist: setuptools==75.8.2
|
|
173
|
+
Requires-Dist: shellingham==1.5.4
|
|
49
174
|
Requires-Dist: simple-salesforce==1.12.6
|
|
175
|
+
Requires-Dist: simplejson==3.20.1
|
|
176
|
+
Requires-Dist: six==1.17.0
|
|
177
|
+
Requires-Dist: smartsheet-python-sdk==3.0.5
|
|
178
|
+
Requires-Dist: smmap==5.0.2
|
|
179
|
+
Requires-Dist: snowflake-connector-python==3.14.0
|
|
50
180
|
Requires-Dist: snowflake-sqlalchemy==1.6.1
|
|
181
|
+
Requires-Dist: sortedcontainers==2.4.0
|
|
51
182
|
Requires-Dist: sqlalchemy-bigquery==1.12.1
|
|
183
|
+
Requires-Dist: sqlalchemy-cratedb==0.41.0
|
|
52
184
|
Requires-Dist: sqlalchemy-hana==2.0.0
|
|
53
185
|
Requires-Dist: sqlalchemy-redshift==0.8.14
|
|
186
|
+
Requires-Dist: sqlalchemy-spanner==1.11.0
|
|
54
187
|
Requires-Dist: sqlalchemy2-stubs==0.0.2a38
|
|
55
188
|
Requires-Dist: sqlalchemy==1.4.52
|
|
189
|
+
Requires-Dist: sqlglot==26.12.1
|
|
190
|
+
Requires-Dist: sqlparse==0.5.3
|
|
56
191
|
Requires-Dist: stripe==10.7.0
|
|
192
|
+
Requires-Dist: tenacity==9.0.0
|
|
193
|
+
Requires-Dist: thrift==0.16.0
|
|
194
|
+
Requires-Dist: time-machine==2.16.0
|
|
195
|
+
Requires-Dist: tomlkit==0.13.2
|
|
57
196
|
Requires-Dist: tqdm==4.67.1
|
|
197
|
+
Requires-Dist: trino==0.336.0
|
|
58
198
|
Requires-Dist: typer==0.13.1
|
|
59
199
|
Requires-Dist: types-requests==2.32.0.20240907
|
|
60
|
-
Requires-Dist:
|
|
200
|
+
Requires-Dist: types-setuptools==75.8.2.20250305
|
|
201
|
+
Requires-Dist: typing-extensions==4.15.0
|
|
202
|
+
Requires-Dist: typing-inspect==0.9.0
|
|
203
|
+
Requires-Dist: tzdata==2025.1
|
|
204
|
+
Requires-Dist: tzlocal==5.3
|
|
205
|
+
Requires-Dist: uritemplate==4.1.1
|
|
206
|
+
Requires-Dist: urllib3==2.3.0
|
|
207
|
+
Requires-Dist: verlib2==0.2.0
|
|
208
|
+
Requires-Dist: wrapt==1.17.2
|
|
209
|
+
Requires-Dist: yarl==1.18.3
|
|
210
|
+
Requires-Dist: zeep==4.3.1
|
|
211
|
+
Requires-Dist: zstandard==0.23.0
|
|
212
|
+
Requires-Dist: zstd==1.5.6.5
|
|
213
|
+
Provides-Extra: ibm-db
|
|
214
|
+
Requires-Dist: ibm-db-sa==0.4.1; extra == 'ibm-db'
|
|
215
|
+
Requires-Dist: ibm-db==3.2.6; extra == 'ibm-db'
|
|
61
216
|
Provides-Extra: odbc
|
|
62
217
|
Requires-Dist: pyodbc==5.1.0; extra == 'odbc'
|
|
63
218
|
Provides-Extra: oracle
|
|
64
|
-
Requires-Dist:
|
|
219
|
+
Requires-Dist: oracledb>=2.0.0; extra == 'oracle'
|
|
65
220
|
Description-Content-Type: text/markdown
|
|
66
221
|
|
|
67
222
|
<div align="center">
|
|
@@ -153,11 +308,21 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
153
308
|
<td>✅</td>
|
|
154
309
|
<td>✅</td>
|
|
155
310
|
</tr>
|
|
311
|
+
<tr>
|
|
312
|
+
<td>CrateDB</td>
|
|
313
|
+
<td>✅</td>
|
|
314
|
+
<td>✅</td>
|
|
315
|
+
</tr>
|
|
156
316
|
<tr>
|
|
157
317
|
<td>Databricks</td>
|
|
158
318
|
<td>✅</td>
|
|
159
319
|
<td>✅</td>
|
|
160
320
|
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<td>IBM Db2</td>
|
|
323
|
+
<td>✅</td>
|
|
324
|
+
<td>-</td>
|
|
325
|
+
</tr>
|
|
161
326
|
<tr>
|
|
162
327
|
<td>DuckDB</td>
|
|
163
328
|
<td>✅</td>
|
|
@@ -168,6 +333,16 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
168
333
|
<td>✅</td>
|
|
169
334
|
<td>-</td>
|
|
170
335
|
</tr>
|
|
336
|
+
<tr>
|
|
337
|
+
<td>Elasticsearch</td>
|
|
338
|
+
<td>✅</td>
|
|
339
|
+
<td>✅</td>
|
|
340
|
+
</tr>
|
|
341
|
+
<tr>
|
|
342
|
+
<td>GCP Spanner</td>
|
|
343
|
+
<td>✅</td>
|
|
344
|
+
<td>-</td>
|
|
345
|
+
</tr>
|
|
171
346
|
<tr>
|
|
172
347
|
<td>Local CSV file</td>
|
|
173
348
|
<td>✅</td>
|
|
@@ -181,7 +356,12 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
181
356
|
<tr>
|
|
182
357
|
<td>MongoDB</td>
|
|
183
358
|
<td>✅</td>
|
|
184
|
-
<td
|
|
359
|
+
<td>✅</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td>MotherDuck</td>
|
|
363
|
+
<td>✅</td>
|
|
364
|
+
<td>✅</td>
|
|
185
365
|
</tr>
|
|
186
366
|
<tr>
|
|
187
367
|
<td>MySQL</td>
|
|
@@ -218,6 +398,11 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
218
398
|
<td>✅</td>
|
|
219
399
|
<td>❌</td>
|
|
220
400
|
</tr>
|
|
401
|
+
<tr>
|
|
402
|
+
<td>Trino</td>
|
|
403
|
+
<td>✅</td>
|
|
404
|
+
<td>✅</td>
|
|
405
|
+
</tr>
|
|
221
406
|
<tr>
|
|
222
407
|
<td colspan="3" style='text-align:center;'><strong>Platforms</strong></td>
|
|
223
408
|
</tr>
|
|
@@ -229,6 +414,11 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
229
414
|
<td>✅</td>
|
|
230
415
|
<td>-</td>
|
|
231
416
|
</tr>
|
|
417
|
+
<tr>
|
|
418
|
+
<td>Amazon Kinesis</td>
|
|
419
|
+
<td>✅</td>
|
|
420
|
+
<td>-</td>
|
|
421
|
+
</tr>
|
|
232
422
|
<tr>
|
|
233
423
|
<td>Apache Kafka</td>
|
|
234
424
|
<td>✅</td>
|
|
@@ -249,6 +439,11 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
249
439
|
<td>✅</td>
|
|
250
440
|
<td>-</td>
|
|
251
441
|
</tr>
|
|
442
|
+
<tr>
|
|
443
|
+
<td>Attio</td>
|
|
444
|
+
<td>✅</td>
|
|
445
|
+
<td>-</td>
|
|
446
|
+
</tr>
|
|
252
447
|
<tr>
|
|
253
448
|
<td>Chess.com</td>
|
|
254
449
|
<td>✅</td>
|
|
@@ -260,7 +455,7 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
260
455
|
<td>-</td>
|
|
261
456
|
</tr>
|
|
262
457
|
<tr>
|
|
263
|
-
<td>
|
|
458
|
+
<td>GitHub</td>
|
|
264
459
|
<td>✅</td>
|
|
265
460
|
<td>-</td>
|
|
266
461
|
</tr>
|
|
@@ -283,11 +478,6 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
283
478
|
<td>Google Analytics</td>
|
|
284
479
|
<td>✅</td>
|
|
285
480
|
<td>-</td>
|
|
286
|
-
</tr>
|
|
287
|
-
<tr>
|
|
288
|
-
<td>Intercom</td>
|
|
289
|
-
<td>✅</td>
|
|
290
|
-
<td>-</td>
|
|
291
481
|
</tr>
|
|
292
482
|
<tr>
|
|
293
483
|
<td>Klaviyo</td>
|
|
@@ -308,6 +498,16 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
308
498
|
<td>Personio</td>
|
|
309
499
|
<td>✅</td>
|
|
310
500
|
<td>-</td>
|
|
501
|
+
</tr>
|
|
502
|
+
<tr>
|
|
503
|
+
<td>Phantombuster</td>
|
|
504
|
+
<td>✅</td>
|
|
505
|
+
<td>-</td>
|
|
506
|
+
</tr>
|
|
507
|
+
<tr>
|
|
508
|
+
<td>Pipedrive</td>
|
|
509
|
+
<td>✅</td>
|
|
510
|
+
<td>-</td>
|
|
311
511
|
</tr>
|
|
312
512
|
<tr>
|
|
313
513
|
<td>S3</td>
|
|
@@ -329,6 +529,16 @@ Pull requests are welcome. However, please open an issue first to discuss what y
|
|
|
329
529
|
<td>✅</td>
|
|
330
530
|
<td>-</td>
|
|
331
531
|
</tr>
|
|
532
|
+
<tr>
|
|
533
|
+
<td>Smartsheets</td>
|
|
534
|
+
<td>✅</td>
|
|
535
|
+
<td>-</td>
|
|
536
|
+
</tr>
|
|
537
|
+
<tr>
|
|
538
|
+
<td>Solidgate</td>
|
|
539
|
+
<td>✅</td>
|
|
540
|
+
<td>-</td>
|
|
541
|
+
</tr>
|
|
332
542
|
<tr>
|
|
333
543
|
<td>Stripe</td>
|
|
334
544
|
<td>✅</td>
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
ingestr/conftest.py,sha256=OE2yxeTCosS9CUFVuqNypm-2ftYvVBeeq7egm3878cI,1981
|
|
2
|
+
ingestr/main.py,sha256=7_VTrPl3_NJ8B_zGtyxG4YHVlr8mbttvqNp6SgOvhrE,27628
|
|
3
|
+
ingestr/src/.gitignore,sha256=8cX1AZTSI0TcdZFGTmS_oyBjpfCzhOEt0DdAo2dFIY8,203
|
|
4
|
+
ingestr/src/blob.py,sha256=UUWMjHUuoR9xP1XZQ6UANQmnMVyDx3d0X4-2FQC271I,2138
|
|
5
|
+
ingestr/src/buildinfo.py,sha256=dq9qMhJ1xN46mNjDZPeEXAb0h9acuzJtAbFo1KtDtr0,22
|
|
6
|
+
ingestr/src/destinations.py,sha256=QtjE0AGs0WkPHaI2snWPHJ8HHi4lwXUBYLJPklz8Mvk,27772
|
|
7
|
+
ingestr/src/errors.py,sha256=fhJ2BxOqOsBfOxuTDKfZblvawBrPG3x_1VikIxMZBRI,874
|
|
8
|
+
ingestr/src/factory.py,sha256=uufnHeVAPZW2N8PlKlglbO44f9IJlm_9DGiGF6Qg3nY,8044
|
|
9
|
+
ingestr/src/filters.py,sha256=0n0sNAVG_f-B_1r7lW5iNtw9z_G1bxWzPaiL1i6tnbU,1665
|
|
10
|
+
ingestr/src/http_client.py,sha256=bxqsk6nJNXCo-79gW04B53DQO-yr25vaSsqP0AKtjx4,732
|
|
11
|
+
ingestr/src/loader.py,sha256=9NaWAyfkXdqAZSS-N72Iwo36Lbx4PyqIfaaH1dNdkFs,1712
|
|
12
|
+
ingestr/src/masking.py,sha256=VN0LdfvExhQ1bZMRylGtaBUIoH-vjuIUmRnYKwo3yiY,11358
|
|
13
|
+
ingestr/src/partition.py,sha256=BrIP6wFJvyR7Nus_3ElnfxknUXeCipK_E_bB8kZowfc,969
|
|
14
|
+
ingestr/src/resource.py,sha256=ZqmZxFQVGlF8rFPhBiUB08HES0yoTj8sZ--jKfaaVps,1164
|
|
15
|
+
ingestr/src/sources.py,sha256=HeaQ837VHW8SYbNqN7Rg7v0yJy-KmB60-U06KR1k8iE,164515
|
|
16
|
+
ingestr/src/table_definition.py,sha256=REbAbqdlmUMUuRh8nEQRreWjPVOQ5ZcfqGkScKdCrmk,390
|
|
17
|
+
ingestr/src/time.py,sha256=H_Fk2J4ShXyUM-EMY7MqCLZQhlnZMZvO952bmZPc4yE,254
|
|
18
|
+
ingestr/src/version.py,sha256=J_2xgZ0mKlvuHcjdKCx2nlioneLH0I47JiU_Slr_Nwc,189
|
|
19
|
+
ingestr/src/adjust/__init__.py,sha256=-DkqpkCuwohw7BlwB9ZvtpbwQAY1Gr8J1T4KyFwsA8E,3315
|
|
20
|
+
ingestr/src/adjust/adjust_helpers.py,sha256=IHSS94A7enOWkZ8cP5iW3RdYt0Xl3qZGAmDc1Xy4qkI,3802
|
|
21
|
+
ingestr/src/airtable/__init__.py,sha256=XzRsS39xszUlh_s7P1_zq5v8vLfjz3m-NtTPaa8TTZU,2818
|
|
22
|
+
ingestr/src/allium/__init__.py,sha256=pLNvKKy8OBVgUPK0zJQTASf6CCZIW17BfrVYXxyd5nc,4087
|
|
23
|
+
ingestr/src/anthropic/__init__.py,sha256=D23oY20fE_RP9yPVkx7i6l3G1IfRLrJ2XwA8y2ot7JM,8482
|
|
24
|
+
ingestr/src/anthropic/helpers.py,sha256=Co8kmWQwKMHxcUwDU9959LTU6rFxqDIIbIvVSMGatrc,16105
|
|
25
|
+
ingestr/src/applovin/__init__.py,sha256=X_YCLppPrnL8KXfYWICE_uDfMzHHH3JZ-DBGZ1RlaOI,6984
|
|
26
|
+
ingestr/src/applovin_max/__init__.py,sha256=fxXqsIibJarp5NOGe08G964HftwLDymTtYS_LqPJht4,3315
|
|
27
|
+
ingestr/src/appsflyer/__init__.py,sha256=QoK-B3cYYMD3bqzQaLWNH6FkJyjRbzRkBF2n6urxubs,8071
|
|
28
|
+
ingestr/src/appsflyer/client.py,sha256=E6xPW4KlbBnQZ0K4eq2Xgb3AmGrtrzIX9bX8EnQr-D4,3615
|
|
29
|
+
ingestr/src/appstore/__init__.py,sha256=np8AkAIVZPnJt2pjHYgzEX9UhbxseMW9MKVnJ8qowUA,4781
|
|
30
|
+
ingestr/src/appstore/client.py,sha256=qY9nBZPNIAveR-Dn-pW141Mr9xi9LMOz2HHfnfueHvE,3975
|
|
31
|
+
ingestr/src/appstore/errors.py,sha256=KVpPWth5qlv6_QWEm3aJAt3cdf6miPJs0UDzxknx2Ms,481
|
|
32
|
+
ingestr/src/appstore/models.py,sha256=tW1JSATHBIxZ6a77-RTCBQptJk6iRC8fWcmx4NW7SVA,1716
|
|
33
|
+
ingestr/src/appstore/resources.py,sha256=DJxnNrBohVV0uSeruGV-N_e7UHSlhMhjhYNYdBuqECU,5375
|
|
34
|
+
ingestr/src/arrow/__init__.py,sha256=qv8aHHbgRV7gJzlQS332yPoK4cQWuS8tjrXBHtQC-Nw,2976
|
|
35
|
+
ingestr/src/asana_source/__init__.py,sha256=p9p89e62Qd3YmrrCCkIclswciSX51pBOMCuT7Ukeq2I,8184
|
|
36
|
+
ingestr/src/asana_source/helpers.py,sha256=PukcdDQWIGqnGxuuobbLw4hUy4-t6gxXg_XywR7Lg9M,375
|
|
37
|
+
ingestr/src/asana_source/settings.py,sha256=-2tpdkwh04RvLKFvwQodnFLYn9MaxOO1hsebGnDQMTU,2829
|
|
38
|
+
ingestr/src/attio/__init__.py,sha256=CLejJjp5vGkt6r18nfNNZ-Xjc1SZgQ5IlcBW5XFQR90,3243
|
|
39
|
+
ingestr/src/attio/helpers.py,sha256=fCySmG5E6Iyh3Nm9a-HGbHNedxPH_2_otXYMTQsCibw,2185
|
|
40
|
+
ingestr/src/chess/__init__.py,sha256=mvMLZdexSgDAHIk7Ps18sOrCVGCYKq35PrG2Etgj_P8,6813
|
|
41
|
+
ingestr/src/chess/helpers.py,sha256=v1HTImOMjAF7AzZUPDIuHu00e7ut0o5y1kWcVYo4QZw,549
|
|
42
|
+
ingestr/src/chess/settings.py,sha256=p0RlCGgtXUacPDEvZmwzSWmzX0Apj1riwfz-nrMK89k,158
|
|
43
|
+
ingestr/src/clickup/__init__.py,sha256=uvfAqNturT4bMvU4NS3E8BdL6nvDFzNuh7bMlih8HJk,2547
|
|
44
|
+
ingestr/src/clickup/helpers.py,sha256=RzDKMUAHccuDhocIQ2ToBXfCERo8CBJqA3t-IPltBCE,1519
|
|
45
|
+
ingestr/src/collector/spinner.py,sha256=_ZUqF5MI43hVIULdjF5s5mrAZbhEFXaiWirQmrv3Yk4,1201
|
|
46
|
+
ingestr/src/couchbase_source/__init__.py,sha256=IPmb55mBxGWtt_9ywbY6chAwUp6jRmJTu-qEVFBhJ_s,4381
|
|
47
|
+
ingestr/src/couchbase_source/helpers.py,sha256=RA0aFT0GfLJ2pHy7emvKmm0yVXgQOQ-hMVJvw-FExNo,4487
|
|
48
|
+
ingestr/src/cursor/__init__.py,sha256=sNVzCzIT9FxC3Q0Otydjg2_cCjj7HjRlT2u_7xfsx1o,1914
|
|
49
|
+
ingestr/src/cursor/helpers.py,sha256=gaNBA1uZJJCx0rGOfg5IMLtqLxQA1QulEi5t4qf2vbo,5781
|
|
50
|
+
ingestr/src/docebo/__init__.py,sha256=RBBjlt405PIIDOLEt78g9yBNJfhUMeJxR5DZD7oufXY,27543
|
|
51
|
+
ingestr/src/docebo/client.py,sha256=nki0kNQhN8VDz5cdqlQQPhr1JMPlcNEYKnWK3umAyOc,15663
|
|
52
|
+
ingestr/src/docebo/helpers.py,sha256=SaEjta6k3Lj-S5fvrheA5_xj7zfASMdOc_ihsqno5ko,3238
|
|
53
|
+
ingestr/src/dynamodb/__init__.py,sha256=swhxkeYBbJ35jn1IghCtvYWT2BM33KynVCh_oR4z28A,2264
|
|
54
|
+
ingestr/src/elasticsearch/__init__.py,sha256=m-q93HgUmTwGDUwHOjHawstWL06TC3WIX3H05szybrY,2556
|
|
55
|
+
ingestr/src/elasticsearch/helpers.py,sha256=twlNMHcJ0cPvRRLWgH8HX9LZLIQewn6uZwFGRKIcB8w,4470
|
|
56
|
+
ingestr/src/facebook_ads/__init__.py,sha256=d0pTXmtNp6Qh65aY-qF2DPz3jgHkZm3pkQn1_a3G5v0,9892
|
|
57
|
+
ingestr/src/facebook_ads/exceptions.py,sha256=4Nlbc0Mv3i5g-9AoyT-n1PIa8IDi3VCTfEAzholx4Wc,115
|
|
58
|
+
ingestr/src/facebook_ads/helpers.py,sha256=c-WG008yU_zIdhFwljtqE2jfjVYuaVoNKldxcnJN3U4,9761
|
|
59
|
+
ingestr/src/facebook_ads/settings.py,sha256=Bsic8RcmH-NfEZ7r_NGospTCmwISK9XaMT5y2NZirtg,4938
|
|
60
|
+
ingestr/src/facebook_ads/utils.py,sha256=ES2ylPoW3j3fjp6OMUgp21n1cG1OktXsmWWMk5vBW_I,1590
|
|
61
|
+
ingestr/src/filesystem/__init__.py,sha256=42YAOHQxZ7TkTXC1eeaLUJpjqJ3l7DH7C8j927pV4pc,4353
|
|
62
|
+
ingestr/src/filesystem/helpers.py,sha256=bg0muSHZr3hMa8H4jN2-LGWzI-SUoKlQNiWJ74-YYms,3211
|
|
63
|
+
ingestr/src/filesystem/readers.py,sha256=a0fKkaRpnAOGsXI3EBNYZa7x6tlmAOsgRzb883StY30,3987
|
|
64
|
+
ingestr/src/fluxx/__init__.py,sha256=ILpfk-5U5NPqVTuMuEOfzmkbojttHDLBL-NYmItRlAM,566443
|
|
65
|
+
ingestr/src/fluxx/helpers.py,sha256=zJmlQWwiv9snnLqTygiWVZy7-0rGi_K427hRUuZeHEM,6352
|
|
66
|
+
ingestr/src/frankfurter/__init__.py,sha256=gOdL8ZqgHHYZByjtfE3WX3BTRHdYqyn9FpQwzDHSAx0,5089
|
|
67
|
+
ingestr/src/frankfurter/helpers.py,sha256=SpRr992OcSf7IDI5y-ToUdO6m6sGpqFz59LTY0ojchI,1502
|
|
68
|
+
ingestr/src/freshdesk/__init__.py,sha256=OIP3GikA6BMh9sruU3jih-swdFNSposr48oQhy1WGNk,3145
|
|
69
|
+
ingestr/src/freshdesk/freshdesk_client.py,sha256=Fp2YBG3hMtR-t4XfjRjc7-wiUMHCIe9hnFhrGNNGwoA,5122
|
|
70
|
+
ingestr/src/freshdesk/settings.py,sha256=0Wr_OMnUZcTlry7BmALssLxD2yh686JW4moLNv12Jnw,409
|
|
71
|
+
ingestr/src/fundraiseup/__init__.py,sha256=Q1WGOb0UA4T3OQl4DhZHv5ykeMIBwYuQHl_aSba3514,3015
|
|
72
|
+
ingestr/src/fundraiseup/client.py,sha256=klU57l8iJ5NAS1nTb_4UyVAerbPWpTa8PMHlpp9Riz0,2453
|
|
73
|
+
ingestr/src/github/__init__.py,sha256=C7b5j6CrxmTItS4tyDa3OYzdAw5c__xboOtoEJYe3wQ,7217
|
|
74
|
+
ingestr/src/github/helpers.py,sha256=rpv_3HzuOl4PQ-FUeA66pev-pgze9SaE8RUHIPYfZ_A,6759
|
|
75
|
+
ingestr/src/github/queries.py,sha256=W34C02jUEdjFmOE7f7u9xvYyBNDMfVZAu0JIRZI2mkU,2302
|
|
76
|
+
ingestr/src/github/settings.py,sha256=N5ahWrDIQ_4IWV9i-hTXxyYduqY9Ym2BTwqsWxcDdJ8,258
|
|
77
|
+
ingestr/src/google_ads/__init__.py,sha256=bH0TtnRWcOUESezpvoA7VEUHAq_0ITGQeX4GGVBfl1I,3725
|
|
78
|
+
ingestr/src/google_ads/field.py,sha256=uc8KEaYQrwgQoQPUdxIQWZxpFeZHbiV98FM0ZSaelS0,69
|
|
79
|
+
ingestr/src/google_ads/metrics.py,sha256=tAqpBpm-8l95oPT9cBxMWaEoDTNHVXnqUphYDHWKDiE,12099
|
|
80
|
+
ingestr/src/google_ads/predicates.py,sha256=K4wTuqfmJ9ko1RKeHTBDfQO_mUADVyuRqtywBPP-72w,683
|
|
81
|
+
ingestr/src/google_ads/reports.py,sha256=AVY1pPt5yaIFskQe1k5VW2Dhlux3bzewsHlDrdGEems,12686
|
|
82
|
+
ingestr/src/google_analytics/__init__.py,sha256=1JkT2OnZAVzNVH06br2Rrh5WyjO6GrNyf9F83rAKsrw,4343
|
|
83
|
+
ingestr/src/google_analytics/helpers.py,sha256=tM7h_yughca3l7tnS_2XGIBM37mVm-Uewv7tK7XHVbc,10111
|
|
84
|
+
ingestr/src/google_sheets/README.md,sha256=wFQhvmGpRA38Ba2N_WIax6duyD4c7c_pwvvprRfQDnw,5470
|
|
85
|
+
ingestr/src/google_sheets/__init__.py,sha256=CL0HfY74uxX8-ge0ucI0VhWMYZVAfoX7WRPBitRi-CI,6647
|
|
86
|
+
ingestr/src/google_sheets/helpers/__init__.py,sha256=5hXZrZK8cMO3UOuL-s4OKOpdACdihQD0hYYlSEu-iQ8,35
|
|
87
|
+
ingestr/src/google_sheets/helpers/api_calls.py,sha256=RiVfdacbaneszhmuhYilkJnkc9kowZvQUCUxz0G6SlI,5404
|
|
88
|
+
ingestr/src/google_sheets/helpers/data_processing.py,sha256=RNt2MYfdJhk4bRahnQVezpNg2x9z0vx60YFq2ukZ8vI,11004
|
|
89
|
+
ingestr/src/gorgias/__init__.py,sha256=_mFkMYwlY5OKEY0o_FK1OKol03A-8uk7bm1cKlmt5cs,21432
|
|
90
|
+
ingestr/src/gorgias/helpers.py,sha256=DamuijnvhGY9hysQO4txrVMf4izkGbh5qfBKImdOINE,5427
|
|
91
|
+
ingestr/src/hostaway/__init__.py,sha256=sq7qG5J4XcyoYoHBSgAszYPByN9bMLzWjhSmvzJuTeI,8887
|
|
92
|
+
ingestr/src/hostaway/client.py,sha256=omzoT4gPQ_nvMWDcm7-bm2AyFwwRDgV8D1sI0gkkydw,10452
|
|
93
|
+
ingestr/src/http/__init__.py,sha256=Y9mQIE0RolHOh6dPjW41qzYXSG8BC0GPKxEtz2CJGpU,902
|
|
94
|
+
ingestr/src/http/readers.py,sha256=rgBwYG5SOQ7P2uzBAFMOQIevKxV51ZW41VSiRTZ0Xvo,3863
|
|
95
|
+
ingestr/src/hubspot/__init__.py,sha256=FCqjLeOjijdc9JC_NoDwtRqy3FDyY-szDi6UV7CdDN0,11548
|
|
96
|
+
ingestr/src/hubspot/helpers.py,sha256=k2b-lhxqBNKHoOSHoHegFSsk8xxjjGA0I04V0XyX2b4,7883
|
|
97
|
+
ingestr/src/hubspot/settings.py,sha256=i73MkSiJfRLMFLfiJgYdhp-rhymHTfoqFzZ4uOJdFJM,2456
|
|
98
|
+
ingestr/src/influxdb/__init__.py,sha256=cYsGnDPNHRTe9pp14ogDQgPTCI9TOdyJm1MaNuQLHdk,1290
|
|
99
|
+
ingestr/src/influxdb/client.py,sha256=hCxSNREAWWEvvAV3RQbKaWp2-e_7EE8xmVRjTwLFEFo,1230
|
|
100
|
+
ingestr/src/intercom/__init__.py,sha256=rqorWFwcfcTYrCrpSsPPM2sGOc7qq5XbYZRCDVJXjyI,4451
|
|
101
|
+
ingestr/src/intercom/helpers.py,sha256=IljM0x4K70nuahidZaP7mtIlsHkPIcZq56j9mmuSck4,21074
|
|
102
|
+
ingestr/src/intercom/settings.py,sha256=u_4P2tZiYsnlGjMTN4Ttr4bLHh1b272Pu5Q9YFq3ZCE,7053
|
|
103
|
+
ingestr/src/isoc_pulse/__init__.py,sha256=9b4eN4faatpiwTuRNPuYcEt1hEFDEjua9XhfakUigBk,4648
|
|
104
|
+
ingestr/src/jira_source/__init__.py,sha256=Hy-JUdo9Nu1Goti6zqWjG1GNnCzfv9cY85MFb-sqo-I,9814
|
|
105
|
+
ingestr/src/jira_source/helpers.py,sha256=vJ7fTGSQnLHKiwLQUPEpGNsHBRUyBZswL8R1A3Tz0GY,14636
|
|
106
|
+
ingestr/src/jira_source/settings.py,sha256=Ufb-sGS-x_STtWJ-y6k69hP1CVtat_J5MtFPn51TUGE,2861
|
|
107
|
+
ingestr/src/kafka/__init__.py,sha256=QUHsGmdv5_E-3z0GDHXvbk39puwuGDBsyYSDhvbA89E,3595
|
|
108
|
+
ingestr/src/kafka/helpers.py,sha256=V9WcVn3PKnEpggArHda4vnAcaV8VDuh__dSmRviJb5Y,7502
|
|
109
|
+
ingestr/src/kinesis/__init__.py,sha256=YretSz4F28tbkcPhd55mBp2Xk7XE9unyWx0nmvl8iEc,6235
|
|
110
|
+
ingestr/src/kinesis/helpers.py,sha256=SO2cFmWNGcykUYmjHdfxWsOQSkLQXyhFtfWnkcUOM0s,3152
|
|
111
|
+
ingestr/src/klaviyo/__init__.py,sha256=Tg5EqAgsEK8xM5RO2im8vFMzPGc7yDpSCUkprGjMooI,7870
|
|
112
|
+
ingestr/src/klaviyo/client.py,sha256=tPj79ia7AW0ZOJhzlKNPCliGbdojRNwUFp8HvB2ym5s,7434
|
|
113
|
+
ingestr/src/klaviyo/helpers.py,sha256=_i-SHffhv25feLDcjy6Blj1UxYLISCwVCMgGtrlnYHk,496
|
|
114
|
+
ingestr/src/linear/__init__.py,sha256=rufjwhLip7RK6j2DpFzCRQEvA_oOqgPEEdREJkc53_U,12295
|
|
115
|
+
ingestr/src/linear/helpers.py,sha256=J9lTuu8rHHM3YTA082_wfvByW6Teie4_44eYaVmDBhQ,3683
|
|
116
|
+
ingestr/src/linkedin_ads/__init__.py,sha256=CAPWFyV24loziiphbLmODxZUXZJwm4JxlFkr56q0jfo,1855
|
|
117
|
+
ingestr/src/linkedin_ads/dimension_time_enum.py,sha256=EmHRdkFyTAfo4chGjThrwqffWJxmAadZMbpTvf0xkQc,198
|
|
118
|
+
ingestr/src/linkedin_ads/helpers.py,sha256=eUWudRVlXl4kqIhfXQ1eVsUpZwJn7UFqKSpnbLfxzds,4498
|
|
119
|
+
ingestr/src/mailchimp/__init__.py,sha256=-V4IacEJ8wvngHQsSuGu_Z4xAt1XtQIHigvOoWcndw0,3175
|
|
120
|
+
ingestr/src/mailchimp/helpers.py,sha256=KXchokX5ApLqpjIAHzKWkI23ETGmQMlUrbOC5rm7q6k,6166
|
|
121
|
+
ingestr/src/mailchimp/settings.py,sha256=0x9q-8tvieuDZb0H8GNdNWnRFmVDo2jK68IoBVdKE6k,4014
|
|
122
|
+
ingestr/src/mixpanel/__init__.py,sha256=s1QtqMP0BTGW6YtdCabJFWj7lEn7KujzELwGpBOQgfs,1796
|
|
123
|
+
ingestr/src/mixpanel/client.py,sha256=c_reouegOVYBOwHLfgYFwpmkba0Sxro1Zkml07NCYf0,3602
|
|
124
|
+
ingestr/src/monday/__init__.py,sha256=ZNdGCC_1CEYlgxAef-5QO56Drm9IMP82-rZpEvbD8aY,6918
|
|
125
|
+
ingestr/src/monday/helpers.py,sha256=xkAYTFIwjbU-dQTa4d41oQm6kFvCHv74AhCmN-H8aPE,11572
|
|
126
|
+
ingestr/src/monday/settings.py,sha256=5TC0OrTHQO52AifwP3Z2xsh4D8SDUq0WxqY5AQMjcns,5667
|
|
127
|
+
ingestr/src/mongodb/__init__.py,sha256=6-DvvaKL7XOPPRwItI7lSpoMQLEPzYubV6dKhpzbuME,7494
|
|
128
|
+
ingestr/src/mongodb/helpers.py,sha256=BKb0F-AUWjFJikE9OPP9z5wFuMmJsf8YsyWhvQ9dC1k,38076
|
|
129
|
+
ingestr/src/notion/__init__.py,sha256=36wUui8finbc85ObkRMq8boMraXMUehdABN_AMe_hzA,1834
|
|
130
|
+
ingestr/src/notion/settings.py,sha256=MwQVZViJtnvOegfjXYc_pJ50oUYgSRPgwqu7TvpeMOA,82
|
|
131
|
+
ingestr/src/notion/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
+
ingestr/src/notion/helpers/client.py,sha256=QXuudkf5Zzff98HRsCqA1g1EZWIrnfn1falPrnKg_y4,5500
|
|
133
|
+
ingestr/src/notion/helpers/database.py,sha256=gigPibTeVefP3lA-8w4aOwX67pj7RlciPk5koDs1ry8,2737
|
|
134
|
+
ingestr/src/personio/__init__.py,sha256=sHYpoV-rg-kA1YsflctChis0hKcTrL6mka9O0CHV4zA,11638
|
|
135
|
+
ingestr/src/personio/helpers.py,sha256=EKmBN0Lf4R0lc3yqqs7D-RjoZ75E8gPcctt59xwHxrY,2901
|
|
136
|
+
ingestr/src/phantombuster/__init__.py,sha256=8AQTiA8fp1NT8TellQQqwBCl6vGvGwUBLif6LIzgAik,1786
|
|
137
|
+
ingestr/src/phantombuster/client.py,sha256=9zx58sFunXjUNh6jeEYLNfwNxGxX9odifwAmS0E9AaY,3018
|
|
138
|
+
ingestr/src/pinterest/__init__.py,sha256=5xTLNE2Vn_00PXMLKjY41Fh1LsyzM7UnBSKxKPITUl0,2581
|
|
139
|
+
ingestr/src/pipedrive/__init__.py,sha256=iRrxeMwo8_83ptgGnTFTNHV1nYvIsFfg0a3XzugPYeI,6982
|
|
140
|
+
ingestr/src/pipedrive/settings.py,sha256=q119Fy4C5Ip1rMoCILX2BkHV3bwiXC_dW58KIiDUzsY,708
|
|
141
|
+
ingestr/src/pipedrive/typing.py,sha256=lEMXu4hhAA3XkhVSlBUa-juqyupisd3c-qSQKxFvzoE,69
|
|
142
|
+
ingestr/src/pipedrive/helpers/__init__.py,sha256=UX1K_qnGXB0ShtnBOfp2XuVbK8RRoCK8TdEmIjRckgg,710
|
|
143
|
+
ingestr/src/pipedrive/helpers/custom_fields_munger.py,sha256=rZ4AjdITHfJE2NNomCR7vMBS1KnWpEGVF6fADwsIHUE,4488
|
|
144
|
+
ingestr/src/pipedrive/helpers/pages.py,sha256=Klpjw2OnMuhzit3PpiHKsfzGcJ3rQPSQBl3HhE3-6eA,3358
|
|
145
|
+
ingestr/src/plusvibeai/__init__.py,sha256=Uo-N2-1kbq5RJw8ym5tm8rqVchVbJJ2hOd6bwsg1zdM,10125
|
|
146
|
+
ingestr/src/plusvibeai/helpers.py,sha256=5hxxA2-XUtkZA1xrstZ39ilzUh4EouNDOiiL-NzGu9w,17939
|
|
147
|
+
ingestr/src/plusvibeai/settings.py,sha256=3Hb7jcUNshSlGO4E27yUe_8n3f0VArX9XTmkTkN-Tvo,5366
|
|
148
|
+
ingestr/src/quickbooks/__init__.py,sha256=cZUuVCOTGPHTscRj6i0DytO63_fWF-4ieMxoU4PcyTg,3727
|
|
149
|
+
ingestr/src/revenuecat/__init__.py,sha256=j75jkHBqd_9FsFKjsSLLwKrPcmUKOE3HJ95Qzonzmbk,2779
|
|
150
|
+
ingestr/src/revenuecat/helpers.py,sha256=ej_bR6cuNOer4bTQfd_IuyMmt-xevcPgvRShKlxO8Xo,7998
|
|
151
|
+
ingestr/src/salesforce/__init__.py,sha256=Ijveo8gyo_wLzQRBklxIm3RV0y2Gta9-mR44RbJljpI,4901
|
|
152
|
+
ingestr/src/salesforce/helpers.py,sha256=QTdazBt-qRTBbCQMZnyclIaDQFmBixBy_RDKD00Lt-8,2492
|
|
153
|
+
ingestr/src/shopify/__init__.py,sha256=RzSSG93g-Qlkz6TAxi1XasFDdxxtVXIo53ZTtjGczW4,62602
|
|
154
|
+
ingestr/src/shopify/exceptions.py,sha256=BhV3lIVWeBt8Eh4CWGW_REFJpGCzvW6-62yZrBWa3nQ,50
|
|
155
|
+
ingestr/src/shopify/helpers.py,sha256=NfHD6lWXe88ybR0ri-FCQuh2Vf8l5WG0a0FVjmdoSC4,6296
|
|
156
|
+
ingestr/src/shopify/settings.py,sha256=StY0EPr7wFJ7KzRRDN4TKxV0_gkIS1wPj2eR4AYSsDk,141
|
|
157
|
+
ingestr/src/slack/__init__.py,sha256=pyDukxcilqTAe_bBzfWJ8Vxi83S-XEdEFBH2pEgILrM,10113
|
|
158
|
+
ingestr/src/slack/helpers.py,sha256=08TLK7vhFvH_uekdLVOLF3bTDe1zgH0QxHObXHzk1a8,6545
|
|
159
|
+
ingestr/src/slack/settings.py,sha256=NhKn4y1zokEa5EmIZ05wtj_-I0GOASXZ5V81M1zXCtY,457
|
|
160
|
+
ingestr/src/smartsheets/__init__.py,sha256=RIEfN1T2TMFg8T0RvN4o6sqC58YusJRDrmE9Isos5P4,2375
|
|
161
|
+
ingestr/src/snapchat_ads/__init__.py,sha256=k4bZkVyxL9-83yVTIWZnxbmqyj0ysIGwS5NncjW-zNc,18049
|
|
162
|
+
ingestr/src/snapchat_ads/client.py,sha256=HKu6nNfwwDh_CZ5ale9LQFMMd7xBXopcjLKXPnirElw,2078
|
|
163
|
+
ingestr/src/snapchat_ads/helpers.py,sha256=NgLPTPebVNN4VB1m_7JHlBiY-9_P4Ty5xWsfqbLghTY,18012
|
|
164
|
+
ingestr/src/socrata_source/__init__.py,sha256=K5DVpsVXTMfunZd5YoEsn1nipfo1zavFS59g3m2tsc8,2984
|
|
165
|
+
ingestr/src/socrata_source/helpers.py,sha256=KbVojFSmMLXb0ajh8bhqfZfxDHH7rQ3nyI8p2jxVifA,2500
|
|
166
|
+
ingestr/src/socrata_source/settings.py,sha256=DLfu-4HOa5nR7h9tbOySEa2ye3w_Z6TYZ9_zPqWaNQk,220
|
|
167
|
+
ingestr/src/solidgate/__init__.py,sha256=Ts83j-JSnFsFuF4tDhVOfZKg7H0-bIpfn3kg1ZOR58A,8003
|
|
168
|
+
ingestr/src/solidgate/helpers.py,sha256=mAsW_1hpD7ab3Y2vw8fxHi4yD3aT1geLdIYZ7ycyxBc,5690
|
|
169
|
+
ingestr/src/sql_database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
|
+
ingestr/src/sql_database/callbacks.py,sha256=sEFFmXxAURY3yeBjnawigDtq9LBCvi8HFqG4kLd7tMU,2002
|
|
171
|
+
ingestr/src/stripe_analytics/__init__.py,sha256=smTK8aqRsGnSdGdQAyyuItWT_k9CPKdlnTGh5DRCcDg,5144
|
|
172
|
+
ingestr/src/stripe_analytics/helpers.py,sha256=KGtRcSrhKEqzJ3AWpgDV2o4cuBFaIwu2Gc1KgvVWTtg,11764
|
|
173
|
+
ingestr/src/stripe_analytics/settings.py,sha256=xt1-ljwP4nLTNUa8l3KwFbtK8FtQHgHpzGF5uPKfRsw,2246
|
|
174
|
+
ingestr/src/telemetry/event.py,sha256=W7bs4uVfPakQ5otmiqgqu1l5SqjYx1p87wudnWXckBc,949
|
|
175
|
+
ingestr/src/testdata/fakebqcredentials.json,sha256=scc6TUc963KAbKTLZCfcmqVzbtzDCW1_8JNRnyAXyy8,628
|
|
176
|
+
ingestr/src/tiktok_ads/__init__.py,sha256=_upvSv79uktELTzg78VavYgQftfhp4YM6OXfpkm7r3A,4854
|
|
177
|
+
ingestr/src/tiktok_ads/tiktok_helpers.py,sha256=jmWHvZzN1Vt_PWrJkgq5a2wIwon-OBEzXoZx0jEy-74,3905
|
|
178
|
+
ingestr/src/trustpilot/__init__.py,sha256=ofhjep4qRPIi8q41qc97QVex8UbWF-Fd7gUsqeQlQX8,1279
|
|
179
|
+
ingestr/src/trustpilot/client.py,sha256=zKYt5C7nrR83Id0KN49EPmtml8MEtlSPlAosEFU3VXY,1616
|
|
180
|
+
ingestr/src/wise/__init__.py,sha256=EiXWE89Jb2Do1t8HK1-GZRS2KwgaiThxsHVEpaBcoh4,2087
|
|
181
|
+
ingestr/src/wise/client.py,sha256=2hTCuOB24-HiwTp02o5i99KF5rjI0CXqgIb9V6gAjjE,2247
|
|
182
|
+
ingestr/src/zendesk/__init__.py,sha256=tmJ_jdb6kpwmEKpcv6Im71-bOZI6h-Tcofe18OH4I24,17762
|
|
183
|
+
ingestr/src/zendesk/settings.py,sha256=Vdj706nTJFQ-3KH4nO97iYCQuba3dV3E9gfnmLK6xwU,2294
|
|
184
|
+
ingestr/src/zendesk/helpers/__init__.py,sha256=YTJejCiUjfIcsj9FrkY0l-JGYDI7RRte1Ydq5FDH_0c,888
|
|
185
|
+
ingestr/src/zendesk/helpers/api_helpers.py,sha256=dMkNn4ZQXgJTDOXAAXdmRt41phNFoRhYyPaLJih0pZY,4184
|
|
186
|
+
ingestr/src/zendesk/helpers/credentials.py,sha256=EWyi0ZlxWFgd1huD86KNF4dApLHgmabqWksFpEg1cf0,1332
|
|
187
|
+
ingestr/src/zendesk/helpers/talk_api.py,sha256=TSVSOErsBZvxcX91LMhAgvy6yLSYvpuVfOyKViOHtvA,4718
|
|
188
|
+
ingestr/src/zoom/__init__.py,sha256=hgx_27kQTE9p26cXdp6yE6x5tjw0g8gY5pTB1qeg4L0,3264
|
|
189
|
+
ingestr/src/zoom/helpers.py,sha256=jJuBkiK8OEUVYnulbemIFOO5rfg_iKI-7wql8hGNbZ0,3715
|
|
190
|
+
ingestr/testdata/.gitignore,sha256=DFzYYOpqdTiT7S1HjCT-jffZSmEvFZge295_upAB0FY,13
|
|
191
|
+
ingestr/testdata/create_replace.csv,sha256=TQDbOSkRKq9ZZv1d68Qjwh94aIyUQ-oEwxpJIrd3YK8,1060
|
|
192
|
+
ingestr/testdata/delete_insert_expected.csv,sha256=wbj7uboVWwm3sNMh1n7f4-OKFEQJv1s96snjEHp9nkg,336
|
|
193
|
+
ingestr/testdata/delete_insert_part1.csv,sha256=mdLFGu6ZOU6zwAigLRq4hFkAbVgyIaoEE39UCeeRc7s,234
|
|
194
|
+
ingestr/testdata/delete_insert_part2.csv,sha256=B_KUzpzbNdDY_n7wWop1mT2cz36TmaySYCgtLsNqSrk,337
|
|
195
|
+
ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ7ZqYN0,276
|
|
196
|
+
ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
|
|
197
|
+
ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
|
|
198
|
+
ingestr/tests/unit/test_smartsheets.py,sha256=zf3DXT29Y4TH2lNPBFphdjlaelUUyPJcsW2UO68RzDs,4862
|
|
199
|
+
ingestr-0.14.104.dist-info/METADATA,sha256=PAV_pa5kqCUfnh3577T-EB2Dcv8QMSERQTONX0_4vIA,15390
|
|
200
|
+
ingestr-0.14.104.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
201
|
+
ingestr-0.14.104.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
|
|
202
|
+
ingestr-0.14.104.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
|
|
203
|
+
ingestr-0.14.104.dist-info/RECORD,,
|
ingestr/src/appsflyer/_init_.py
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
from typing import Iterable
|
|
2
|
-
|
|
3
|
-
import dlt
|
|
4
|
-
from dlt.common.typing import TDataItem
|
|
5
|
-
from dlt.sources import DltResource
|
|
6
|
-
|
|
7
|
-
from ingestr.src.appsflyer.client import AppsflyerClient
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
@dlt.source(max_table_nesting=0)
|
|
11
|
-
def appsflyer_source(
|
|
12
|
-
api_key: str, start_date: str, end_date: str
|
|
13
|
-
) -> Iterable[DltResource]:
|
|
14
|
-
client = AppsflyerClient(api_key)
|
|
15
|
-
|
|
16
|
-
@dlt.resource(write_disposition="merge", merge_key="install_time")
|
|
17
|
-
def campaigns() -> Iterable[TDataItem]:
|
|
18
|
-
yield from client.fetch_campaigns(start_date, end_date)
|
|
19
|
-
|
|
20
|
-
@dlt.resource(write_disposition="merge", merge_key="install_time")
|
|
21
|
-
def creatives() -> Iterable[TDataItem]:
|
|
22
|
-
yield from client.fetch_creatives(start_date, end_date)
|
|
23
|
-
|
|
24
|
-
return campaigns, creatives
|