Metadata-Version: 2.1
Name: bobcatpy
Version: 2.0.0
Summary: Control and monitor your Bobcat miner
Home-page: https://github.com/ardevd/bobcatpy
Author: ardevd
Author-email: 5gk633atf@relay.firefox.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Description-Content-Type: text/markdown
License-File: LICENSE

# bobcatpy

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.


## Installation

`bobcatpy` is available through PyPi.

```
pip install bobcatpy
```

## Usage

```python
from bobcatpy import Bobcat
import asyncio

async def main():
    b = Bobcat("10.10.21.70")
    temps = await b.temps()
    print(temps)
    await b.close_session()

asyncio.run(main())
```

## Legacy Synchronous version
To use Bobcatpy in a synchronous fashion please use a version prior to v2.0.0


