Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 556 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 556 Bytes

pyrympro

A python library to communitcate with Read Your Meter Pro.

Installation

You can install pyvolumio from PyPI:

pip3 install pyrympro

Python 3.7 and above are supported.

How to use

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()
...