Files
MLPproject/.venv/lib/python3.12/site-packages/nbconvert/exporters/qtpng.py
2025-10-23 15:44:32 +02:00

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"