You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
479 B
Python
18 lines
479 B
Python
"""Export to PNG via a headless browser"""
|
|
|
|
# Copyright (c) IPython Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
from .qt_exporter import QtExporter
|
|
|
|
|
|
class QtPNGExporter(QtExporter):
|
|
"""Writer designed to write to PNG files.
|
|
|
|
This inherits from :class:`HTMLExporter`. It creates the HTML using the
|
|
template machinery, and then uses pyqtwebengine to create a png.
|
|
"""
|
|
|
|
export_from_notebook = "PNG via HTML"
|
|
format = "png"
|