basic reimplementation of what was working in rdc.etl, jupyter widget, json import, demo with opendatasoft api, etc. Lot of things are still work in progress, stay tuned.

This commit is contained in:
Romain Dorgueil
2016-12-24 10:37:53 +01:00
parent f0315936d3
commit c30048f1b0
54 changed files with 4680 additions and 256 deletions

View File

@ -1,4 +1,15 @@
__title__ = 'bonobo'
__version__ = '0.0.0'
__author__ = 'Romain Dorgueil'
__license__ = 'Apache 2.0'
import sys
from .core import Graph, NaiveStrategy, ProcessPoolExecutorStrategy, ThreadPoolExecutorStrategy, inject, service
PY35 = (sys.version_info >= (3, 5))
assert PY35, 'Python 3.5+ is required to use Bonobo.'
__all__ = [
Graph,
NaiveStrategy,
ProcessPoolExecutorStrategy,
ThreadPoolExecutorStrategy,
inject,
service,
]