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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotext_plus
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.11
|
|
4
4
|
Summary: Modern terminal plotting library with enhanced visual features, themes, and AI integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/ccmitchellusa/plotext_plus
|
|
6
6
|
Project-URL: Repository, https://github.com/ccmitchellusa/plotext_plus.git
|
|
@@ -23,6 +23,7 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
24
|
Classifier: Topic :: Terminals
|
|
25
25
|
Requires-Python: >=3.11
|
|
26
|
+
Requires-Dist: chuk-mcp-server>=0.3.5
|
|
26
27
|
Requires-Dist: chuk-term>=0.1.0
|
|
27
28
|
Requires-Dist: shtab>=1.7.2
|
|
28
29
|
Provides-Extra: completion
|
|
@@ -30,7 +31,7 @@ Requires-Dist: shtab; extra == 'completion'
|
|
|
30
31
|
Provides-Extra: image
|
|
31
32
|
Requires-Dist: pillow>=8.4; extra == 'image'
|
|
32
33
|
Provides-Extra: mcp
|
|
33
|
-
Requires-Dist: chuk-mcp-server>=0.
|
|
34
|
+
Requires-Dist: chuk-mcp-server>=0.3.5; extra == 'mcp'
|
|
34
35
|
Provides-Extra: video
|
|
35
36
|
Requires-Dist: ffpyplayer>=4.3.5; extra == 'video'
|
|
36
37
|
Requires-Dist: opencv-python>=4.5.5; extra == 'video'
|
|
@@ -52,15 +53,15 @@ Description-Content-Type: text/markdown
|
|
|
52
53
|
|
|
53
54
|
## ✨ Key Features
|
|
54
55
|
|
|
55
|
-
🎯 **Multiple Plot Types**: [scatter](docs/basic.md#scatter-plot), [line](docs/basic.md#line-plot), [bar](docs/bar.md), [histogram](docs/bar.md#histogram-plot), [candlestick](docs/datetime.md#candlestick-plot), [heatmap](docs/special.md), [confusion matrix](docs/special.md#confusion-matrix), [pie](docs/basic.md#pie-plot), [doughnut](docs/basic.md#doughnut-charts) and more
|
|
56
|
+
🎯 **Multiple Plot Types**: [scatter](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md#scatter-plot), [line](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md#line-plot), [bar](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/bar.md), [histogram](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/bar.md#histogram-plot), [candlestick](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/datetime.md#candlestick-plot), [heatmap](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/special.md), [confusion matrix](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/special.md#confusion-matrix), [pie](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md#pie-plot), [doughnut](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md#doughnut-charts) and more
|
|
56
57
|
|
|
57
|
-
🎨 **Rich Visuals**: [Banner mode](docs/chart_classes.md), [themes](docs/themes.md), [colored text](docs/utilities.md#colored-text), automatic terminal width detection
|
|
58
|
+
🎨 **Rich Visuals**: [Banner mode](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/chart_classes.md), [themes](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/themes.md), [colored text](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/utilities.md#colored-text), automatic terminal width detection
|
|
58
59
|
|
|
59
|
-
📊 **Advanced Features**: [Subplots](docs/subplots.md), [datetime plots](docs/datetime.md), [image/GIF display](docs/image.md), [video streaming](docs/video.md) (including YouTube)
|
|
60
|
+
📊 **Advanced Features**: [Subplots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/subplots.md), [datetime plots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/datetime.md), [image/GIF display](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/image.md), [video streaming](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/video.md) (including YouTube)
|
|
60
61
|
|
|
61
62
|
🔧 **Modern APIs**: Clean public API, object-oriented charts, quick functions, 100% backward compatible
|
|
62
63
|
|
|
63
|
-
🤖 **AI Integration**: [MCP server](docs/mcp-server.md) for direct AI client access (Claude, etc.)
|
|
64
|
+
🤖 **AI Integration**: [MCP server](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/mcp-server.md) for direct AI client access (Claude, etc.)
|
|
64
65
|
|
|
65
66
|
⚡ **Zero Dependencies**: No required dependencies (optional packages for multimedia and AI integration)
|
|
66
67
|
|
|
@@ -248,40 +249,40 @@ python examples/theme_showcase_demo.py # Theme comparison
|
|
|
248
249
|
|
|
249
250
|
### 🎯 **Core Plotting**
|
|
250
251
|
|
|
251
|
-
- **[📊 Basic Plots](docs/basic.md)** - Scatter, line, and fundamental plotting
|
|
252
|
-
- **[📈 Bar Charts](docs/bar.md)** - Bar plots, histograms, and variations
|
|
253
|
-
- **[📅 DateTime Plots](docs/datetime.md)** - Time series and candlestick charts
|
|
254
|
-
- **[🔬 Special Plots](docs/special.md)** - Heatmaps, confusion matrices, error bars
|
|
255
|
-
- **[🎨 Decorator Plots](docs/decorator.md)** - Text, lines, and shape overlays
|
|
252
|
+
- **[📊 Basic Plots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md)** - Scatter, line, and fundamental plotting
|
|
253
|
+
- **[📈 Bar Charts](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/bar.md)** - Bar plots, histograms, and variations
|
|
254
|
+
- **[📅 DateTime Plots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/datetime.md)** - Time series and candlestick charts
|
|
255
|
+
- **[🔬 Special Plots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/special.md)** - Heatmaps, confusion matrices, error bars
|
|
256
|
+
- **[🎨 Decorator Plots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/decorator.md)** - Text, lines, and shape overlays
|
|
256
257
|
|
|
257
258
|
### 🖼️ **Multimedia & Advanced**
|
|
258
259
|
|
|
259
|
-
- **[🖼️ Image Plotting](docs/image.md)** - Display images and GIFs in terminal
|
|
260
|
-
- **[🎬 Video Streaming](docs/video.md)** - Play videos and YouTube content
|
|
261
|
-
- **[📐 Subplots](docs/subplots.md)** - Multiple plots and complex layouts
|
|
260
|
+
- **[🖼️ Image Plotting](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/image.md)** - Display images and GIFs in terminal
|
|
261
|
+
- **[🎬 Video Streaming](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/video.md)** - Play videos and YouTube content
|
|
262
|
+
- **[📐 Subplots](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/subplots.md)** - Multiple plots and complex layouts
|
|
262
263
|
|
|
263
264
|
### ⚙️ **Configuration & Styling**
|
|
264
265
|
|
|
265
|
-
- **[🎨 Themes](docs/themes.md)** - Built-in themes and customization
|
|
266
|
-
- **[⚙️ Settings](docs/settings.md)** - Plot configuration and options
|
|
267
|
-
- **[📏 Aspect](docs/aspect.md)** - Size, scaling, and layout control
|
|
268
|
-
- **[🔧 Chart Classes](docs/chart_classes.md)** - Object-oriented API reference
|
|
266
|
+
- **[🎨 Themes](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/themes.md)** - Built-in themes and customization
|
|
267
|
+
- **[⚙️ Settings](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/settings.md)** - Plot configuration and options
|
|
268
|
+
- **[📏 Aspect](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/aspect.md)** - Size, scaling, and layout control
|
|
269
|
+
- **[🔧 Chart Classes](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/chart_classes.md)** - Object-oriented API reference
|
|
269
270
|
|
|
270
271
|
### 🛠️ **Tools & Integration**
|
|
271
272
|
|
|
272
|
-
- **[🔧 Utilities](docs/utilities.md)** - Helper functions and command-line tools
|
|
273
|
-
- **[🤖 MCP Server](docs/mcp-server.md)** - AI integration via Model Context Protocol
|
|
274
|
-
- **[🌐 Environments](docs/environments.md)** - IDE and platform compatibility
|
|
275
|
-
- **[🏗️ API Structure](docs/api.md)** - Clean public API organization
|
|
276
|
-
- **[📝 Notes](docs/notes.md)** - Installation, tips, and troubleshooting
|
|
273
|
+
- **[🔧 Utilities](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/utilities.md)** - Helper functions and command-line tools
|
|
274
|
+
- **[🤖 MCP Server](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/mcp-server.md)** - AI integration via Model Context Protocol
|
|
275
|
+
- **[🌐 Environments](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/environments.md)** - IDE and platform compatibility
|
|
276
|
+
- **[🏗️ API Structure](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/api.md)** - Clean public API organization
|
|
277
|
+
- **[📝 Notes](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/notes.md)** - Installation, tips, and troubleshooting
|
|
277
278
|
|
|
278
279
|
### 🚀 **Getting Started Guides**
|
|
279
280
|
|
|
280
|
-
1. **[👋 Introduction](docs/basic.md#introduction)** - First steps with Plotext
|
|
281
|
-
2. **[📦 Installation](docs/notes.md#install)** - Setup and dependencies
|
|
281
|
+
1. **[👋 Introduction](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/basic.md#introduction)** - First steps with Plotext
|
|
282
|
+
2. **[📦 Installation](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/notes.md#install)** - Setup and dependencies
|
|
282
283
|
3. **[🎯 Quick Examples](#-quick-start)** - Jump right in with code samples
|
|
283
|
-
4. **[🎨 Theming Guide](docs/themes.md)** - Make your plots beautiful
|
|
284
|
-
5. **[🔧 Modern API Guide](docs/api.md)** - Use the clean public interface
|
|
284
|
+
4. **[🎨 Theming Guide](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/themes.md)** - Make your plots beautiful
|
|
285
|
+
5. **[🔧 Modern API Guide](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/api.md)** - Use the clean public interface
|
|
285
286
|
|
|
286
287
|
## 💡 Migration & Compatibility
|
|
287
288
|
|
|
@@ -301,3 +302,7 @@ plt.theme('professional')
|
|
|
301
302
|
plt.plot([1,2,3], [1,4,2])
|
|
302
303
|
plt.show()
|
|
303
304
|
```
|
|
305
|
+
|
|
306
|
+
## 🛠️ Development & Build System
|
|
307
|
+
|
|
308
|
+
Plotext+ includes a comprehensive build system with modern tooling. See **[Build Documentation](https://github.com/ccmitchellusa/plotext_plus/blob/master/docs/build.md)** for complete setup, testing, publishing, and deployment instructions.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
plotext_plus/__init__.py,sha256=3CmBuKyz8BYO9JIWeYfq9T_eLCPMAGI1sV2zUszlozs,1082
|
|
2
|
+
plotext_plus/__main__.py,sha256=vmYJDjjpw-FjilHOJlaCKYEng-CBqfEpKOBuWbqa6D0,38
|
|
3
|
+
plotext_plus/_api.py,sha256=dNBT3Je2Xh1ymW1vhMV3fuSqXeor2ejwyyjWxZJRTtg,36283
|
|
4
|
+
plotext_plus/_build.py,sha256=vGsfYfsuI5-9ZQJjyF2a9H0dHEoLcgpvfa2FRNh4ZjQ,30413
|
|
5
|
+
plotext_plus/_core.py,sha256=dDmqlk7-YUXL5D-xuAB6wN0LovSJC2yHAIvDNy9qa5E,23535
|
|
6
|
+
plotext_plus/_date.py,sha256=20bJuv_FOec5_-_PjFxPQGLTNuxQSVAPW8GhEu5Tydg,3025
|
|
7
|
+
plotext_plus/_default.py,sha256=aodojft_t8VLbSAHCBYgzE4EtZr0E_H-v9KXvHEUirk,3366
|
|
8
|
+
plotext_plus/_dict.py,sha256=Wzr8h11a1ASKb7RAi4_VwjSz2KMerAd7y0jXlNK60fQ,27199
|
|
9
|
+
plotext_plus/_doc.py,sha256=DFCgDQfRAFDnn8A6aJNUhprf_PloCV4jEBF1gvEPlc4,39243
|
|
10
|
+
plotext_plus/_doc_utils.py,sha256=HFCE_6l8e-Y_2DfcW5DB033d2EKxnX5IKJmDBEK6kSY,10979
|
|
11
|
+
plotext_plus/_figure.py,sha256=gMGIaoHb8GOFkwEMYUycd8ma4sO9KTO6mHeXESPy1k0,45688
|
|
12
|
+
plotext_plus/_global.py,sha256=wjZSoT6EPMrjcATwmc4oBF5A4kmif5XWVhve-vAl0UE,15855
|
|
13
|
+
plotext_plus/_matrix.py,sha256=c7N-uOFfmhfWdZyBFD-rPUzOFT9tfL52jrfQnO1kWFI,10239
|
|
14
|
+
plotext_plus/_monitor.py,sha256=nndSLe_y_Nk7T_UX-1jSab4DoU77F-vWsndAvAmNKQs,69165
|
|
15
|
+
plotext_plus/_output.py,sha256=vUa6IS00ZC9k2x0HYCV27i03i4WoEG6s6FxjcohFrjA,4182
|
|
16
|
+
plotext_plus/_shtab.py,sha256=p1QZscXWqwQwHicnBqHLxkN2IqHkzC7FMdwLXs-ln8Q,283
|
|
17
|
+
plotext_plus/_themes.py,sha256=ENXwQvGuPrjoKVGN8thBXshy25DR64JYZ15rI_HQh2U,15723
|
|
18
|
+
plotext_plus/_utility.py,sha256=GXjMuAwxEStnZqdzieVUtv6N01XdYxEBI9cvWn3Sdzc,35237
|
|
19
|
+
plotext_plus/api.py,sha256=Q-aO_vzHKLohENjs6PYn-1l3DyzT47Mx_tuJTR6cT5k,28993
|
|
20
|
+
plotext_plus/charts.py,sha256=MhpvnLoXe5bZWhrgaSBuvfE66CQj5fYZooyfoO8Ri9k,1670
|
|
21
|
+
plotext_plus/core.py,sha256=OGPlp9zi59Lyf6zJBMROv6kvZU-GGxpRG0Z3HEvKJKs,20995
|
|
22
|
+
plotext_plus/mcp_cli.py,sha256=aHKOVxttGtZQFoYd0FeYFM8B-iqJYFuhVHgtxqxKYR8,2847
|
|
23
|
+
plotext_plus/mcp_server.py,sha256=Tu2wQK_G0-MS6VSX9bCrpMEzmtvOrmPdD7UTflYCJUc,50235
|
|
24
|
+
plotext_plus/plotext_cli.py,sha256=wMF4_RG0Nen6cI5tSpVLKvaDqDu8kkhn3jts28gjvfU,15570
|
|
25
|
+
plotext_plus/plotting.py,sha256=9nvfepoS_PcnnENPoowHd6qGr6bKBSGuBvy7XrzsHkQ,2627
|
|
26
|
+
plotext_plus/themes.py,sha256=Pl6gD3vFPdsYrb4CCLjbN-rIQsf8cgNXeYTyB9Qd7I0,744
|
|
27
|
+
plotext_plus/utilities.py,sha256=3B3cQ-9zqISI0eRNrcOc18_DFlUNv88oxqdl39tx-HQ,1338
|
|
28
|
+
plotext_plus/utils.py,sha256=jlCF4TuxDqVeT5KoWt4dyvqqk-_p1znUHn4d2HXLiec,15942
|
|
29
|
+
plotext_plus-1.0.11.dist-info/METADATA,sha256=1mbfRlsXBy8IGXDGnNY6KOLMiEgOZMJ0rB5M1TlyYi8,13879
|
|
30
|
+
plotext_plus-1.0.11.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
31
|
+
plotext_plus-1.0.11.dist-info/entry_points.txt,sha256=XocAh2z8hTGtuQL1zEcGTulrgfZ2g5UMyHSV-JOSNN8,103
|
|
32
|
+
plotext_plus-1.0.11.dist-info/licenses/LICENSE,sha256=MkgUiRFwIvXwUVDEPy11uIULq7pGDHpIulD4KulsjnM,1150
|
|
33
|
+
plotext_plus-1.0.11.dist-info/RECORD,,
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
plotext_plus/__init__.py,sha256=ZqQT3ybOtVRB4rY406K_RzBZ3CJ1Z3z2FZU0J_Wwc04,855
|
|
2
|
-
plotext_plus/__main__.py,sha256=UkpSWVzOAfWBm3O1jyN1QO6KILQWhaSw4DcIdohJlbI,37
|
|
3
|
-
plotext_plus/_api.py,sha256=EwP0LePRoqvid0IyqhYZzCKTTknAbspa4R2WeVGhxk8,31026
|
|
4
|
-
plotext_plus/_build.py,sha256=sW7Fm2hYEkRDFapbk_B7sp7u9addBOzFH9MSULn54U8,20936
|
|
5
|
-
plotext_plus/_core.py,sha256=sP3WIzXFO4ltdNX-QXm00Duc4GXe71b8gI02kb1DrkM,22025
|
|
6
|
-
plotext_plus/_date.py,sha256=kTjx-_df5M0yvUTJlg1LqGyDRLxOL2or0op6Si0CUU0,2879
|
|
7
|
-
plotext_plus/_default.py,sha256=bbPO60SFziIpPOI8jY6xtP3urri0H2vhYzwasfmybz4,3316
|
|
8
|
-
plotext_plus/_dict.py,sha256=I9Wb2YZauMaHjv-1p4oyQ4kRncvhjJGXzwHefeVirMI,21832
|
|
9
|
-
plotext_plus/_doc.py,sha256=qJ--cy1sssH_1EDDkrcOtLeAHahmdqSaYyhOrj4gk54,37183
|
|
10
|
-
plotext_plus/_doc_utils.py,sha256=vVwtDnAJ7vVUafL9zulkILXupGNK3v3Z9aeddX1F828,10397
|
|
11
|
-
plotext_plus/_figure.py,sha256=xLkCqi5nu8NHY9Lv9Zo2jcg-5BP07ggkJ35rs8peSiY,31924
|
|
12
|
-
plotext_plus/_global.py,sha256=NFEupN17WY2Xk4EgDY-On_1J3MOvwNBYubnt6Rg8QW4,15387
|
|
13
|
-
plotext_plus/_matrix.py,sha256=e4sHwghNZeclBORUgWc5BZxdfqoH0yDeh49XymPNHlY,8298
|
|
14
|
-
plotext_plus/_monitor.py,sha256=TH-WC2qQj-GRMxtrcvHdgXi67VPsY4_xSGr9kJWJMtI,62946
|
|
15
|
-
plotext_plus/_output.py,sha256=9hBPOum2R6FA1EgIyIMgkMsL7DjtSpX3En8zXGbdx-c,4315
|
|
16
|
-
plotext_plus/_shtab.py,sha256=l1bDdxUbbg5urjNjyC5agbdiYu-OLbruRJZ_AuyirbQ,281
|
|
17
|
-
plotext_plus/_themes.py,sha256=2KQFpAxBvksV_iE8QCMs3lbjq5Tv2TsK_OQLiRg5Gmg,14177
|
|
18
|
-
plotext_plus/_utility.py,sha256=kp5FvE5kooOw0fcVfK_k4o0Fr9ClyFIXMYh4BiXOMlc,32918
|
|
19
|
-
plotext_plus/api.py,sha256=56xYn9uzkMe88iELbanRQ-12bC8Rvv2Jk0BX45Fk8zY,28424
|
|
20
|
-
plotext_plus/charts.py,sha256=VfL0keEo02TPwjUZ6eNFx2q2qOTpiVoq_igL5rGE-gY,1315
|
|
21
|
-
plotext_plus/core.py,sha256=k6g2dYuHFcNevLJM0elkYupz7fC8Qqk_vLEyrXu2V3I,20668
|
|
22
|
-
plotext_plus/mcp_cli.py,sha256=otZaP1tolvAL2vx84TVNiTlFdJyDx1cMIMcbhqsSna8,2651
|
|
23
|
-
plotext_plus/mcp_server.py,sha256=cL-6CL3nQ53LbC3ZReC77_zxFrRVA8UgqQEqNRakaXI,37130
|
|
24
|
-
plotext_plus/plotext_cli.py,sha256=o3JmSNc7Ify4C6Wkva8x8QRh-pLeiD3VArc3E78xlVU,17677
|
|
25
|
-
plotext_plus/plotting.py,sha256=7YUISs2Aolqo-lMEX8amGfMNOSFV9zcSqlrEMwVK2RM,2063
|
|
26
|
-
plotext_plus/themes.py,sha256=xX6XqL2U-7MQmv-k1HU-UTSZRbTfv9op5_4ZRXm435g,725
|
|
27
|
-
plotext_plus/utilities.py,sha256=scdPDGf6po2rvEL5DX7y1pY41uxlCXTVVIo0w5qA8JE,1170
|
|
28
|
-
plotext_plus/utils.py,sha256=NFEupN17WY2Xk4EgDY-On_1J3MOvwNBYubnt6Rg8QW4,15387
|
|
29
|
-
plotext_plus-1.0.9.dist-info/METADATA,sha256=mMcu8ukY6WNT9L86-ROTSG9-PVhxTi2ENtP2owMLtmE,11355
|
|
30
|
-
plotext_plus-1.0.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
31
|
-
plotext_plus-1.0.9.dist-info/entry_points.txt,sha256=XocAh2z8hTGtuQL1zEcGTulrgfZ2g5UMyHSV-JOSNN8,103
|
|
32
|
-
plotext_plus-1.0.9.dist-info/licenses/LICENSE,sha256=MkgUiRFwIvXwUVDEPy11uIULq7pGDHpIulD4KulsjnM,1150
|
|
33
|
-
plotext_plus-1.0.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|