ingestr 0.13.2__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/__init__.py +262 -0
- ingestr/src/applovin_max/__init__.py +117 -0
- 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 +38 -11
- ingestr/src/buildinfo.py +1 -0
- 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 +520 -33
- 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 +116 -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/loader.py +69 -0
- 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/personio/__init__.py +331 -0
- ingestr/src/personio/helpers.py +86 -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 +156 -0
- ingestr/src/salesforce/helpers.py +64 -0
- 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 +3132 -212
- 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/version.py +6 -1
- 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.14.104.dist-info/METADATA +563 -0
- ingestr-0.14.104.dist-info/RECORD +203 -0
- ingestr/src/appsflyer/_init_.py +0 -24
- ingestr-0.13.2.dist-info/METADATA +0 -302
- ingestr-0.13.2.dist-info/RECORD +0 -107
- {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/WHEEL +0 -0
- {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ingestr
|
|
3
|
+
Version: 0.14.104
|
|
4
|
+
Summary: ingestr is a command-line application that ingests data from various sources and stores them in any database.
|
|
5
|
+
Project-URL: Homepage, https://github.com/bruin-data/ingestr
|
|
6
|
+
Project-URL: Issues, https://github.com/bruin-data/ingestr/issues
|
|
7
|
+
Author-email: Burak Karakan <burak.karakan@getbruin.com>
|
|
8
|
+
License-File: LICENSE.md
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Database
|
|
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
|
|
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
|
|
38
|
+
Requires-Dist: clickhouse-connect==0.8.14
|
|
39
|
+
Requires-Dist: clickhouse-driver==0.2.9
|
|
40
|
+
Requires-Dist: clickhouse-sqlalchemy==0.2.7
|
|
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
|
|
48
|
+
Requires-Dist: dataclasses-json==0.6.7
|
|
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
|
|
63
|
+
Requires-Dist: flatten-json==0.1.14
|
|
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
|
|
72
|
+
Requires-Dist: google-ads==25.1.0
|
|
73
|
+
Requires-Dist: google-analytics-data==0.18.17
|
|
74
|
+
Requires-Dist: google-api-core==2.24.1
|
|
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
|
|
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
|
|
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
|
|
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
|
|
132
|
+
Requires-Dist: psutil==6.1.1
|
|
133
|
+
Requires-Dist: psycopg2-binary==2.9.10
|
|
134
|
+
Requires-Dist: py-machineid==0.6.0
|
|
135
|
+
Requires-Dist: pyairtable==2.3.3
|
|
136
|
+
Requires-Dist: pyarrow==18.1.0
|
|
137
|
+
Requires-Dist: pyasn1-modules==0.4.1
|
|
138
|
+
Requires-Dist: pyasn1==0.6.1
|
|
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
|
|
146
|
+
Requires-Dist: pymongo==4.11.1
|
|
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
|
|
151
|
+
Requires-Dist: pyrate-limiter==3.7.0
|
|
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
|
|
166
|
+
Requires-Dist: rich==13.9.4
|
|
167
|
+
Requires-Dist: rsa==4.9
|
|
168
|
+
Requires-Dist: rudder-sdk-python==2.1.4
|
|
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
|
|
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
|
|
180
|
+
Requires-Dist: snowflake-sqlalchemy==1.6.1
|
|
181
|
+
Requires-Dist: sortedcontainers==2.4.0
|
|
182
|
+
Requires-Dist: sqlalchemy-bigquery==1.12.1
|
|
183
|
+
Requires-Dist: sqlalchemy-cratedb==0.41.0
|
|
184
|
+
Requires-Dist: sqlalchemy-hana==2.0.0
|
|
185
|
+
Requires-Dist: sqlalchemy-redshift==0.8.14
|
|
186
|
+
Requires-Dist: sqlalchemy-spanner==1.11.0
|
|
187
|
+
Requires-Dist: sqlalchemy2-stubs==0.0.2a38
|
|
188
|
+
Requires-Dist: sqlalchemy==1.4.52
|
|
189
|
+
Requires-Dist: sqlglot==26.12.1
|
|
190
|
+
Requires-Dist: sqlparse==0.5.3
|
|
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
|
|
196
|
+
Requires-Dist: tqdm==4.67.1
|
|
197
|
+
Requires-Dist: trino==0.336.0
|
|
198
|
+
Requires-Dist: typer==0.13.1
|
|
199
|
+
Requires-Dist: types-requests==2.32.0.20240907
|
|
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'
|
|
216
|
+
Provides-Extra: odbc
|
|
217
|
+
Requires-Dist: pyodbc==5.1.0; extra == 'odbc'
|
|
218
|
+
Provides-Extra: oracle
|
|
219
|
+
Requires-Dist: oracledb>=2.0.0; extra == 'oracle'
|
|
220
|
+
Description-Content-Type: text/markdown
|
|
221
|
+
|
|
222
|
+
<div align="center">
|
|
223
|
+
<img src="https://github.com/bruin-data/ingestr/blob/main/resources/ingestr.svg?raw=true" width="500" />
|
|
224
|
+
<p>Copy data from any source to any destination without any code</p>
|
|
225
|
+
<img src="https://github.com/bruin-data/ingestr/blob/main/resources/demo.gif?raw=true" width="750" />
|
|
226
|
+
</div>
|
|
227
|
+
|
|
228
|
+
<div align="center" style="margin-top: 24px;">
|
|
229
|
+
<a target="_blank" href="https://join.slack.com/t/bruindatacommunity/shared_invite/zt-2dl2i8foy-bVsuMUauHeN9M2laVm3ZVg" style="background:none">
|
|
230
|
+
<img src="https://img.shields.io/badge/slack-join-dlt.svg?color=d95f5f&logo=slack" style="width: 180px;" />
|
|
231
|
+
</a>
|
|
232
|
+
</div>
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
ingestr is a command-line app that allows you to ingest data from any source into any destination using simple command-line flags, no code necessary.
|
|
237
|
+
|
|
238
|
+
- ✨ copy data from your database into any destination
|
|
239
|
+
- ➕ incremental loading: `append`, `merge` or `delete+insert`
|
|
240
|
+
- 🐍 single-command installation
|
|
241
|
+
|
|
242
|
+
ingestr takes away the complexity of managing any backend or writing any code for ingesting data, simply run the command and watch the data land on its destination.
|
|
243
|
+
|
|
244
|
+
## Installation
|
|
245
|
+
We recommend using [uv](https://github.com/astral-sh/uv) to run `ingestr`.
|
|
246
|
+
|
|
247
|
+
```
|
|
248
|
+
pip install uv
|
|
249
|
+
uvx ingestr
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
Alternatively, if you'd like to install it globally:
|
|
253
|
+
```
|
|
254
|
+
uv pip install --system ingestr
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
While installation with vanilla `pip` is possible, it's an order of magnitude slower.
|
|
258
|
+
|
|
259
|
+
## Quickstart
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
ingestr ingest \
|
|
263
|
+
--source-uri 'postgresql://admin:admin@localhost:8837/web?sslmode=disable' \
|
|
264
|
+
--source-table 'public.some_data' \
|
|
265
|
+
--dest-uri 'bigquery://<your-project-name>?credentials_path=/path/to/service/account.json' \
|
|
266
|
+
--dest-table 'ingestr.some_data'
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
That's it.
|
|
270
|
+
|
|
271
|
+
This command:
|
|
272
|
+
|
|
273
|
+
- gets the table `public.some_data` from the Postgres instance.
|
|
274
|
+
- uploads this data to your BigQuery warehouse under the schema `ingestr` and table `some_data`.
|
|
275
|
+
|
|
276
|
+
## Documentation
|
|
277
|
+
|
|
278
|
+
You can see the full documentation [here](https://bruin-data.github.io/ingestr/getting-started/quickstart.html).
|
|
279
|
+
|
|
280
|
+
## Community
|
|
281
|
+
|
|
282
|
+
Join our Slack community [here](https://join.slack.com/t/bruindatacommunity/shared_invite/zt-2dl2i8foy-bVsuMUauHeN9M2laVm3ZVg).
|
|
283
|
+
|
|
284
|
+
## Contributing
|
|
285
|
+
|
|
286
|
+
Pull requests are welcome. However, please open an issue first to discuss what you would like to change. We maybe able to offer you help and feedback regarding any changes you would like to make.
|
|
287
|
+
|
|
288
|
+
> [!NOTE]
|
|
289
|
+
> After cloning `ingestr` make sure to run `make setup` to install githooks.
|
|
290
|
+
|
|
291
|
+
## Supported sources & destinations
|
|
292
|
+
<table>
|
|
293
|
+
<tr>
|
|
294
|
+
<th></th>
|
|
295
|
+
<th>Source</th>
|
|
296
|
+
<th>Destination</th>
|
|
297
|
+
</tr>
|
|
298
|
+
<tr>
|
|
299
|
+
<td colspan="3" style='text-align:center;'><strong>Databases</strong></td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td>BigQuery</td>
|
|
303
|
+
<td>✅</td>
|
|
304
|
+
<td>✅</td>
|
|
305
|
+
</tr>
|
|
306
|
+
<tr>
|
|
307
|
+
<td>ClickHouse</td>
|
|
308
|
+
<td>✅</td>
|
|
309
|
+
<td>✅</td>
|
|
310
|
+
</tr>
|
|
311
|
+
<tr>
|
|
312
|
+
<td>CrateDB</td>
|
|
313
|
+
<td>✅</td>
|
|
314
|
+
<td>✅</td>
|
|
315
|
+
</tr>
|
|
316
|
+
<tr>
|
|
317
|
+
<td>Databricks</td>
|
|
318
|
+
<td>✅</td>
|
|
319
|
+
<td>✅</td>
|
|
320
|
+
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<td>IBM Db2</td>
|
|
323
|
+
<td>✅</td>
|
|
324
|
+
<td>-</td>
|
|
325
|
+
</tr>
|
|
326
|
+
<tr>
|
|
327
|
+
<td>DuckDB</td>
|
|
328
|
+
<td>✅</td>
|
|
329
|
+
<td>✅</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td>DynamoDB</td>
|
|
333
|
+
<td>✅</td>
|
|
334
|
+
<td>-</td>
|
|
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>
|
|
346
|
+
<tr>
|
|
347
|
+
<td>Local CSV file</td>
|
|
348
|
+
<td>✅</td>
|
|
349
|
+
<td>✅</td>
|
|
350
|
+
</tr>
|
|
351
|
+
<tr>
|
|
352
|
+
<td>Microsoft SQL Server</td>
|
|
353
|
+
<td>✅</td>
|
|
354
|
+
<td>✅</td>
|
|
355
|
+
</tr>
|
|
356
|
+
<tr>
|
|
357
|
+
<td>MongoDB</td>
|
|
358
|
+
<td>✅</td>
|
|
359
|
+
<td>✅</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td>MotherDuck</td>
|
|
363
|
+
<td>✅</td>
|
|
364
|
+
<td>✅</td>
|
|
365
|
+
</tr>
|
|
366
|
+
<tr>
|
|
367
|
+
<td>MySQL</td>
|
|
368
|
+
<td>✅</td>
|
|
369
|
+
<td>❌</td>
|
|
370
|
+
</tr>
|
|
371
|
+
<tr>
|
|
372
|
+
<td>Oracle</td>
|
|
373
|
+
<td>✅</td>
|
|
374
|
+
<td>❌</td>
|
|
375
|
+
</tr>
|
|
376
|
+
<tr>
|
|
377
|
+
<td>Postgres</td>
|
|
378
|
+
<td>✅</td>
|
|
379
|
+
<td>✅</td>
|
|
380
|
+
</tr>
|
|
381
|
+
<tr>
|
|
382
|
+
<td>Redshift</td>
|
|
383
|
+
<td>✅</td>
|
|
384
|
+
<td>✅</td>
|
|
385
|
+
</tr>
|
|
386
|
+
<tr>
|
|
387
|
+
<td>SAP Hana</td>
|
|
388
|
+
<td>✅</td>
|
|
389
|
+
<td>❌</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td>Snowflake</td>
|
|
393
|
+
<td>✅</td>
|
|
394
|
+
<td>✅</td>
|
|
395
|
+
</tr>
|
|
396
|
+
<tr>
|
|
397
|
+
<td>SQLite</td>
|
|
398
|
+
<td>✅</td>
|
|
399
|
+
<td>❌</td>
|
|
400
|
+
</tr>
|
|
401
|
+
<tr>
|
|
402
|
+
<td>Trino</td>
|
|
403
|
+
<td>✅</td>
|
|
404
|
+
<td>✅</td>
|
|
405
|
+
</tr>
|
|
406
|
+
<tr>
|
|
407
|
+
<td colspan="3" style='text-align:center;'><strong>Platforms</strong></td>
|
|
408
|
+
</tr>
|
|
409
|
+
<td>Adjust</td>
|
|
410
|
+
<td>✅</td>
|
|
411
|
+
<td>-</td>
|
|
412
|
+
<tr>
|
|
413
|
+
<td>Airtable</td>
|
|
414
|
+
<td>✅</td>
|
|
415
|
+
<td>-</td>
|
|
416
|
+
</tr>
|
|
417
|
+
<tr>
|
|
418
|
+
<td>Amazon Kinesis</td>
|
|
419
|
+
<td>✅</td>
|
|
420
|
+
<td>-</td>
|
|
421
|
+
</tr>
|
|
422
|
+
<tr>
|
|
423
|
+
<td>Apache Kafka</td>
|
|
424
|
+
<td>✅</td>
|
|
425
|
+
<td>-</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td>AppsFlyer</td>
|
|
429
|
+
<td>✅</td>
|
|
430
|
+
<td>-</td>
|
|
431
|
+
</tr>
|
|
432
|
+
<tr>
|
|
433
|
+
<td>App Store</td>
|
|
434
|
+
<td>✅</td>
|
|
435
|
+
<td>-</td>
|
|
436
|
+
</tr>
|
|
437
|
+
<tr>
|
|
438
|
+
<td>Asana</td>
|
|
439
|
+
<td>✅</td>
|
|
440
|
+
<td>-</td>
|
|
441
|
+
</tr>
|
|
442
|
+
<tr>
|
|
443
|
+
<td>Attio</td>
|
|
444
|
+
<td>✅</td>
|
|
445
|
+
<td>-</td>
|
|
446
|
+
</tr>
|
|
447
|
+
<tr>
|
|
448
|
+
<td>Chess.com</td>
|
|
449
|
+
<td>✅</td>
|
|
450
|
+
<td>-</td>
|
|
451
|
+
</tr>
|
|
452
|
+
<tr>
|
|
453
|
+
<td>Facebook Ads</td>
|
|
454
|
+
<td>✅</td>
|
|
455
|
+
<td>-</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td>GitHub</td>
|
|
459
|
+
<td>✅</td>
|
|
460
|
+
<td>-</td>
|
|
461
|
+
</tr>
|
|
462
|
+
<tr>
|
|
463
|
+
<td>Gorgias</td>
|
|
464
|
+
<td>✅</td>
|
|
465
|
+
<td>-</td>
|
|
466
|
+
</tr>
|
|
467
|
+
<tr>
|
|
468
|
+
<td>Google Sheets</td>
|
|
469
|
+
<td>✅</td>
|
|
470
|
+
<td>-</td>
|
|
471
|
+
</tr>
|
|
472
|
+
<tr>
|
|
473
|
+
<td>Google Ads</td>
|
|
474
|
+
<td>✅</td>
|
|
475
|
+
<td>-</td>
|
|
476
|
+
</tr>
|
|
477
|
+
<tr>
|
|
478
|
+
<td>Google Analytics</td>
|
|
479
|
+
<td>✅</td>
|
|
480
|
+
<td>-</td>
|
|
481
|
+
</tr>
|
|
482
|
+
<tr>
|
|
483
|
+
<td>Klaviyo</td>
|
|
484
|
+
<td>✅</td>
|
|
485
|
+
<td>-</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td>LinkedIn Ads</td>
|
|
489
|
+
<td>✅</td>
|
|
490
|
+
<td>-</td>
|
|
491
|
+
</tr>
|
|
492
|
+
<tr>
|
|
493
|
+
<td>Notion</td>
|
|
494
|
+
<td>✅</td>
|
|
495
|
+
<td>-</td>
|
|
496
|
+
</tr>
|
|
497
|
+
<tr>
|
|
498
|
+
<td>Personio</td>
|
|
499
|
+
<td>✅</td>
|
|
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>
|
|
511
|
+
</tr>
|
|
512
|
+
<tr>
|
|
513
|
+
<td>S3</td>
|
|
514
|
+
<td>✅</td>
|
|
515
|
+
<td>-</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td>Salesforce</td>
|
|
519
|
+
<td>✅</td>
|
|
520
|
+
<td>-</td>
|
|
521
|
+
</tr>
|
|
522
|
+
<tr>
|
|
523
|
+
<td>Shopify</td>
|
|
524
|
+
<td>✅</td>
|
|
525
|
+
<td>-</td>
|
|
526
|
+
</tr>
|
|
527
|
+
<tr>
|
|
528
|
+
<td>Slack</td>
|
|
529
|
+
<td>✅</td>
|
|
530
|
+
<td>-</td>
|
|
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>
|
|
542
|
+
<tr>
|
|
543
|
+
<td>Stripe</td>
|
|
544
|
+
<td>✅</td>
|
|
545
|
+
<td>-</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td>TikTok Ads</td>
|
|
549
|
+
<td>✅</td>
|
|
550
|
+
<td>-</td>
|
|
551
|
+
</tr>
|
|
552
|
+
<tr>
|
|
553
|
+
<td>Zendesk</td>
|
|
554
|
+
<td>✅</td>
|
|
555
|
+
<td>-</td>
|
|
556
|
+
</tr>
|
|
557
|
+
</table>
|
|
558
|
+
|
|
559
|
+
Feel free to create an issue if you'd like to see support for another source or destination.
|
|
560
|
+
|
|
561
|
+
## Acknowledgements
|
|
562
|
+
|
|
563
|
+
This project would not have been possible without the amazing work done by the [SQLAlchemy](https://www.sqlalchemy.org/) and [dlt](https://dlthub.com/) teams. We relied on their work to connect to various sources and destinations, and built `ingestr` as a simple, opinionated wrapper around their work.
|