Metadata-Version: 2.1 Name: pyrympro Version: 0.0.9 Summary: A python library to communitcate with Read Your Meter Pro (https://rym-pro.com/). Home-page: https://github.com/OnFreund/pyrympro Author: On Freund Author-email: onfreund@gmail.com License: MIT Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Requires-Python: >=3.10.0 Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: aiohttp # 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("", "", "") info = await rym.account_info() meter_reads = await rym.last_read() ... ```