bubbles
bubbles copied to clipboard
[NOT MAINTAINED] Bubbles – Python ETL framework
# Issue Type [x] Bug (Typo) # Steps to Replicate and Expected Behaviour - Examine bubbles/execution/context.py and observe `sucessfully`, however expect to see `successfully`. - Examine bubbles/execution/pipeline.py and observe `successfuly`,...
Darn
This seemed to be the most complete Python ETL package. Why don't Python nerds need to ETL?
This package still supported? This package has changed the method parameters? Examples from articles http://okfnlabs.org/blog/2014/09/01/bubbles-python-etl.html are not working.
I have data in a Postgres DB that I'd like to inject into Sqlite using a Pipeline. ``` source = open_store("sql", 'postgres://....') #target = open_store("csv", "./data") target = open_store("sql", 'sqlite:///data/data.sql')...
See http://dataprotocols.org/json-table-schema/ for more info
From bubbles / doc / operations.rst The following example code fails: from bubbles import default_context as c from bubbles import get_object source = get_object("csv", "data.csv") duplicates = c.op.duplicates(source) $python operations.py...
This: ``` p.sort([["firstname", "asc"]]) ``` looks unintuitive, despite being correct. Allow: ``` p.sort("firstname") ``` This would be nice to have, but should not be allowed as it is ambiguous: ```...