master
/ .localenv / lib / python3.5 / site-packages / nbconvert / tests / exporter_entrypoint / eptest.py

eptest.py @master raw · history · blame

1
2
3
4
5
6
7
8
from nbconvert.exporters import Exporter

class DummyExporter(Exporter):
    pass

class DummyScriptExporter(Exporter):
    def from_notebook_node(self, nb, resources=None, **kw):
        return 'dummy-script-exported', resources