ingestr 0.13.85__py3-none-any.whl → 0.13.87__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/appstore/__init__.py +1 -0
- ingestr/src/buildinfo.py +1 -1
- ingestr/src/chess/__init__.py +1 -1
- ingestr/src/factory.py +4 -0
- ingestr/src/fluxx/__init__.py +5725 -0
- ingestr/src/fluxx/helpers.py +216 -0
- ingestr/src/frankfurter/__init__.py +121 -123
- ingestr/src/frankfurter/helpers.py +4 -4
- ingestr/src/klaviyo/__init__.py +5 -5
- ingestr/src/linear/__init__.py +10 -9
- ingestr/src/linear/helpers.py +20 -10
- ingestr/src/mongodb/__init__.py +1 -1
- ingestr/src/mongodb/helpers.py +36 -15
- ingestr/src/revenuecat/__init__.py +108 -0
- ingestr/src/revenuecat/helpers.py +291 -0
- ingestr/src/shopify/__init__.py +1 -1
- ingestr/src/sources.py +134 -13
- ingestr/src/stripe_analytics/__init__.py +1 -18
- {ingestr-0.13.85.dist-info → ingestr-0.13.87.dist-info}/METADATA +1 -1
- {ingestr-0.13.85.dist-info → ingestr-0.13.87.dist-info}/RECORD +23 -19
- {ingestr-0.13.85.dist-info → ingestr-0.13.87.dist-info}/WHEEL +0 -0
- {ingestr-0.13.85.dist-info → ingestr-0.13.87.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.85.dist-info → ingestr-0.13.87.dist-info}/licenses/LICENSE.md +0 -0
ingestr/src/appstore/__init__.py
CHANGED
ingestr/src/buildinfo.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "v0.13.
|
|
1
|
+
version = "v0.13.87"
|
ingestr/src/chess/__init__.py
CHANGED
|
@@ -75,7 +75,7 @@ def players_archives(players: List[str]) -> Iterator[List[TDataItem]]:
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
@dlt.resource(
|
|
78
|
-
write_disposition="
|
|
78
|
+
write_disposition="replace", columns={"end_time": {"data_type": "timestamp"}}
|
|
79
79
|
)
|
|
80
80
|
def players_games(
|
|
81
81
|
players: List[str], start_month: str = None, end_month: str = None
|
ingestr/src/factory.py
CHANGED
|
@@ -37,6 +37,7 @@ from ingestr.src.sources import (
|
|
|
37
37
|
DynamoDBSource,
|
|
38
38
|
ElasticsearchSource,
|
|
39
39
|
FacebookAdsSource,
|
|
40
|
+
FluxxSource,
|
|
40
41
|
FrankfurterSource,
|
|
41
42
|
FreshdeskSource,
|
|
42
43
|
GCSSource,
|
|
@@ -62,6 +63,7 @@ from ingestr.src.sources import (
|
|
|
62
63
|
PinterestSource,
|
|
63
64
|
PipedriveSource,
|
|
64
65
|
QuickBooksSource,
|
|
66
|
+
RevenueCatSource,
|
|
65
67
|
S3Source,
|
|
66
68
|
SalesforceSource,
|
|
67
69
|
SFTPSource,
|
|
@@ -152,6 +154,7 @@ class SourceDestinationFactory:
|
|
|
152
154
|
"chess": ChessSource,
|
|
153
155
|
"stripe": StripeAnalyticsSource,
|
|
154
156
|
"facebookads": FacebookAdsSource,
|
|
157
|
+
"fluxx": FluxxSource,
|
|
155
158
|
"slack": SlackSource,
|
|
156
159
|
"hubspot": HubspotSource,
|
|
157
160
|
"airtable": AirtableSource,
|
|
@@ -190,6 +193,7 @@ class SourceDestinationFactory:
|
|
|
190
193
|
"smartsheet": SmartsheetSource,
|
|
191
194
|
"sftp": SFTPSource,
|
|
192
195
|
"pinterest": PinterestSource,
|
|
196
|
+
"revenuecat": RevenueCatSource,
|
|
193
197
|
"zoom": ZoomSource,
|
|
194
198
|
"clickup": ClickupSource,
|
|
195
199
|
"influxdb": InfluxDBSource,
|