Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
35
venv/Lib/site-packages/nbconvert/postprocessors/base.py
Normal file
35
venv/Lib/site-packages/nbconvert/postprocessors/base.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
"""
|
||||
Basic post processor
|
||||
"""
|
||||
#-----------------------------------------------------------------------------
|
||||
#Copyright (c) 2013, the IPython Development Team.
|
||||
#
|
||||
#Distributed under the terms of the Modified BSD License.
|
||||
#
|
||||
#The full license is in the file COPYING.txt, distributed with this software.
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Imports
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from ..utils.base import NbConvertBase
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Classes
|
||||
#-----------------------------------------------------------------------------
|
||||
class PostProcessorBase(NbConvertBase):
|
||||
|
||||
def __call__(self, input):
|
||||
"""
|
||||
See def postprocess() ...
|
||||
"""
|
||||
self.postprocess(input)
|
||||
|
||||
|
||||
def postprocess(self, input):
|
||||
"""
|
||||
Post-process output from a writer.
|
||||
"""
|
||||
raise NotImplementedError('postprocess')
|
Loading…
Add table
Add a link
Reference in a new issue