Python nbconvert.preprocessors.Preprocessor() Examples
The following are 3
code examples of nbconvert.preprocessors.Preprocessor().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
nbconvert.preprocessors
, or try the search function
.
Example #1
Source File: exporter.py From trappy with Apache License 2.0 | 5 votes |
def __init__(self, *args, **kwargs): super(Preprocessor, self).__init__(*args, **kwargs) self.inlined_files = [] self.sourced_libs = []
Example #2
Source File: exporter.py From trappy with Apache License 2.0 | 5 votes |
def __init__(self, *args, **kwargs): super(Preprocessor, self).__init__(*args, **kwargs) self.inlined_files = [] self.sourced_libs = []
Example #3
Source File: preprocessors.py From holoviews with BSD 3-Clause "New" or "Revised" License | 5 votes |
def __init__(self, version, substitutions, **kw): self.nbversion = version self.substitutions = substitutions super(Preprocessor, self).__init__(**kw)