Metadata-Version: 2.4
Name: aiocentriconnect
Version: 0.2.0
Summary: Asynchronous Python client for CentriConnect/MyPropane API
Author-email: Greg Haines <gresrun@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/gresrun/aiocentriconnect
Project-URL: Repository, https://github.com/gresrun/aiocentriconnect.git
Project-URL: Issues, https://github.com/gresrun/aiocentriconnect/issues
Project-URL: Download, https://github.com/gresrun/aiocentriconnect/releases/latest
Keywords: centriconnect,mypropane,propane,api
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Home Automation
Classifier: Typing :: Typed
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# aiocentriconnect

![Continuous Integration](https://github.com/gresrun/aiocentriconnect/workflows/Continuous%20Integration/badge.svg)

Asynchronous Python client for the [CentriConnect/MyPropane](https://centriconnect.com/) API.

## Installation

`pip install aiocentriconnect`

## Usage

```python
import asyncio

from aiocentriconnect import CentriConnect

async def main():
    user_id = input("User ID: ")
    device_id = input("Device ID: ")
    device_auth = input("Device auth code: ")

    async with CentriConnect(user_id, device_id, device_auth) as centriconnect:
        tank_data = await centriconnect.async_get_tank_data()
        print(f"'{tank_data.device_name}' is {tank_data.tank_level}% full")

asyncio.run(main())
```

## License

MIT License

Copyright (c) 2026 Greg Haines

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
