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.1.4.tar.gz
(19.7 kB
view details)
Built Distribution
roonapi-0.1.4-py3-none-any.whl
(20.9 kB
view details)
File details
Details for the file roonapi-0.1.4.tar.gz
.
File metadata
- Download URL: roonapi-0.1.4.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.7.15 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15a901ef68a231bd6f7103ec4d89c6a7edc4c32154e39f8ba97fca0372bbdf37 |
|
MD5 | 80ef18af415e8e91e0c0cb2734b0dbdd |
|
BLAKE2b-256 | 4334da6d008000ee9b028b17724d0be43a800974810a63bb4a2099c4ae1e9080 |
File details
Details for the file roonapi-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: roonapi-0.1.4-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.7.15 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efbb99401e7865b125165d571de67f99b09d0ec032760752d7e6f7a0b663026b |
|
MD5 | fa732dc797857f8de3d735539ab30bb5 |
|
BLAKE2b-256 | a17596fe745922dbecbc29383eab03cdecdba6febb5ca932207801a511bc03ba |