An asyncio based Python library to interact with the Bobcat Helium miner diagnostics API.
bobcatpy
provides an alternative way to interact with the Bobcat diagnoser interface.
bobcatpy
is available through PyPi.
pip install bobcatpy
from bobcatpy import Bobcat
import asyncio
async def main():
b = Bobcat("192.168.1.100")
status = await b.status_summary()
print(status)
await b.close_session()
asyncio.run(main())