MatplotLibAPI 3.2.21__py3-none-any.whl → 4.0.0__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 (51) hide show
  1. MatplotLibAPI/__init__.py +4 -86
  2. MatplotLibAPI/accessor.py +519 -196
  3. MatplotLibAPI/area.py +177 -0
  4. MatplotLibAPI/bar.py +185 -0
  5. MatplotLibAPI/base_plot.py +88 -0
  6. MatplotLibAPI/box_violin.py +180 -0
  7. MatplotLibAPI/bubble.py +568 -0
  8. MatplotLibAPI/{Composite.py → composite.py} +127 -106
  9. MatplotLibAPI/heatmap.py +223 -0
  10. MatplotLibAPI/histogram.py +170 -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/core.py +1360 -0
  18. MatplotLibAPI/network/plot.py +597 -0
  19. MatplotLibAPI/network/scaling.py +56 -0
  20. MatplotLibAPI/pie.py +154 -0
  21. MatplotLibAPI/pivot.py +274 -0
  22. MatplotLibAPI/sankey.py +99 -0
  23. MatplotLibAPI/{StyleTemplate.py → style_template.py} +27 -22
  24. MatplotLibAPI/sunburst.py +139 -0
  25. MatplotLibAPI/{Table.py → table.py} +112 -87
  26. MatplotLibAPI/{Timeserie.py → timeserie.py} +98 -42
  27. MatplotLibAPI/{Treemap.py → treemap.py} +43 -55
  28. MatplotLibAPI/typing.py +12 -0
  29. MatplotLibAPI/{_visualization_utils.py → utils.py} +7 -13
  30. MatplotLibAPI/waffle.py +173 -0
  31. MatplotLibAPI/word_cloud.py +489 -0
  32. {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.dist-info}/METADATA +98 -9
  33. matplotlibapi-4.0.0.dist-info/RECORD +36 -0
  34. {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.dist-info}/WHEEL +1 -1
  35. matplotlibapi-4.0.0.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 -458
  40. MatplotLibAPI/Heatmap.py +0 -121
  41. MatplotLibAPI/Histogram.py +0 -73
  42. MatplotLibAPI/Network.py +0 -989
  43. MatplotLibAPI/Pie.py +0 -70
  44. MatplotLibAPI/Pivot.py +0 -134
  45. MatplotLibAPI/Sankey.py +0 -46
  46. MatplotLibAPI/Sunburst.py +0 -89
  47. MatplotLibAPI/Waffle.py +0 -86
  48. MatplotLibAPI/Wordcloud.py +0 -373
  49. MatplotLibAPI/_typing.py +0 -17
  50. matplotlibapi-3.2.21.dist-info/RECORD +0 -26
  51. {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.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_components,
24
- fplot_network_components,
25
- fplot_network,
26
- prepare_network_graph,
27
- )
28
- from .Pie import aplot_pie_donut, fplot_pie_donut
29
- from .Sankey import fplot_sankey
30
- from .StyleTemplate import (
31
- AREA_STYLE_TEMPLATE,
32
- DISTRIBUTION_STYLE_TEMPLATE,
33
- PIE_STYLE_TEMPLATE,
34
- SANKEY_STYLE_TEMPLATE,
35
- StyleTemplate,
36
- )
37
- from .Table import TABLE_STYLE_TEMPLATE, aplot_table, fplot_table
38
- from .Timeserie import TIMESERIE_STYLE_TEMPLATE, aplot_timeserie, fplot_timeserie
39
- from .Sunburst import fplot_sunburst
40
- from .Treemap import TREEMAP_STYLE_TEMPLATE, fplot_treemap
41
- from .Waffle import aplot_waffle, fplot_waffle
42
- from .Wordcloud import (
43
- WORDCLOUD_STYLE_TEMPLATE,
44
- aplot_wordcloud,
45
- create_circular_mask,
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_components",
56
- "aplot_table",
57
- "aplot_timeserie",
58
- "aplot_wordcloud",
59
- "aplot_bar",
60
- "aplot_histogram_kde",
61
- "aplot_box_violin",
62
- "aplot_heatmap",
63
- "aplot_correlation_matrix",
64
- "aplot_area",
65
- "aplot_pie_donut",
66
- "create_circular_mask",
67
- "aplot_waffle",
68
- "fplot_bubble",
69
- "fplot_network",
70
- "fplot_network_components",
71
- "fplot_table",
72
- "fplot_timeserie",
73
- "fplot_wordcloud",
74
- "fplot_treemap",
75
- "fplot_sunburst",
76
- "fplot_bar",
77
- "fplot_histogram_kde",
78
- "fplot_box_violin",
79
- "fplot_heatmap",
80
- "fplot_correlation_matrix",
81
- "fplot_area",
82
- "fplot_pie_donut",
83
- "fplot_waffle",
84
- "fplot_sankey",
85
- "plot_composite_bubble",
86
- "plot_composite_treemap",
87
- "plot_wordcloud_network",
88
- "prepare_network_graph",
89
- ]
7
+ __all__ = ["BasePlot", "Bubble"]