Metadata-Version: 2.1
Name: bobcatpy
Version: 2.1.1
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("192.168.1.100")
  
    status = await b.status_summary()
    print(status)
    await b.close_session()

asyncio.run(main())
```


