poolcop 0.0.1

Creator: railscoderz

Last updated:

0 purchases

poolcop 0.0.1 Image
poolcop 0.0.1 Images
Add to Cart

Description:

poolcop 0.0.1

Asynchronous Python client for the PoolCopilot API.
About
A python package to interact with a PoolCop device.
Installation
pip install poolcop

Usage
import asyncio
import json
from poolcop import PoolCopilot

API_KEY="xxxxxxxxxxxxxxxxxxxxxxx"

async def main() -> None:
"""Show example on fetching the status from PoolCop."""
async with PoolCopilot(api_key=API_KEY) as client:
status = await client.status()
print(json.dumps(status, indent=2))

if __name__ == "__main__":
asyncio.run(main())

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.