clearml/trains/utilities/plotlympl/__init__.py
allegroai da32cd8f90 PEP8
2020-11-29 23:30:25 +02:00

21 lines
430 B
Python

"""
matplotlylib
============
This module converts matplotlib figure objects into JSON structures which can
be understood and visualized by Plotly.
Most of the functionality should be accessed through the parent directory's
'tools' module or 'plotly' package.
"""
from __future__ import absolute_import
from .renderer import PlotlyRenderer
from .mplexporter import Exporter
__all__ = [
"PlotlyRenderer",
"Exporter"
]