Metadata-Version: 2.4
Name: pyedautils
Version: 0.0.12
Summary: Python Energy Data Analysis Utilities
Author: Reto Marek
Project-URL: Homepage, https://github.com/retomarek/pyedautils/
Project-URL: Issues, https://github.com/retomarek/pyedautils/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# pyedautils
**Python Energy Data Analysis Utilities**

[![CI - Test](https://github.com/retomarek/pyedautils/actions/workflows/python-unittest.yml/badge.svg)](https://github.com/retomarek/pyedautils/actions/workflows/python-unittest.yml) [![Coverage](https://codecov.io/github/retomarek/pyedautils/coverage.svg?branch=main)](https://codecov.io/gh/retomarek/pyedautils)
[![PyPI Latest Release](https://img.shields.io/pypi/v/pyedautils.svg)](https://pypi.org/project/pyedautils) [![PyPI Downloads](https://img.shields.io/pypi/dd/pyedautils.svg?label=PyPI%20downloads)](https://pypi.org/project/pyedautils/)

A pip-installable library of compact utility functions for analyzing and visualizing energy and comfort time-series data.

## Features

- **Plotting** — Plotly-based daily profile visualizations with confidence bands and decomposed weekly patterns
- **Data I/O** — Save/load DataFrames in CSV, pickle, compressed pickle, and JSON formats
- **Geocoding** — Address geocoding, WGS84/LV95 conversion, altitude lookup, Swiss postal codes, Haversine distance
- **Season detection** — Astronomical or meteorological season classification for any date
- **MeteoSwiss** — Find nearest weather station by sensor type and altitude

## Installation

```bash
pip install pyedautils
```

## Quick start

```python
from pyedautils.plots import plot_daily_profiles_overview
from pyedautils.data_io import load_data

df = load_data("my_data.csv")
fig = plot_daily_profiles_overview(df)
fig.show()
```

## Documentation

Full API reference, examples with interactive plots, and usage guides:

**[retomarek.github.io/pyedautils](https://retomarek.github.io/pyedautils/)**

## License

**Disclaimer** — The author declines any liability or responsibility in connection with the published code and documentation.
