MatplotLibAPI 3.3.0__py3-none-any.whl → 4.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. MatplotLibAPI/__init__.py +4 -86
  2. MatplotLibAPI/accessor.py +288 -191
  3. MatplotLibAPI/area.py +235 -0
  4. MatplotLibAPI/bar.py +193 -0
  5. MatplotLibAPI/base_plot.py +88 -0
  6. MatplotLibAPI/box_violin.py +186 -0
  7. MatplotLibAPI/bubble.py +569 -0
  8. MatplotLibAPI/{Composite.py → composite.py} +70 -83
  9. MatplotLibAPI/heatmap.py +246 -0
  10. MatplotLibAPI/histogram.py +172 -0
  11. MatplotLibAPI/mcp/__init__.py +17 -0
  12. MatplotLibAPI/mcp/metadata.py +90 -0
  13. MatplotLibAPI/mcp/renderers.py +45 -0
  14. MatplotLibAPI/mcp_server.py +626 -0
  15. MatplotLibAPI/network/__init__.py +28 -0
  16. MatplotLibAPI/network/constants.py +22 -0
  17. MatplotLibAPI/{Network.py → network/core.py} +347 -809
  18. MatplotLibAPI/network/plot.py +597 -0
  19. MatplotLibAPI/network/scaling.py +56 -0
  20. MatplotLibAPI/pie.py +155 -0
  21. MatplotLibAPI/pivot.py +282 -0
  22. MatplotLibAPI/sankey.py +99 -0
  23. MatplotLibAPI/{StyleTemplate.py → style_template.py} +8 -4
  24. MatplotLibAPI/sunburst.py +139 -0
  25. MatplotLibAPI/{Table.py → table.py} +109 -93
  26. MatplotLibAPI/{Timeserie.py → timeserie.py} +99 -42
  27. MatplotLibAPI/{Treemap.py → treemap.py} +43 -55
  28. MatplotLibAPI/typing.py +12 -0
  29. MatplotLibAPI/{_visualization_utils.py → utils.py} +30 -13
  30. MatplotLibAPI/waffle.py +174 -0
  31. MatplotLibAPI/{Wordcloud.py → word_cloud.py} +188 -88
  32. {matplotlibapi-3.3.0.dist-info → matplotlibapi-4.0.1.dist-info}/METADATA +98 -9
  33. matplotlibapi-4.0.1.dist-info/RECORD +36 -0
  34. {matplotlibapi-3.3.0.dist-info → matplotlibapi-4.0.1.dist-info}/WHEEL +1 -1
  35. matplotlibapi-4.0.1.dist-info/entry_points.txt +2 -0
  36. MatplotLibAPI/Area.py +0 -80
  37. MatplotLibAPI/Bar.py +0 -83
  38. MatplotLibAPI/BoxViolin.py +0 -75
  39. MatplotLibAPI/Bubble.py +0 -460
  40. MatplotLibAPI/Heatmap.py +0 -121
  41. MatplotLibAPI/Histogram.py +0 -73
  42. MatplotLibAPI/Pie.py +0 -70
  43. MatplotLibAPI/Pivot.py +0 -134
  44. MatplotLibAPI/Sankey.py +0 -46
  45. MatplotLibAPI/Sunburst.py +0 -89
  46. MatplotLibAPI/Waffle.py +0 -86
  47. MatplotLibAPI/_typing.py +0 -17
  48. matplotlibapi-3.3.0.dist-info/RECORD +0 -26
  49. {matplotlibapi-3.3.0.dist-info → matplotlibapi-4.0.1.dist-info}/licenses/LICENSE +0 -0
MatplotLibAPI/__init__.py CHANGED
@@ -1,89 +1,7 @@
1
1
  """Public API and pandas accessor for MatplotLibAPI."""
2
2
 
3
- from .Area import aplot_area, fplot_area
4
- from .Bar import aplot_bar, fplot_bar
5
- from .BoxViolin import aplot_box_violin, fplot_box_violin
6
- from .Bubble import BUBBLE_STYLE_TEMPLATE, aplot_bubble, fplot_bubble
7
- from .Composite import (
8
- plot_composite_bubble,
9
- plot_composite_treemap,
10
- plot_wordcloud_network,
11
- )
12
- from .Heatmap import (
13
- HEATMAP_STYLE_TEMPLATE,
14
- aplot_correlation_matrix,
15
- aplot_heatmap,
16
- fplot_correlation_matrix,
17
- fplot_heatmap,
18
- )
19
- from .Histogram import aplot_histogram_kde, fplot_histogram_kde
20
- from .Network import (
21
- NETWORK_STYLE_TEMPLATE,
22
- aplot_network,
23
- aplot_network_node,
24
- aplot_network_components,
25
- fplot_network_node,
26
- fplot_network_components,
27
- fplot_network,
28
- )
29
- from .Pie import aplot_pie_donut, fplot_pie_donut
30
- from .Sankey import fplot_sankey
31
- from .StyleTemplate import (
32
- AREA_STYLE_TEMPLATE,
33
- DISTRIBUTION_STYLE_TEMPLATE,
34
- PIE_STYLE_TEMPLATE,
35
- SANKEY_STYLE_TEMPLATE,
36
- StyleTemplate,
37
- )
38
- from .Table import TABLE_STYLE_TEMPLATE, aplot_table, fplot_table
39
- from .Timeserie import TIMESERIE_STYLE_TEMPLATE, aplot_timeserie, fplot_timeserie
40
- from .Sunburst import fplot_sunburst
41
- from .Treemap import TREEMAP_STYLE_TEMPLATE, fplot_treemap
42
- from .Waffle import aplot_waffle, fplot_waffle
43
- from .Wordcloud import (
44
- WORDCLOUD_STYLE_TEMPLATE,
45
- aplot_wordcloud,
46
- fplot_wordcloud,
47
- )
48
- from .accessor import DataFrameAccessor
3
+ from . import accessor as _accessor # noqa: F401
4
+ from .base_plot import BasePlot
5
+ from .bubble import Bubble
49
6
 
50
- __all__ = [
51
- "DataFrameAccessor",
52
- "StyleTemplate",
53
- "aplot_bubble",
54
- "aplot_network",
55
- "aplot_network_node",
56
- "aplot_network_components",
57
- "aplot_table",
58
- "aplot_timeserie",
59
- "aplot_wordcloud",
60
- "aplot_bar",
61
- "aplot_histogram_kde",
62
- "aplot_box_violin",
63
- "aplot_heatmap",
64
- "aplot_correlation_matrix",
65
- "aplot_area",
66
- "aplot_pie_donut",
67
- "aplot_waffle",
68
- "fplot_bubble",
69
- "fplot_network",
70
- "fplot_network_node",
71
- "fplot_network_components",
72
- "fplot_table",
73
- "fplot_timeserie",
74
- "fplot_wordcloud",
75
- "fplot_treemap",
76
- "fplot_sunburst",
77
- "fplot_bar",
78
- "fplot_histogram_kde",
79
- "fplot_box_violin",
80
- "fplot_heatmap",
81
- "fplot_correlation_matrix",
82
- "fplot_area",
83
- "fplot_pie_donut",
84
- "fplot_waffle",
85
- "fplot_sankey",
86
- "plot_composite_bubble",
87
- "plot_composite_treemap",
88
- "plot_wordcloud_network",
89
- ]
7
+ __all__ = ["BasePlot", "Bubble"]