Metadata-Version: 2.3
Name: swarmauri_tool_folium
Version: 0.6.0
Summary: This repository includes an example of a First Class Swarmauri Example.
License: Apache-2.0
Author: Jacob Stewart
Author-email: jacob@swarmauri.com
Requires-Python: >=3.10,<3.13
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: folium (>=0.18.0,<0.19.0)
Requires-Dist: swarmauri_base (>=0.6.0,<0.7.0)
Requires-Dist: swarmauri_core (>=0.6.0,<0.7.0)
Requires-Dist: swarmauri_standard (>=0.6.0,<0.7.0)
Project-URL: Repository, http://github.com/swarmauri/swarmauri-sdk
Description-Content-Type: text/markdown

![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)

<div align="center">

![PyPI - Downloads](https://img.shields.io/pypi/dm/swarmauri_tool_folium)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/swarmauri_tool_folium)
![PyPI - License](https://img.shields.io/pypi/l/swarmauri_tool_folium)
![PyPI - Version](https://img.shields.io/pypi/v/swarmauri_tool_folium?label=swarmauri_tool_folium&color=green)

</div>

---

# Swarmauri Tool Folium

A tool to generate maps with markers using Folium.

## Installation

```bash
pip install swarmauri_tool_folium
```

## Usage
Basic usage examples with code snippets
```python
from swarmauri.tools.FoliumTool import FoliumTool

tool = FoliumTool()
map_center = (40.7128, -74.0060)
markers = [(40.7128, -74.0060, "Marker 1"), (40.7328, -74.0010, "Marker 2")]

result = tool(map_center, markers)
print(result['image_b64'])  # Prints the base64 string of the map image
```
## Want to help?

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.

