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:
@ -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,
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user