1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# pyrympro
A python library to communitcate with [Read Your Meter Pro](https://rym-pro.com/).
## Installation
You can install pyvolumio from [PyPI](https://pypi.org/project/pyvolumio/):
pip3 install pyrympro
Python 3.7 and above are supported.
## How to use
```python
from pyrympro import RymPro
rym = RymPro()
# you can also pass in your own session
rym = RymPro(session)
# device_id can be anything you choose
await rym.login("<email>", "<password>", "<device_id>")
info = await rym.account_info()
meter_reads = await rym.last_read()
...
```
|