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.
@@ -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
+ )
@@ -0,0 +1,2 @@
1
+ from .plotext_cli import main
2
+ main()