1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# -*- coding: utf-8 -*-
# pylint: disable=C0413
# C0413: Import should be placed at the top of the module
"""
A simple plotting library for the wxPython Phoenix project.
"""
__version__ = "0.0.1"
__updated__ = "2016-07-05"
__docformat__ = "restructuredtext en"
# For those who still use ``from package import *`` for some reason
__all__ = [
'PolyLine',
'PolySpline',
'PolyMarker',
'PolyBars',
'PolyHistogram',
'BoxPlot',
'PolyBoxPlot',
'PlotGraphics',
'PlotCanvas',
'PlotPrintout',
]
# Expose items so that the old API can still be used.
# Old: import wx.lib.plot as wxplot
# New: from wx.lib import plot as wxplot
from .plotcanvas import PlotCanvas
from .polyobjects import PolyPoints
from .polyobjects import PolyLine
from .polyobjects import PolySpline
from .polyobjects import PolyMarker
from .polyobjects import PolyBars
from .polyobjects import PolyHistogram
from .polyobjects import PolyBoxPlot
from .polyobjects import PlotGraphics
from .polyobjects import PlotPrintout
from .utils import TempStyle
from .utils import pendingDeprecation
from .utils import PlotPendingDeprecation
# For backwards compat.
BoxPlot = PolyBoxPlot
|