Implements naive csv reader / writer (#2)

This commit is contained in:
Romain Dorgueil
2016-12-28 12:27:23 +01:00
parent 96c9b55fec
commit e77fbae38b
3 changed files with 158 additions and 4 deletions

View File

@ -6,10 +6,9 @@ try:
except ImportError as e:
import logging
logging.exception(
'You must install Jupyter to use the bonobo Jupyter extension. Easiest way is to install the '
'optional "jupyter" dependencies with «pip install bonobo[jupyter]», but you can also install a '
'specific version by yourself.')
logging.exception('You must install Jupyter to use the bonobo Jupyter extension. Easiest way is to install the '
'optional "jupyter" dependencies with «pip install bonobo[jupyter]», but you can also install a '
'specific version by yourself.')
class JupyterOutputPlugin(Plugin):