##// END OF EJS Templates
Merge pull request #3734 from jdfreder/file_subdir...
Merge pull request #3734 from jdfreder/file_subdir Nbconvert: Export extracted files into `nbname_files` subdirectory Default build directory changed to . Files extracted from notebook now are placed into a ./notebook_files/ directory by default Spaces added between # symbols and comments It may be best to look at the diffs of the individual commits... The addition of spaces in the comments makes the overall diff hard to read.

File last commit:

r11636:262c9947
r11642:321025c8 merge
Show More
debug.py
43 lines | 1.5 KiB | text/x-python | PythonLexer
Jonathan Frederic
Added writer classes
r11369 #!/usr/bin/env python
"""
Contains debug writer.
"""
#-----------------------------------------------------------------------------
#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 .base import WriterBase
from pprint import pprint
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class DebugWriter(WriterBase):
"""Consumes output from nbconvert export...() methods and writes usefull
debugging information to the stdout. The information includes a list of
resources that were extracted from the notebook(s) during export."""
Jonathan Frederic
Fixes for Py3.3
r11547 def write(self, output, resources, notebook_name='notebook', **kw):
Jonathan Frederic
Added writer classes
r11369 """
Consume and write Jinja output.
See base for more...
"""
Jonathan Frederic
DebugWriter now reads key instead of
r11636 if 'outputs' in resources:
print("outputs extracted from %s" % notebook_name)
Jonathan Frederic
Added writer classes
r11369 print('-' * 80)
Jonathan Frederic
DebugWriter now reads key instead of
r11636 pprint.pprint(resources['outputs'], indent=2, width=70)
Jonathan Frederic
Added writer classes
r11369 else:
Jonathan Frederic
DebugWriter now reads key instead of
r11636 print("No outputs extracted from %s" % notebook_name)
Jonathan Frederic
Added writer classes
r11369 print('=' * 80)