swarmauri_tool_matplotlib 0.7.0.dev11__tar.gz → 0.7.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: swarmauri_tool_matplotlib
3
- Version: 0.7.0.dev11
3
+ Version: 0.7.1
4
4
  Summary: Matplotlib tool for Swarmauri.
5
5
  License: Apache-2.0
6
6
  Author: Jacob Stewart
@@ -16,20 +16,25 @@ Requires-Dist: swarmauri_core
16
16
  Requires-Dist: swarmauri_standard
17
17
  Description-Content-Type: text/markdown
18
18
 
19
- ![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
20
19
 
21
- <div align="center">
20
+ ![Swamauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
22
21
 
23
- ![PyPI - Downloads](https://img.shields.io/pypi/dm/swarmauri_tool_matplotlib)
24
- ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/swarmauri_tool_matplotlib)
25
- ![PyPI - License](https://img.shields.io/pypi/l/swarmauri_tool_matplotlib)
26
- ![PyPI - Version](https://img.shields.io/pypi/v/swarmauri_tool_matplotlib?label=swarmauri_tool_matplotlib&color=green)
27
-
28
- </div>
22
+ <p align="center">
23
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
24
+ <img src="https://img.shields.io/pypi/dm/swarmauri_tool_matplotlib" alt="PyPI - Downloads"/></a>
25
+ <a href="https://github.com/swarmauri/swarmauri-sdk/blob/master/pkgs/standards/swarmauri_tool_matplotlib/README.md">
26
+ <img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/swarmauri/swarmauri-sdk/pkgs/standards/swarmauri_tool_matplotlib/README.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false" alt="GitHub Hits"/></a>
27
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
28
+ <img src="https://img.shields.io/pypi/pyversions/swarmauri_tool_matplotlib" alt="PyPI - Python Version"/></a>
29
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
30
+ <img src="https://img.shields.io/pypi/l/swarmauri_tool_matplotlib" alt="PyPI - License"/></a>
31
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
32
+ <img src="https://img.shields.io/pypi/v/swarmauri_tool_matplotlib?label=swarmauri_tool_matplotlib&color=green" alt="PyPI - swarmauri_tool_matplotlib"/></a>
33
+ </p>
29
34
 
30
35
  ---
31
36
 
32
- # Matplotlib Tool Package
37
+ # Swarmauri Tool Matplotlib
33
38
 
34
39
  A Swarmauri package that provides tools for generating plots using Matplotlib. Includes support for basic plots and CSV data visualization.
35
40
 
@@ -0,0 +1,69 @@
1
+
2
+ ![Swamauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
3
+
4
+ <p align="center">
5
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
6
+ <img src="https://img.shields.io/pypi/dm/swarmauri_tool_matplotlib" alt="PyPI - Downloads"/></a>
7
+ <a href="https://github.com/swarmauri/swarmauri-sdk/blob/master/pkgs/standards/swarmauri_tool_matplotlib/README.md">
8
+ <img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/swarmauri/swarmauri-sdk/pkgs/standards/swarmauri_tool_matplotlib/README.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false" alt="GitHub Hits"/></a>
9
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
10
+ <img src="https://img.shields.io/pypi/pyversions/swarmauri_tool_matplotlib" alt="PyPI - Python Version"/></a>
11
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
12
+ <img src="https://img.shields.io/pypi/l/swarmauri_tool_matplotlib" alt="PyPI - License"/></a>
13
+ <a href="https://pypi.org/project/swarmauri_tool_matplotlib/">
14
+ <img src="https://img.shields.io/pypi/v/swarmauri_tool_matplotlib?label=swarmauri_tool_matplotlib&color=green" alt="PyPI - swarmauri_tool_matplotlib"/></a>
15
+ </p>
16
+
17
+ ---
18
+
19
+ # Swarmauri Tool Matplotlib
20
+
21
+ A Swarmauri package that provides tools for generating plots using Matplotlib. Includes support for basic plots and CSV data visualization.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install swarmauri_tool_matplotlib
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ### Basic Plotting
32
+ ```python
33
+ from swarmauri.tools.MatplotlibTool import MatplotlibTool
34
+
35
+ # Create a tool instance
36
+ tool = MatplotlibTool()
37
+
38
+ # Generate a line plot
39
+ result = tool(
40
+ plot_type="line",
41
+ x_data=[1, 2, 3],
42
+ y_data=[4, 5, 6],
43
+ title="Line Plot",
44
+ x_label="X-axis",
45
+ y_label="Y-axis",
46
+ save_path="plot.png"
47
+ )
48
+ ```
49
+
50
+ ### CSV Data Plotting
51
+ ```python
52
+ from swarmauri_tool_matplotlib.MatplotlibCsvTool import MatplotlibCsvTool
53
+
54
+ # Create a CSV tool instance
55
+ csv_tool = MatplotlibCsvTool()
56
+
57
+ # Generate a plot from CSV data
58
+ result = csv_tool(
59
+ csv_file="data.csv",
60
+ x_column="x",
61
+ y_column="y",
62
+ output_file="csv_plot.png"
63
+ )
64
+ ```
65
+
66
+ ## Want to help?
67
+
68
+ If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.
69
+
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "swarmauri_tool_matplotlib"
3
- version = "0.7.0.dev11"
3
+ version = "0.7.1"
4
4
  description = "Matplotlib tool for Swarmauri."
5
5
  license = "Apache-2.0"
6
6
  readme = "README.md"
@@ -44,7 +44,7 @@ log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
44
44
  log_cli_date_format = "%Y-%m-%d %H:%M:%S"
45
45
  asyncio_default_fixture_loop_scope = "function"
46
46
 
47
- [tool.project.entry-points."swarmauri.tools"]
47
+ [project.entry-points.'swarmauri.tools']
48
48
  MatplotlibTool = "swarmauri_tool_matplotlib:MatplotlibTool"
49
49
  MatplotlibCsvTool = "swarmauri_tool_matplotlib:MatplotlibCsvTool"
50
50
 
@@ -1,64 +0,0 @@
1
- ![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
2
-
3
- <div align="center">
4
-
5
- ![PyPI - Downloads](https://img.shields.io/pypi/dm/swarmauri_tool_matplotlib)
6
- ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/swarmauri_tool_matplotlib)
7
- ![PyPI - License](https://img.shields.io/pypi/l/swarmauri_tool_matplotlib)
8
- ![PyPI - Version](https://img.shields.io/pypi/v/swarmauri_tool_matplotlib?label=swarmauri_tool_matplotlib&color=green)
9
-
10
- </div>
11
-
12
- ---
13
-
14
- # Matplotlib Tool Package
15
-
16
- A Swarmauri package that provides tools for generating plots using Matplotlib. Includes support for basic plots and CSV data visualization.
17
-
18
- ## Installation
19
-
20
- ```bash
21
- pip install swarmauri_tool_matplotlib
22
- ```
23
-
24
- ## Usage
25
-
26
- ### Basic Plotting
27
- ```python
28
- from swarmauri.tools.MatplotlibTool import MatplotlibTool
29
-
30
- # Create a tool instance
31
- tool = MatplotlibTool()
32
-
33
- # Generate a line plot
34
- result = tool(
35
- plot_type="line",
36
- x_data=[1, 2, 3],
37
- y_data=[4, 5, 6],
38
- title="Line Plot",
39
- x_label="X-axis",
40
- y_label="Y-axis",
41
- save_path="plot.png"
42
- )
43
- ```
44
-
45
- ### CSV Data Plotting
46
- ```python
47
- from swarmauri_tool_matplotlib.MatplotlibCsvTool import MatplotlibCsvTool
48
-
49
- # Create a CSV tool instance
50
- csv_tool = MatplotlibCsvTool()
51
-
52
- # Generate a plot from CSV data
53
- result = csv_tool(
54
- csv_file="data.csv",
55
- x_column="x",
56
- y_column="y",
57
- output_file="csv_plot.png"
58
- )
59
- ```
60
-
61
- ## Want to help?
62
-
63
- If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.
64
-