plotext-plus 1.0.9__py3-none-any.whl → 1.0.11__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.
- plotext_plus/__init__.py +20 -15
- plotext_plus/__main__.py +1 -0
- plotext_plus/_api.py +632 -371
- plotext_plus/_build.py +765 -149
- plotext_plus/_core.py +609 -164
- plotext_plus/_date.py +50 -32
- plotext_plus/_default.py +35 -28
- plotext_plus/_dict.py +807 -103
- plotext_plus/_doc.py +867 -296
- plotext_plus/_doc_utils.py +279 -245
- plotext_plus/_figure.py +1295 -303
- plotext_plus/_global.py +238 -140
- plotext_plus/_matrix.py +217 -63
- plotext_plus/_monitor.py +1036 -489
- plotext_plus/_output.py +29 -23
- plotext_plus/_shtab.py +2 -0
- plotext_plus/_themes.py +363 -247
- plotext_plus/_utility.py +581 -313
- plotext_plus/api.py +418 -332
- plotext_plus/charts.py +47 -24
- plotext_plus/core.py +570 -177
- plotext_plus/mcp_cli.py +15 -13
- plotext_plus/mcp_server.py +813 -332
- plotext_plus/plotext_cli.py +414 -275
- plotext_plus/plotting.py +86 -70
- plotext_plus/themes.py +10 -13
- plotext_plus/utilities.py +33 -33
- plotext_plus/utils.py +240 -140
- {plotext_plus-1.0.9.dist-info → plotext_plus-1.0.11.dist-info}/METADATA +32 -27
- plotext_plus-1.0.11.dist-info/RECORD +33 -0
- {plotext_plus-1.0.9.dist-info → plotext_plus-1.0.11.dist-info}/WHEEL +1 -1
- plotext_plus-1.0.9.dist-info/RECORD +0 -33
- {plotext_plus-1.0.9.dist-info → plotext_plus-1.0.11.dist-info}/entry_points.txt +0 -0
- {plotext_plus-1.0.9.dist-info → plotext_plus-1.0.11.dist-info}/licenses/LICENSE +0 -0
plotext_plus/__init__.py
CHANGED
|
@@ -1,31 +1,36 @@
|
|
|
1
1
|
"""\nplotext plots directly on terminal"""
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
__name__ = "plotext"
|
|
4
4
|
__version__ = "5.3.2"
|
|
5
5
|
|
|
6
6
|
# Clean Public API - Organized by functionality
|
|
7
7
|
# ===========================================
|
|
8
8
|
|
|
9
|
+
# Legacy imports for backward compatibility
|
|
9
10
|
# Main plotting functions (most commonly used)
|
|
10
|
-
from .
|
|
11
|
+
from ._api import BarChart as BarChart
|
|
12
|
+
from ._api import CandlestickChart as CandlestickChart
|
|
13
|
+
from ._api import Chart as Chart
|
|
14
|
+
from ._api import HeatmapChart as HeatmapChart
|
|
15
|
+
from ._api import HistogramChart as HistogramChart
|
|
16
|
+
from ._api import Legend as Legend
|
|
17
|
+
from ._api import LineChart as LineChart
|
|
18
|
+
from ._api import MatrixChart as MatrixChart
|
|
19
|
+
from ._api import PlotextAPI as PlotextAPI
|
|
20
|
+
from ._api import ScatterChart as ScatterChart
|
|
21
|
+
from ._api import StemChart as StemChart
|
|
22
|
+
from ._api import api as api
|
|
23
|
+
from ._api import create_chart as create_chart
|
|
24
|
+
|
|
25
|
+
# Backward compatibility - Import original API
|
|
26
|
+
from ._core import *
|
|
11
27
|
|
|
12
|
-
# Modern chart classes (object-oriented interface)
|
|
28
|
+
# Modern chart classes (object-oriented interface)
|
|
13
29
|
from .charts import *
|
|
30
|
+
from .plotting import *
|
|
14
31
|
|
|
15
32
|
# Theme system
|
|
16
33
|
from .themes import *
|
|
17
34
|
|
|
18
35
|
# Utilities and helpers
|
|
19
36
|
from .utilities import *
|
|
20
|
-
|
|
21
|
-
# Backward compatibility - Import original API
|
|
22
|
-
from ._core import *
|
|
23
|
-
|
|
24
|
-
# Legacy imports for backward compatibility
|
|
25
|
-
from ._api import (
|
|
26
|
-
Chart, Legend, PlotextAPI, api,
|
|
27
|
-
ScatterChart, LineChart, BarChart, HistogramChart,
|
|
28
|
-
CandlestickChart, HeatmapChart, MatrixChart, StemChart,
|
|
29
|
-
create_chart, quick_scatter, quick_line, quick_bar, quick_pie, quick_donut,
|
|
30
|
-
enable_banners, log_info, log_success, log_warning, log_error
|
|
31
|
-
)
|
plotext_plus/__main__.py
CHANGED