aboutsummaryrefslogtreecommitdiff
path: root/trappy/nbexport/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'trappy/nbexport/__init__.py')
-rw-r--r--trappy/nbexport/__init__.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/trappy/nbexport/__init__.py b/trappy/nbexport/__init__.py
new file mode 100644
index 0000000..0293318
--- /dev/null
+++ b/trappy/nbexport/__init__.py
@@ -0,0 +1,29 @@
+# Copyright 2015-2016 ARM Limited
+# Copyright 2016 Google Inc. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+"""HTML Exporter for TRAPPY plotter data. This allows
+* Custom Preprocessing
+"""
+
+from nbconvert.exporters.html import HTMLExporter
+from trappy.nbexport.preprocessors import TrappyPlotterPreprocessor
+
+
+class HTML(HTMLExporter):
+ """HTML Exporter class for TRAPpy notebooks"""
+
+ def __init__(self, **kwargs):
+ super(HTML, self).__init__(**kwargs)
+ self.register_preprocessor(TrappyPlotterPreprocessor, enabled=True)