Metadata-Version: 2.1
Name: pyvrt
Version: 1.7.1
Summary: Python library to interact with VRT public APIs
Home-page: https://github.com/thibmaek/pyvrt
Author: thibmaek
Author-email: thibault.maekelbergh@icloud.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# pyvrt

🐍 Python library to interact with VRT public APIs (weather, traffic…)

## Usage

```python
import pyvrt.traffic as traffic
import pyvrt.weather as weather

weather.summary()
weather.forecast(region='BE', zone='kust')

traffic.traffic_jam(km=True)
```

## Development

```shell
$ make install
$ make build
```

To debug, create an index.py file with some code and run through Python runtime:

```py
# pyvrt/media/index.py
from . import stubru

print(stubru.current())
```

```shell
$ python -m pyvrt.media.index
```


