Metadata-Version: 2.1
Name: plottica
Version: 0.0.1
Summary: A lightweight plotting library for visualizing real-time data from ESP32 over Wi-Fi.
Home-page: https://ilorobot.com
Author: intuition RT (SLB)
Author-email: <contact@ilorobot.com>
Keywords: python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: websocket-client
Requires-Dist: prettytable

# Plottica

Plottica is a simple and lightweight Python library for quickly plotting data.  
It is specifically designed to work with ESP32 devices over Wi-Fi. You can easily visualize data streams from your ESP32 without complex configuration.

## 🔧 Installation

```bash
pip install plottica
```

## 🚀 Usage

```python
from plottica import draw_data

draw_data(lambda: my_ilo._distance_front, label="Distance (mm)")
```

## 📦 Features

- Fast rendering of simple plots  
- Light customization  
- Simple to use  
- Optimized for ESP32 communication over Wi-Fi  

## 💡 Ideal for :

- Educational projects  
- Real-time data debugging with ESP32  
- Quick scripts for IoT and robotics  
