plotext-plus 1.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.
- plotext_plus/__init__.py +31 -0
- plotext_plus/__main__.py +2 -0
- plotext_plus/_api.py +828 -0
- plotext_plus/_build.py +270 -0
- plotext_plus/_core.py +581 -0
- plotext_plus/_date.py +60 -0
- plotext_plus/_default.py +83 -0
- plotext_plus/_dict.py +210 -0
- plotext_plus/_doc.py +707 -0
- plotext_plus/_doc_utils.py +291 -0
- plotext_plus/_figure.py +488 -0
- plotext_plus/_global.py +370 -0
- plotext_plus/_matrix.py +171 -0
- plotext_plus/_monitor.py +848 -0
- plotext_plus/_output.py +136 -0
- plotext_plus/_shtab.py +9 -0
- plotext_plus/_themes.py +343 -0
- plotext_plus/_utility.py +853 -0
- plotext_plus/api.py +828 -0
- plotext_plus/charts.py +42 -0
- plotext_plus/core.py +581 -0
- plotext_plus/mcp_cli.py +79 -0
- plotext_plus/mcp_server.py +505 -0
- plotext_plus/plotext_cli.py +375 -0
- plotext_plus/plotting.py +92 -0
- plotext_plus/themes.py +29 -0
- plotext_plus/utilities.py +52 -0
- plotext_plus/utils.py +370 -0
- plotext_plus-1.0.1.dist-info/METADATA +303 -0
- plotext_plus-1.0.1.dist-info/RECORD +33 -0
- plotext_plus-1.0.1.dist-info/WHEEL +4 -0
- plotext_plus-1.0.1.dist-info/entry_points.txt +3 -0
- plotext_plus-1.0.1.dist-info/licenses/LICENSE +23 -0
plotext_plus/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""\nplotext plots directly on terminal"""
|
|
2
|
+
|
|
3
|
+
__name__ = "plotext"
|
|
4
|
+
__version__ = "5.3.2"
|
|
5
|
+
|
|
6
|
+
# Clean Public API - Organized by functionality
|
|
7
|
+
# ===========================================
|
|
8
|
+
|
|
9
|
+
# Main plotting functions (most commonly used)
|
|
10
|
+
from .plotting import *
|
|
11
|
+
|
|
12
|
+
# Modern chart classes (object-oriented interface)
|
|
13
|
+
from .charts import *
|
|
14
|
+
|
|
15
|
+
# Theme system
|
|
16
|
+
from .themes import *
|
|
17
|
+
|
|
18
|
+
# Utilities and helpers
|
|
19
|
+
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,
|
|
30
|
+
enable_banners, log_info, log_success, log_warning, log_error
|
|
31
|
+
)
|
plotext_plus/__main__.py
ADDED