Provides a python interface to interact with Roon
Project description
pyRoon
python library to interface with the Roon API (www.roonlabs.com)
See https://github.com/pavoni/pyroon/tree/master/examples for code examples.
An example of connecting to the roon server and using a subscription:
import time
from roonapi import RoonApi
appinfo = {
"extension_id": "python_roon_test",
"display_name": "Python library for Roon",
"display_version": "1.0.0",
"publisher": "gregd",
"email": "mygreat@emailaddress.com",
}
# Can be None if you don't yet have a token
token = open("mytokenfile").read()
# Take a look at examples/discovery if you want to use discovery.
server = "192.168.1.160"
roonapi = RoonApi(appinfo, token, server)
def my_state_callback(event, changed_ids):
"""Call when something changes in roon."""
print("my_state_callback event:%s changed_ids: %s" % (event, changed_ids))
for zone_id in changed_ids:
zone = roonapi.zones[zone_id]
print("zone_id:%s zone_info: %s" % (zone_id, zone))
# receive state updates in your callback
roonapi.register_state_callback(my_state_callback)
time.sleep(60)
# save the token for next time
with open("mytokenfile", "w") as f:
f.write(roonapi.token)```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
roonapi-0.0.36.tar.gz
(18.0 kB
view details)
Built Distribution
roonapi-0.0.36-py3-none-any.whl
(19.3 kB
view details)
File details
Details for the file roonapi-0.0.36.tar.gz
.
File metadata
- Download URL: roonapi-0.0.36.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.7.10 Linux/5.4.0-1046-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37ee72885deacb7e8bec6c59b46f44fb8e8981e52888a8344412c3e0d89461ac |
|
MD5 | 386636ae46d7cfc9c628efd971b3ef0f |
|
BLAKE2b-256 | a1de874006ebcfe6f3a29f563280f9aa7860055db503b5e1e05bce947d04bd67 |
File details
Details for the file roonapi-0.0.36-py3-none-any.whl
.
File metadata
- Download URL: roonapi-0.0.36-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.7.10 Linux/5.4.0-1046-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 493cc77e614cdd1f084f4c7c7264d484fa1f16135b9f8754d944ab28475440a5 |
|
MD5 | e1a5f35d2c8aa2b647e598615642b1da |
|
BLAKE2b-256 | 577dd57aa2ec6ccc849777c6390b5a6eabe17ca9fdd448a9fb40523d30c9724d |