# Bonobo data-processing toolkit. # # Bonobo is a line-by-line data-processing toolkit for python 3.5+ emphasizing simplicity and atomicity of data # transformations using a simple directed graph of python callables. # # Licensed under Apache License 2.0, read the LICENSE file in the root of the source tree. import sys if sys.version_info < (3, 5): raise RuntimeError('Python 3.5+ is required to use Bonobo.') from bonobo._api import * from bonobo._api import __all__ from bonobo._api import __doc__ from bonobo._version import __version__ __all__ = ['__version__'] + __all__ __logo__ = '' __doc__ = __doc__ __version__ = __version__ def _repr_html_(): """This allows to easily display a version snippet in Jupyter.""" from bonobo.util.pkgs import bonobo_packages from bonobo.commands.version import get_versions return ( '
' '
{}
' '
{}
' '
' ).format( __logo__, '
'.join(get_versions(all=True)) ) del sys