plotext-plus 1.0.10__py3-none-any.whl → 1.0.12__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/_core.py CHANGED
@@ -999,6 +999,8 @@ add(polygon)
999
999
  add(confusion_matrix)
1000
1000
  add(indicator)
1001
1001
 
1002
+ add(pie)
1003
+ add(heatmap)
1002
1004
  add(matrix_plot)
1003
1005
  add(image_plot)
1004
1006
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plotext_plus
3
- Version: 1.0.10
3
+ Version: 1.0.12
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,7 +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
+ Requires-Dist: chuk-mcp-server>=0.16.5
27
27
  Requires-Dist: chuk-term>=0.1.0
28
28
  Requires-Dist: shtab>=1.7.2
29
29
  Provides-Extra: completion
@@ -31,7 +31,7 @@ Requires-Dist: shtab; extra == 'completion'
31
31
  Provides-Extra: image
32
32
  Requires-Dist: pillow>=8.4; extra == 'image'
33
33
  Provides-Extra: mcp
34
- Requires-Dist: chuk-mcp-server>=0.3.5; extra == 'mcp'
34
+ Requires-Dist: chuk-mcp-server>=0.16.5; extra == 'mcp'
35
35
  Provides-Extra: video
36
36
  Requires-Dist: ffpyplayer>=4.3.5; extra == 'video'
37
37
  Requires-Dist: opencv-python>=4.5.5; extra == 'video'
@@ -53,15 +53,15 @@ Description-Content-Type: text/markdown
53
53
 
54
54
  ## ✨ Key Features
55
55
 
56
- 🎯 **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
57
57
 
58
- 🎨 **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
59
59
 
60
- 📊 **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)
61
61
 
62
62
  🔧 **Modern APIs**: Clean public API, object-oriented charts, quick functions, 100% backward compatible
63
63
 
64
- 🤖 **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.)
65
65
 
66
66
  ⚡ **Zero Dependencies**: No required dependencies (optional packages for multimedia and AI integration)
67
67
 
@@ -249,40 +249,40 @@ python examples/theme_showcase_demo.py # Theme comparison
249
249
 
250
250
  ### 🎯 **Core Plotting**
251
251
 
