##// END OF EJS Templates
fix typo in nbconvert help...
Pierre Haessig -
Show More
@@ -1,311 +1,311 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 """NbConvert is a utility for conversion of .ipynb files.
2 """NbConvert is a utility for conversion of .ipynb files.
3
3
4 Command-line interface for the NbConvert conversion utility.
4 Command-line interface for the NbConvert conversion utility.
5 """
5 """
6
6
7 # Copyright (c) IPython Development Team.
7 # Copyright (c) IPython Development Team.
8 # Distributed under the terms of the Modified BSD License.
8 # Distributed under the terms of the Modified BSD License.
9
9
10 from __future__ import print_function
10 from __future__ import print_function
11
11
12 import logging
12 import logging
13 import sys
13 import sys
14 import os
14 import os
15 import glob
15 import glob
16
16
17 from IPython.core.application import BaseIPythonApplication, base_aliases, base_flags
17 from IPython.core.application import BaseIPythonApplication, base_aliases, base_flags
18 from IPython.core.profiledir import ProfileDir
18 from IPython.core.profiledir import ProfileDir
19 from IPython.config import catch_config_error, Configurable
19 from IPython.config import catch_config_error, Configurable
20 from IPython.utils.traitlets import (
20 from IPython.utils.traitlets import (
21 Unicode, List, Instance, DottedObjectName, Type, CaselessStrEnum,
21 Unicode, List, Instance, DottedObjectName, Type, CaselessStrEnum,
22 )
22 )
23 from IPython.utils.importstring import import_item
23 from IPython.utils.importstring import import_item
24
24
25 from .exporters.export import get_export_names, exporter_map
25 from .exporters.export import get_export_names, exporter_map
26 from IPython.nbconvert import exporters, preprocessors, writers, postprocessors
26 from IPython.nbconvert import exporters, preprocessors, writers, postprocessors
27 from .utils.base import NbConvertBase
27 from .utils.base import NbConvertBase
28 from .utils.exceptions import ConversionException
28 from .utils.exceptions import ConversionException
29
29
30 #-----------------------------------------------------------------------------
30 #-----------------------------------------------------------------------------
31 #Classes and functions
31 #Classes and functions
32 #-----------------------------------------------------------------------------
32 #-----------------------------------------------------------------------------
33
33
34 class DottedOrNone(DottedObjectName):
34 class DottedOrNone(DottedObjectName):
35 """
35 """
36 A string holding a valid dotted object name in Python, such as A.b3._c
36 A string holding a valid dotted object name in Python, such as A.b3._c
37 Also allows for None type."""
37 Also allows for None type."""
38
38
39 default_value = u''
39 default_value = u''
40
40
41 def validate(self, obj, value):
41 def validate(self, obj, value):
42 if value is not None and len(value) > 0:
42 if value is not None and len(value) > 0:
43 return super(DottedOrNone, self).validate(obj, value)
43 return super(DottedOrNone, self).validate(obj, value)
44 else:
44 else:
45 return value
45 return value
46
46
47 nbconvert_aliases = {}
47 nbconvert_aliases = {}
48 nbconvert_aliases.update(base_aliases)
48 nbconvert_aliases.update(base_aliases)
49 nbconvert_aliases.update({
49 nbconvert_aliases.update({
50 'to' : 'NbConvertApp.export_format',
50 'to' : 'NbConvertApp.export_format',
51 'template' : 'TemplateExporter.template_file',
51 'template' : 'TemplateExporter.template_file',
52 'writer' : 'NbConvertApp.writer_class',
52 'writer' : 'NbConvertApp.writer_class',
53 'post': 'NbConvertApp.postprocessor_class',
53 'post': 'NbConvertApp.postprocessor_class',
54 'output': 'NbConvertApp.output_base',
54 'output': 'NbConvertApp.output_base',
55 'reveal-prefix': 'RevealHelpPreprocessor.url_prefix',
55 'reveal-prefix': 'RevealHelpPreprocessor.url_prefix',
56 })
56 })
57
57
58 nbconvert_flags = {}
58 nbconvert_flags = {}
59 nbconvert_flags.update(base_flags)
59 nbconvert_flags.update(base_flags)
60 nbconvert_flags.update({
60 nbconvert_flags.update({
61 'stdout' : (
61 'stdout' : (
62 {'NbConvertApp' : {'writer_class' : "StdoutWriter"}},
62 {'NbConvertApp' : {'writer_class' : "StdoutWriter"}},
63 "Write notebook output to stdout instead of files."
63 "Write notebook output to stdout instead of files."
64 )
64 )
65 })
65 })
66
66
67
67
68 class NbConvertApp(BaseIPythonApplication):
68 class NbConvertApp(BaseIPythonApplication):
69 """Application used to convert from notebook file type (``*.ipynb``)"""
69 """Application used to convert from notebook file type (``*.ipynb``)"""
70
70
71 name = 'ipython-nbconvert'
71 name = 'ipython-nbconvert'
72 aliases = nbconvert_aliases
72 aliases = nbconvert_aliases
73 flags = nbconvert_flags
73 flags = nbconvert_flags
74
74
75 def _log_level_default(self):
75 def _log_level_default(self):
76 return logging.INFO
76 return logging.INFO
77
77
78 def _classes_default(self):
78 def _classes_default(self):
79 classes = [NbConvertBase, ProfileDir]
79 classes = [NbConvertBase, ProfileDir]
80 for pkg in (exporters, preprocessors, writers, postprocessors):
80 for pkg in (exporters, preprocessors, writers, postprocessors):
81 for name in dir(pkg):
81 for name in dir(pkg):
82 cls = getattr(pkg, name)
82 cls = getattr(pkg, name)
83 if isinstance(cls, type) and issubclass(cls, Configurable):
83 if isinstance(cls, type) and issubclass(cls, Configurable):
84 classes.append(cls)
84 classes.append(cls)
85
85
86 return classes
86 return classes
87
87
88 description = Unicode(
88 description = Unicode(
89 u"""This application is used to convert notebook files (*.ipynb)
89 u"""This application is used to convert notebook files (*.ipynb)
90 to various other formats.
90 to various other formats.
91
91
92 WARNING: THE COMMANDLINE INTERFACE MAY CHANGE IN FUTURE RELEASES.""")
92 WARNING: THE COMMANDLINE INTERFACE MAY CHANGE IN FUTURE RELEASES.""")
93
93
94 output_base = Unicode('', config=True, help='''overwrite base name use for output files.
94 output_base = Unicode('', config=True, help='''overwrite base name use for output files.
95 can only be use when converting one notebook at a time.
95 can only be use when converting one notebook at a time.
96 ''')
96 ''')
97
97
98 examples = Unicode(u"""
98 examples = Unicode(u"""
99 The simplest way to use nbconvert is
99 The simplest way to use nbconvert is
100
100
101 > ipython nbconvert mynotebook.ipynb
101 > ipython nbconvert mynotebook.ipynb
102
102
103 which will convert mynotebook.ipynb to the default format (probably HTML).
103 which will convert mynotebook.ipynb to the default format (probably HTML).
104
104
105 You can specify the export format with `--to`.
105 You can specify the export format with `--to`.
106 Options include {0}
106 Options include {0}
107
107
108 > ipython nbconvert --to latex mynotebook.ipynb
108 > ipython nbconvert --to latex mynotebook.ipynb
109
109
110 Both HTML and LaTeX support multiple output templates. LaTeX includes
110 Both HTML and LaTeX support multiple output templates. LaTeX includes
111 'basic', 'book', and 'article'. HTML includes 'basic' and 'full'. You
111 'base', 'book', and 'article'. HTML includes 'basic' and 'full'. You
112 can specify the flavor of the format used.
112 can specify the flavor of the format used.
113
113
114 > ipython nbconvert --to html --template basic mynotebook.ipynb
114 > ipython nbconvert --to html --template basic mynotebook.ipynb
115
115
116 You can also pipe the output to stdout, rather than a file
116 You can also pipe the output to stdout, rather than a file
117
117
118 > ipython nbconvert mynotebook.ipynb --stdout
118 > ipython nbconvert mynotebook.ipynb --stdout
119
119
120 PDF is generated via latex
120 PDF is generated via latex
121
121
122 > ipython nbconvert mynotebook.ipynb --to pdf
122 > ipython nbconvert mynotebook.ipynb --to pdf
123
123
124 You can get (and serve) a Reveal.js-powered slideshow
124 You can get (and serve) a Reveal.js-powered slideshow
125
125
126 > ipython nbconvert myslides.ipynb --to slides --post serve
126 > ipython nbconvert myslides.ipynb --to slides --post serve
127
127
128 Multiple notebooks can be given at the command line in a couple of
128 Multiple notebooks can be given at the command line in a couple of
129 different ways:
129 different ways:
130
130
131 > ipython nbconvert notebook*.ipynb
131 > ipython nbconvert notebook*.ipynb
132 > ipython nbconvert notebook1.ipynb notebook2.ipynb
132 > ipython nbconvert notebook1.ipynb notebook2.ipynb
133
133
134 or you can specify the notebooks list in a config file, containing::
134 or you can specify the notebooks list in a config file, containing::
135
135
136 c.NbConvertApp.notebooks = ["my_notebook.ipynb"]
136 c.NbConvertApp.notebooks = ["my_notebook.ipynb"]
137
137
138 > ipython nbconvert --config mycfg.py
138 > ipython nbconvert --config mycfg.py
139 """.format(get_export_names()))
139 """.format(get_export_names()))
140
140
141 # Writer specific variables
141 # Writer specific variables
142 writer = Instance('IPython.nbconvert.writers.base.WriterBase',
142 writer = Instance('IPython.nbconvert.writers.base.WriterBase',
143 help="""Instance of the writer class used to write the
143 help="""Instance of the writer class used to write the
144 results of the conversion.""")
144 results of the conversion.""")
145 writer_class = DottedObjectName('FilesWriter', config=True,
145 writer_class = DottedObjectName('FilesWriter', config=True,
146 help="""Writer class used to write the
146 help="""Writer class used to write the
147 results of the conversion""")
147 results of the conversion""")
148 writer_aliases = {'fileswriter': 'IPython.nbconvert.writers.files.FilesWriter',
148 writer_aliases = {'fileswriter': 'IPython.nbconvert.writers.files.FilesWriter',
149 'debugwriter': 'IPython.nbconvert.writers.debug.DebugWriter',
149 'debugwriter': 'IPython.nbconvert.writers.debug.DebugWriter',
150 'stdoutwriter': 'IPython.nbconvert.writers.stdout.StdoutWriter'}
150 'stdoutwriter': 'IPython.nbconvert.writers.stdout.StdoutWriter'}
151 writer_factory = Type()
151 writer_factory = Type()
152
152
153 def _writer_class_changed(self, name, old, new):
153 def _writer_class_changed(self, name, old, new):
154 if new.lower() in self.writer_aliases:
154 if new.lower() in self.writer_aliases:
155 new = self.writer_aliases[new.lower()]
155 new = self.writer_aliases[new.lower()]
156 self.writer_factory = import_item(new)
156 self.writer_factory = import_item(new)
157
157
158 # Post-processor specific variables
158 # Post-processor specific variables
159 postprocessor = Instance('IPython.nbconvert.postprocessors.base.PostProcessorBase',
159 postprocessor = Instance('IPython.nbconvert.postprocessors.base.PostProcessorBase',
160 help="""Instance of the PostProcessor class used to write the
160 help="""Instance of the PostProcessor class used to write the
161 results of the conversion.""")
161 results of the conversion.""")
162
162
163 postprocessor_class = DottedOrNone(config=True,
163 postprocessor_class = DottedOrNone(config=True,
164 help="""PostProcessor class used to write the
164 help="""PostProcessor class used to write the
165 results of the conversion""")
165 results of the conversion""")
166 postprocessor_aliases = {'serve': 'IPython.nbconvert.postprocessors.serve.ServePostProcessor'}
166 postprocessor_aliases = {'serve': 'IPython.nbconvert.postprocessors.serve.ServePostProcessor'}
167 postprocessor_factory = Type()
167 postprocessor_factory = Type()
168
168
169 def _postprocessor_class_changed(self, name, old, new):
169 def _postprocessor_class_changed(self, name, old, new):
170 if new.lower() in self.postprocessor_aliases:
170 if new.lower() in self.postprocessor_aliases:
171 new = self.postprocessor_aliases[new.lower()]
171 new = self.postprocessor_aliases[new.lower()]
172 if new:
172 if new:
173 self.postprocessor_factory = import_item(new)
173 self.postprocessor_factory = import_item(new)
174
174
175
175
176 # Other configurable variables
176 # Other configurable variables
177 export_format = CaselessStrEnum(get_export_names(),
177 export_format = CaselessStrEnum(get_export_names(),
178 default_value="html",
178 default_value="html",
179 config=True,
179 config=True,
180 help="""The export format to be used."""
180 help="""The export format to be used."""
181 )
181 )
182
182
183 notebooks = List([], config=True, help="""List of notebooks to convert.
183 notebooks = List([], config=True, help="""List of notebooks to convert.
184 Wildcards are supported.
184 Wildcards are supported.
185 Filenames passed positionally will be added to the list.
185 Filenames passed positionally will be added to the list.
186 """)
186 """)
187
187
188 @catch_config_error
188 @catch_config_error
189 def initialize(self, argv=None):
189 def initialize(self, argv=None):
190 self.init_syspath()
190 self.init_syspath()
191 super(NbConvertApp, self).initialize(argv)
191 super(NbConvertApp, self).initialize(argv)
192 self.init_notebooks()
192 self.init_notebooks()
193 self.init_writer()
193 self.init_writer()
194 self.init_postprocessor()
194 self.init_postprocessor()
195
195
196
196
197
197
198 def init_syspath(self):
198 def init_syspath(self):
199 """
199 """
200 Add the cwd to the sys.path ($PYTHONPATH)
200 Add the cwd to the sys.path ($PYTHONPATH)
201 """
201 """
202 sys.path.insert(0, os.getcwd())
202 sys.path.insert(0, os.getcwd())
203
203
204
204
205 def init_notebooks(self):
205 def init_notebooks(self):
206 """Construct the list of notebooks.
206 """Construct the list of notebooks.
207 If notebooks are passed on the command-line,
207 If notebooks are passed on the command-line,
208 they override notebooks specified in config files.
208 they override notebooks specified in config files.
209 Glob each notebook to replace notebook patterns with filenames.
209 Glob each notebook to replace notebook patterns with filenames.
210 """
210 """
211
211
212 # Specifying notebooks on the command-line overrides (rather than adds)
212 # Specifying notebooks on the command-line overrides (rather than adds)
213 # the notebook list
213 # the notebook list
214 if self.extra_args:
214 if self.extra_args:
215 patterns = self.extra_args
215 patterns = self.extra_args
216 else:
216 else:
217 patterns = self.notebooks
217 patterns = self.notebooks
218
218
219 # Use glob to replace all the notebook patterns with filenames.
219 # Use glob to replace all the notebook patterns with filenames.
220 filenames = []
220 filenames = []
221 for pattern in patterns:
221 for pattern in patterns:
222
222
223 # Use glob to find matching filenames. Allow the user to convert
223 # Use glob to find matching filenames. Allow the user to convert
224 # notebooks without having to type the extension.
224 # notebooks without having to type the extension.
225 globbed_files = glob.glob(pattern)
225 globbed_files = glob.glob(pattern)
226 globbed_files.extend(glob.glob(pattern + '.ipynb'))
226 globbed_files.extend(glob.glob(pattern + '.ipynb'))
227 if not globbed_files:
227 if not globbed_files:
228 self.log.warn("pattern %r matched no files", pattern)
228 self.log.warn("pattern %r matched no files", pattern)
229
229
230 for filename in globbed_files:
230 for filename in globbed_files:
231 if not filename in filenames:
231 if not filename in filenames:
232 filenames.append(filename)
232 filenames.append(filename)
233 self.notebooks = filenames
233 self.notebooks = filenames
234
234
235 def init_writer(self):
235 def init_writer(self):
236 """
236 """
237 Initialize the writer (which is stateless)
237 Initialize the writer (which is stateless)
238 """
238 """
239 self._writer_class_changed(None, self.writer_class, self.writer_class)
239 self._writer_class_changed(None, self.writer_class, self.writer_class)
240 self.writer = self.writer_factory(parent=self)
240 self.writer = self.writer_factory(parent=self)
241
241
242 def init_postprocessor(self):
242 def init_postprocessor(self):
243 """
243 """
244 Initialize the postprocessor (which is stateless)
244 Initialize the postprocessor (which is stateless)
245 """
245 """
246 self._postprocessor_class_changed(None, self.postprocessor_class,
246 self._postprocessor_class_changed(None, self.postprocessor_class,
247 self.postprocessor_class)
247 self.postprocessor_class)
248 if self.postprocessor_factory:
248 if self.postprocessor_factory:
249 self.postprocessor = self.postprocessor_factory(parent=self)
249 self.postprocessor = self.postprocessor_factory(parent=self)
250
250
251 def start(self):
251 def start(self):
252 """
252 """
253 Ran after initialization completed
253 Ran after initialization completed
254 """
254 """
255 super(NbConvertApp, self).start()
255 super(NbConvertApp, self).start()
256 self.convert_notebooks()
256 self.convert_notebooks()
257
257
258 def convert_notebooks(self):
258 def convert_notebooks(self):
259 """
259 """
260 Convert the notebooks in the self.notebook traitlet
260 Convert the notebooks in the self.notebook traitlet
261 """
261 """
262 # Export each notebook
262 # Export each notebook
263 conversion_success = 0
263 conversion_success = 0
264
264
265 if self.output_base != '' and len(self.notebooks) > 1:
265 if self.output_base != '' and len(self.notebooks) > 1:
266 self.log.error(
266 self.log.error(
267 """UsageError: --output flag or `NbConvertApp.output_base` config option
267 """UsageError: --output flag or `NbConvertApp.output_base` config option
268 cannot be used when converting multiple notebooks.
268 cannot be used when converting multiple notebooks.
269 """)
269 """)
270 self.exit(1)
270 self.exit(1)
271
271
272 exporter = exporter_map[self.export_format](config=self.config)
272 exporter = exporter_map[self.export_format](config=self.config)
273
273
274 for notebook_filename in self.notebooks:
274 for notebook_filename in self.notebooks:
275 self.log.info("Converting notebook %s to %s", notebook_filename, self.export_format)
275 self.log.info("Converting notebook %s to %s", notebook_filename, self.export_format)
276
276
277 # Get a unique key for the notebook and set it in the resources object.
277 # Get a unique key for the notebook and set it in the resources object.
278 basename = os.path.basename(notebook_filename)
278 basename = os.path.basename(notebook_filename)
279 notebook_name = basename[:basename.rfind('.')]
279 notebook_name = basename[:basename.rfind('.')]
280 if self.output_base:
280 if self.output_base:
281 notebook_name = self.output_base
281 notebook_name = self.output_base
282 resources = {}
282 resources = {}
283 resources['unique_key'] = notebook_name
283 resources['unique_key'] = notebook_name
284 resources['output_files_dir'] = '%s_files' % notebook_name
284 resources['output_files_dir'] = '%s_files' % notebook_name
285 self.log.info("Support files will be in %s", os.path.join(resources['output_files_dir'], ''))
285 self.log.info("Support files will be in %s", os.path.join(resources['output_files_dir'], ''))
286
286
287 # Try to export
287 # Try to export
288 try:
288 try:
289 output, resources = exporter.from_filename(notebook_filename, resources=resources)
289 output, resources = exporter.from_filename(notebook_filename, resources=resources)
290 except ConversionException as e:
290 except ConversionException as e:
291 self.log.error("Error while converting '%s'", notebook_filename,
291 self.log.error("Error while converting '%s'", notebook_filename,
292 exc_info=True)
292 exc_info=True)
293 self.exit(1)
293 self.exit(1)
294 else:
294 else:
295 write_resultes = self.writer.write(output, resources, notebook_name=notebook_name)
295 write_resultes = self.writer.write(output, resources, notebook_name=notebook_name)
296
296
297 #Post-process if post processor has been defined.
297 #Post-process if post processor has been defined.
298 if hasattr(self, 'postprocessor') and self.postprocessor:
298 if hasattr(self, 'postprocessor') and self.postprocessor:
299 self.postprocessor(write_resultes)
299 self.postprocessor(write_resultes)
300 conversion_success += 1
300 conversion_success += 1
301
301
302 # If nothing was converted successfully, help the user.
302 # If nothing was converted successfully, help the user.
303 if conversion_success == 0:
303 if conversion_success == 0:
304 self.print_help()
304 self.print_help()
305 sys.exit(-1)
305 sys.exit(-1)
306
306
307 #-----------------------------------------------------------------------------
307 #-----------------------------------------------------------------------------
308 # Main entry point
308 # Main entry point
309 #-----------------------------------------------------------------------------
309 #-----------------------------------------------------------------------------
310
310
311 launch_new_instance = NbConvertApp.launch_instance
311 launch_new_instance = NbConvertApp.launch_instance
General Comments 0
You need to be logged in to leave comments. Login now