Metadata-Version: 2.4
Name: breezeway
Version: 0.1.0a1
Summary: Library for interacting with Breezeway's API.
License: MIT
License-File: LICENSE.txt
Author: Anthony DeGarimore
Author-email: anthony@pasoroblesconcierge.com
Maintainer: Anthony DeGarimore
Maintainer-email: anthony@pasoroblesconcierge.com
Requires-Python: >=3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: dev
Requires-Dist: httpx (>=0.28.1)
Requires-Dist: pydantic (>=2.12.5)
Requires-Dist: pytest ; extra == "dev"
Project-URL: Bug Tracker, https://github.com/Paso-Robles-Vacation-Rentals/breezeway-python/issues
Project-URL: Repository, https://github.com/Paso-Robles-Vacation-Rentals/breezeway-python
Description-Content-Type: text/markdown

# Breezeway Python Client

A Python client library for communicating with Breezeway.io, providing an easy interface for managing authentication and
interacting with Breezeway's API.

## Installation

```sh
pip install breezeway
```

## Example Usage

```python
import breezeway

# Initialize the client
bw = breezeway.BreezewayClient(client_id='your_client_id', client_secret='your_client_secret')

# Get tasks
tasks = bw.get_tasks()
print(tasks)

# Create a new task
new_task = bw.create_task(property_id=12345, title='Inspect HVAC system')
print(new_task)
```

## Contributing

Contributions are welcome! Feel free to submit a pull request or open an issue.

## License

This project is licensed under the MIT License.


