Metadata-Version: 2.4
Name: mypyq
Version: 1.0.0
Summary: A small API wrapper for garage doors using the MyQ API.
Project-URL: Homepage, https://github.com/yodaluca23/mypythonq
Project-URL: Issues, https://github.com/yodaluca23/mypythonq/issues
Author-email: yodaluca23 <mypyq@yodaluca.dev>
License-Expression: MIT
License-File: LICENCE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: requests>=2.32.5
Description-Content-Type: text/markdown

# MyPythonQ

A functional (probably really bad) Python library for garage doors using myQ API.

## Installation

```bash
pip install mypythonq
```

## Usage

```python
import mypyq

# Create a MyPythonQ instance
api = mypyq.create(account_id="my_account_id", refresh_token="my_refresh_token")

# Use the API to control garage doors
doors = api.devices()
for door in doors:
    print(door.status())
    door.open()
```

## History

I created this library because I wanted to control my garage door using Python, and for my HomeAssistant integration; existing libraries stopped working becuase of the myQ API changes. This is a personal project and may not be suitable for production use.
