some new features
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ._data import Data
|
||||
from ._layout import Layout
|
||||
from . import data
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__, [".data"], ["._data.Data", "._layout.Layout"]
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Layout
|
||||
@ -0,0 +1,111 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ._bar import Bar
|
||||
from ._barpolar import Barpolar
|
||||
from ._box import Box
|
||||
from ._candlestick import Candlestick
|
||||
from ._carpet import Carpet
|
||||
from ._choropleth import Choropleth
|
||||
from ._choroplethmap import Choroplethmap
|
||||
from ._choroplethmapbox import Choroplethmapbox
|
||||
from ._cone import Cone
|
||||
from ._contour import Contour
|
||||
from ._contourcarpet import Contourcarpet
|
||||
from ._densitymap import Densitymap
|
||||
from ._densitymapbox import Densitymapbox
|
||||
from ._funnel import Funnel
|
||||
from ._funnelarea import Funnelarea
|
||||
from ._heatmap import Heatmap
|
||||
from ._histogram import Histogram
|
||||
from ._histogram2d import Histogram2d
|
||||
from ._histogram2dcontour import Histogram2dContour
|
||||
from ._icicle import Icicle
|
||||
from ._image import Image
|
||||
from ._indicator import Indicator
|
||||
from ._isosurface import Isosurface
|
||||
from ._mesh3d import Mesh3d
|
||||
from ._ohlc import Ohlc
|
||||
from ._parcats import Parcats
|
||||
from ._parcoords import Parcoords
|
||||
from ._pie import Pie
|
||||
from ._sankey import Sankey
|
||||
from ._scatter import Scatter
|
||||
from ._scatter3d import Scatter3d
|
||||
from ._scattercarpet import Scattercarpet
|
||||
from ._scattergeo import Scattergeo
|
||||
from ._scattergl import Scattergl
|
||||
from ._scattermap import Scattermap
|
||||
from ._scattermapbox import Scattermapbox
|
||||
from ._scatterpolar import Scatterpolar
|
||||
from ._scatterpolargl import Scatterpolargl
|
||||
from ._scattersmith import Scattersmith
|
||||
from ._scatterternary import Scatterternary
|
||||
from ._splom import Splom
|
||||
from ._streamtube import Streamtube
|
||||
from ._sunburst import Sunburst
|
||||
from ._surface import Surface
|
||||
from ._table import Table
|
||||
from ._treemap import Treemap
|
||||
from ._violin import Violin
|
||||
from ._volume import Volume
|
||||
from ._waterfall import Waterfall
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
[
|
||||
"._bar.Bar",
|
||||
"._barpolar.Barpolar",
|
||||
"._box.Box",
|
||||
"._candlestick.Candlestick",
|
||||
"._carpet.Carpet",
|
||||
"._choropleth.Choropleth",
|
||||
"._choroplethmap.Choroplethmap",
|
||||
"._choroplethmapbox.Choroplethmapbox",
|
||||
"._cone.Cone",
|
||||
"._contour.Contour",
|
||||
"._contourcarpet.Contourcarpet",
|
||||
"._densitymap.Densitymap",
|
||||
"._densitymapbox.Densitymapbox",
|
||||
"._funnel.Funnel",
|
||||
"._funnelarea.Funnelarea",
|
||||
"._heatmap.Heatmap",
|
||||
"._histogram.Histogram",
|
||||
"._histogram2d.Histogram2d",
|
||||
"._histogram2dcontour.Histogram2dContour",
|
||||
"._icicle.Icicle",
|
||||
"._image.Image",
|
||||
"._indicator.Indicator",
|
||||
"._isosurface.Isosurface",
|
||||
"._mesh3d.Mesh3d",
|
||||
"._ohlc.Ohlc",
|
||||
"._parcats.Parcats",
|
||||
"._parcoords.Parcoords",
|
||||
"._pie.Pie",
|
||||
"._sankey.Sankey",
|
||||
"._scatter.Scatter",
|
||||
"._scatter3d.Scatter3d",
|
||||
"._scattercarpet.Scattercarpet",
|
||||
"._scattergeo.Scattergeo",
|
||||
"._scattergl.Scattergl",
|
||||
"._scattermap.Scattermap",
|
||||
"._scattermapbox.Scattermapbox",
|
||||
"._scatterpolar.Scatterpolar",
|
||||
"._scatterpolargl.Scatterpolargl",
|
||||
"._scattersmith.Scattersmith",
|
||||
"._scatterternary.Scatterternary",
|
||||
"._splom.Splom",
|
||||
"._streamtube.Streamtube",
|
||||
"._sunburst.Sunburst",
|
||||
"._surface.Surface",
|
||||
"._table.Table",
|
||||
"._treemap.Treemap",
|
||||
"._violin.Violin",
|
||||
"._volume.Volume",
|
||||
"._waterfall.Waterfall",
|
||||
],
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Bar
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Barpolar
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Box
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Candlestick
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Carpet
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Choropleth
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Choroplethmap
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Choroplethmapbox
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Cone
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Contour
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Contourcarpet
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Densitymap
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Densitymapbox
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Funnel
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Funnelarea
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Heatmap
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Histogram
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Histogram2d
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Histogram2dContour
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Icicle
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Image
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Indicator
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Isosurface
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Mesh3d
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Ohlc
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Parcats
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Parcoords
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Pie
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Sankey
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scatter
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scatter3d
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattercarpet
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattergeo
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattergl
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattermap
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattermapbox
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scatterpolar
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scatterpolargl
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scattersmith
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Scatterternary
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Splom
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Streamtube
|
||||
@ -0,0 +1 @@
|
||||
from plotly.graph_objs import Sunburst
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user