252
- - **[📊 Basic Plots](docs/basic.md)** - Scatter, line, and fundamental plotting
253
- - **[📈 Bar Charts](docs/bar.md)** - Bar plots, histograms, and variations
254
- - **[📅 DateTime Plots](docs/datetime.md)** - Time series and candlestick charts
255
- - **[🔬 Special Plots](docs/special.md)** - Heatmaps, confusion matrices, error bars
256
- - **[🎨 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
257
257
 
258
258
  ### 🖼️ **Multimedia & Advanced**
259
259
 
260
- - **[🖼️ Image Plotting](docs/image.md)** - Display images and GIFs in terminal
261
- - **[🎬 Video Streaming](docs/video.md)** - Play videos and YouTube content
262
- - **[📐 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
263
263
 
264
264
  ### ⚙️ **Configuration & Styling**
265
265
 
266
- - **[🎨 Themes](docs/themes.md)** - Built-in themes and customization
267
- - **[⚙️ Settings](docs/settings.md)** - Plot configuration and options
268
- - **[📏 Aspect](docs/aspect.md)** - Size, scaling, and layout control
269
- - **[🔧 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
270
270
 
271
271
  ### 🛠️ **Tools & Integration**
272
272
 
273
- - **[🔧 Utilities](docs/utilities.md)** - Helper functions and command-line tools
274
- - **[🤖 MCP Server](docs/mcp-server.md)** - AI integration via Model Context Protocol
275
- - **[🌐 Environments](docs/environments.md)** - IDE and platform compatibility
276
- - **[🏗️ API Structure](docs/api.md)** - Clean public API organization
277
- - **[📝 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
278
278
 
279
279
  ### 🚀 **Getting Started Guides**
280
280
 
281
- 1. **[👋 Introduction](docs/basic.md#introduction)** - First steps with Plotext
282
- 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
283
283
  3. **[🎯 Quick Examples](#-quick-start)** - Jump right in with code samples
284
- 4. **[🎨 Theming Guide](docs/themes.md)** - Make your plots beautiful
285
- 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
286
286
 
287
287
  ## 💡 Migration & Compatibility
288
288
 
@@ -305,4 +305,4 @@ plt.show()
305
305
 
306
306
  ## 🛠️ Development & Build System
307
307
 
308
- Plotext+ includes a comprehensive build system with modern tooling. See **[Build Documentation](docs/build.md)** for complete setup, testing, publishing, and deployment instructions.
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.
@@ -2,7 +2,7 @@ plotext_plus/__init__.py,sha256=3CmBuKyz8BYO9JIWeYfq9T_eLCPMAGI1sV2zUszlozs,1082
2
2
  plotext_plus/__main__.py,sha256=vmYJDjjpw-FjilHOJlaCKYEng-CBqfEpKOBuWbqa6D0,38
3
3
  plotext_plus/_api.py,sha256=dNBT3Je2Xh1ymW1vhMV3fuSqXeor2ejwyyjWxZJRTtg,36283
4
4
  plotext_plus/_build.py,sha256=vGsfYfsuI5-9ZQJjyF2a9H0dHEoLcgpvfa2FRNh4ZjQ,30413
5
- plotext_plus/_core.py,sha256=dDmqlk7-YUXL5D-xuAB6wN0LovSJC2yHAIvDNy9qa5E,23535
5
+ plotext_plus/_core.py,sha256=yUe4fZc2uclSCqrgRDoeCwW-INZ-JHY_lm2aXfA5jOM,23557
6
6
  plotext_plus/_date.py,sha256=20bJuv_FOec5_-_PjFxPQGLTNuxQSVAPW8GhEu5Tydg,3025
7
7
  plotext_plus/_default.py,sha256=aodojft_t8VLbSAHCBYgzE4EtZr0E_H-v9KXvHEUirk,3366
8
8
  plotext_plus/_dict.py,sha256=Wzr8h11a1ASKb7RAi4_VwjSz2KMerAd7y0jXlNK60fQ,27199
@@ -26,8 +26,8 @@ plotext_plus/plotting.py,sha256=9nvfepoS_PcnnENPoowHd6qGr6bKBSGuBvy7XrzsHkQ,2627
26
26
  plotext_plus/themes.py,sha256=Pl6gD3vFPdsYrb4CCLjbN-rIQsf8cgNXeYTyB9Qd7I0,744
27
27
  plotext_plus/utilities.py,sha256=3B3cQ-9zqISI0eRNrcOc18_DFlUNv88oxqdl39tx-HQ,1338
28
28
  plotext_plus/utils.py,sha256=jlCF4TuxDqVeT5KoWt4dyvqqk-_p1znUHn4d2HXLiec,15942
29
- plotext_plus-1.0.10.dist-info/METADATA,sha256=ypcoVk4y9-bk2CyiYBYZQlUpPZqwfKTOjmikf5EISWA,11617
30
- plotext_plus-1.0.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
31
- plotext_plus-1.0.10.dist-info/entry_points.txt,sha256=XocAh2z8hTGtuQL1zEcGTulrgfZ2g5UMyHSV-JOSNN8,103
32
- plotext_plus-1.0.10.dist-info/licenses/LICENSE,sha256=MkgUiRFwIvXwUVDEPy11uIULq7pGDHpIulD4KulsjnM,1150
33
- plotext_plus-1.0.10.dist-info/RECORD,,
29
+ plotext_plus-1.0.12.dist-info/METADATA,sha256=R34Q6xYlqIiJWLdW7It_lSDqB5XuSt85viWueemNpcY,13881
30
+ plotext_plus-1.0.12.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
31
+ plotext_plus-1.0.12.dist-info/entry_points.txt,sha256=XocAh2z8hTGtuQL1zEcGTulrgfZ2g5UMyHSV-JOSNN8,103
32
+ plotext_plus-1.0.12.dist-info/licenses/LICENSE,sha256=MkgUiRFwIvXwUVDEPy11uIULq7pGDHpIulD4KulsjnM,1150
33
+ plotext_plus-1.0.12.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any