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

# Brivo Smarthome Python Client

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

## Installation

```sh
pip install brivo
```

## Example Usage

```python
import brivo

# Initialize the client
brivo = brivo.BrivoClient(username='your_user_name', password='your_password')

# Get users
users = brivo.users()
print(users)

# Create a new unit
new_unit = brivo.create_unit(...)
print(new_unit)
```

## Contributing

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

## License

This project is licensed under the MIT License.

