Metadata-Version: 2.1
Name: pvradar
Version: 0.0.2
Summary: constants and shared function for PVRADAR SDK and API client
Author-email: Kostiantyn Pogorelov <kp@pvradar.com>
Project-URL: homepage, https://pvradar.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: httpx

This package contains constants and shared function for PVRADAR SDK and API client

# Installation

```sh
pip install pvradar
```

# Usage

```python
import pvradar
modeled_soiling = pvradar.sdk.get_soiling_ratio({
    'location': { 'lat': 37.63, 'lon': -2.95 },
    'period': { 'year': 2022 }})

modeled_soiling.plot()
```
