ingestr 0.9.3__py3-none-any.whl → 0.9.5__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/sources.py CHANGED
@@ -759,7 +759,7 @@ class AdjustSource:
759
759
  metrics = None
760
760
  filters = []
761
761
  if table.startswith("custom:"):
762
- fields = table.split(":")
762
+ fields = table.split(":", 3)
763
763
  if len(fields) != 3 and len(fields) != 4:
764
764
  raise ValueError(
765
765
  "Invalid Adjust custom table format. Expected format: custom:<dimensions>,<metrics> or custom:<dimensions>:<metrics>:<filters>"
ingestr/src/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.9.3"
1
+ __version__ = "0.9.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ingestr
3
- Version: 0.9.3
3
+ Version: 0.9.5
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
@@ -51,7 +51,7 @@ Description-Content-Type: text/markdown
51
51
 
52
52
  <div align="center">
53
53
  <img src="https://github.com/bruin-data/ingestr/blob/main/resources/ingestr.svg?raw=true" width="500" />
54
- <p>Ingest & copy data from any source to any destination without any code</p>
54
+ <p>Copy data from any source to any destination without any code</p>
55
55
  <img src="https://github.com/bruin-data/ingestr/blob/main/resources/demo.gif?raw=true" width="750" />
56
56
  </div>
57
57
 
@@ -63,7 +63,7 @@ Description-Content-Type: text/markdown
63
63
 
64
64
  ---
65
65
 
66
- Ingestr is a command-line application that allows you to ingest data from any source into any destination using simple command-line flags, no code necessary.
66
+ 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.
67
67
 
68
68
  - ✨ copy data from your database into any destination
69
69
  - ➕ incremental loading: `append`, `merge` or `delete+insert`
@@ -89,10 +89,10 @@ ingestr ingest \
89
89
 
90
90
  That's it.
91
91
 
92
- This command will:
92
+ This command:
93
93
 
94
- - get the table `public.some_data` from the Postgres instance.
95
- - upload this data to your BigQuery warehouse under the schema `ingestr` and table `some_data`.
94
+ - gets the table `public.some_data` from the Postgres instance.
95
+ - uploads this data to your BigQuery warehouse under the schema `ingestr` and table `some_data`.
96
96
 
97
97
  ## Documentation
98
98
 
@@ -102,7 +102,7 @@ You can see the full documentation [here](https://bruin-data.github.io/ingestr/g
102
102
 
103
103
  Join our Slack community [here](https://join.slack.com/t/bruindatacommunity/shared_invite/zt-2dl2i8foy-bVsuMUauHeN9M2laVm3ZVg).
104
104
 
105
- ## Supported Sources & Destinations
105
+ ## Supported sources & destinations
106
106
 
107
107
  <table>
108
108
  <tr>
@@ -256,7 +256,7 @@ Join our Slack community [here](https://join.slack.com/t/bruindatacommunity/shar
256
256
  </tr>
257
257
  </table>
258
258
 
259
- More to come soon!
259
+ Feel free to create an issue if you'd like to see support for another source or destination.
260
260
 
261
261
  ## Acknowledgements
262
262
 
@@ -2,9 +2,9 @@ ingestr/main.py,sha256=B8TAQotJoYSvmaQQm33o2lv99OVLYNz-1Aw_fgQahwE,17718
2
2
  ingestr/src/.gitignore,sha256=8cX1AZTSI0TcdZFGTmS_oyBjpfCzhOEt0DdAo2dFIY8,203
3
3
  ingestr/src/destinations.py,sha256=2SfPMjtTelPmzQmc3zNs8xGcKIPuGn_hoZFIBUuhjXI,6338
4
4
  ingestr/src/factory.py,sha256=ft81B-YJgvEROkHAZjMjTIS7IYvle-uZQv45b7-Wfk0,4947
5
- ingestr/src/sources.py,sha256=0eLrkd3oVsK9bWG7rp2Asu5QNrAUP2ZeMIIkduEuLL8,33756
5
+ ingestr/src/sources.py,sha256=mG-HPlmPRZQcxChHbIZ0V0bH1EHeko0hbFWnQOcBYRo,33759
6
6
  ingestr/src/table_definition.py,sha256=REbAbqdlmUMUuRh8nEQRreWjPVOQ5ZcfqGkScKdCrmk,390
7
- ingestr/src/version.py,sha256=xKd3pzbczuMsdB08eLAOqZDUd_q1IRxwZ_ccAFL4c4A,22
7
+ ingestr/src/version.py,sha256=ORAtCCI2THBDcdzIbh6oBsoshDvkkmXUWpmO4Q5McAk,22
8
8
  ingestr/src/adjust/__init__.py,sha256=oTM7XozDcMuUiCZ0w4gWEBXuCCtMZ0iBfkKdd2pVa1E,3007
9
9
  ingestr/src/adjust/adjust_helpers.py,sha256=-tmmxy9k3wms-ZEIgxmlp2cAQ2X_O1lgjY1128bbMu4,3224
10
10
  ingestr/src/airtable/__init__.py,sha256=GHWYrjI2qhs_JihdNJysB0Ni3bzqT_MLXn_S9_Q5zRA,2775
@@ -74,8 +74,8 @@ ingestr/testdata/delete_insert_part2.csv,sha256=B_KUzpzbNdDY_n7wWop1mT2cz36TmayS
74
74
  ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ7ZqYN0,276
75
75
  ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
76
76
  ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
77
- ingestr-0.9.3.dist-info/METADATA,sha256=QWrj7bb9OT6Gyh-mviHNElRqV23OO2guc8YKrZ05yfU,7004
78
- ingestr-0.9.3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
79
- ingestr-0.9.3.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
80
- ingestr-0.9.3.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
81
- ingestr-0.9.3.dist-info/RECORD,,
77
+ ingestr-0.9.5.dist-info/METADATA,sha256=y1GtmywpIUCyRQrqjAJtD8Qv9gFD7LYm25m1kkKpqxU,7058
78
+ ingestr-0.9.5.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
79
+ ingestr-0.9.5.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
80
+ ingestr-0.9.5.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
81
+ ingestr-0.9.5.dist-info/RECORD,,