python.py
59 lines
| 2.0 KiB
| text/x-python
|
PythonLexer
|
r10588 | """ | ||
|
r10677 | Python exporter which exports Notebook code into a PY file. | ||
""" | ||||
|
r10588 | #----------------------------------------------------------------------------- | ||
# 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 | ||||
#----------------------------------------------------------------------------- | ||||
|
r10677 | from IPython.utils.traitlets import Unicode | ||
|
r10588 | # local import | ||
import exporter | ||||
#----------------------------------------------------------------------------- | ||||
# Classes | ||||
#----------------------------------------------------------------------------- | ||||
|
r10677 | class PythonExporter(exporter.Exporter): | ||
""" | ||||
Exports a Python code file. | ||||
""" | ||||
|
r10624 | file_extension = Unicode( | ||
'py', config=True, | ||||
help="Extension of the file that should be written to disk") | ||||
template_file = Unicode( | ||||
'python', config=True, | ||||
help="Name of the template file to use") | ||||
|
r10874 | |||
def __init__(self, transformers=None, filters=None, config=None, **kw): | ||||
|
r10690 | """ | ||
Public constructor | ||||
Parameters | ||||
---------- | ||||
transformers : list[of transformer] | ||||
Custom transformers to apply to the notebook prior to engaging | ||||
the Jinja template engine. Any transformers specified here | ||||
will override existing transformers if a naming conflict | ||||
occurs. | ||||
|
r10874 | filters : dict{of filter} | ||
|
r10690 | Custom filters to make accessible to the Jinja templates. Any | ||
filters specified here will override existing filters if a | ||||
naming conflict occurs. | ||||
config : config | ||||
User configuration instance. | ||||
""" | ||||
|
r10588 | |||
#Call base class constructor. | ||||
|
r10677 | super(PythonExporter, self).__init__(transformers, filters, config, **kw) | ||