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.1.tar.gz
(18.4 kB
view details)
Built Distribution
roonapi-0.1.1-py3-none-any.whl
(19.6 kB
view details)
File details
Details for the file roonapi-0.1.1.tar.gz
.
File metadata
- Download URL: roonapi-0.1.1.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abac7341ef88de6e33aed370d130683fb3d100be99aa2f1dbc535955ef81ae71 |
|
MD5 | 6fa878974470b7cedaaccdb9166d49f3 |
|
BLAKE2b-256 | 9fe2a2e27de80355b4daab479430a674eb425729bee6228522ce0e2b343e85ba |
File details
Details for the file roonapi-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: roonapi-0.1.1-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db5181796d4e9fe16379c2b6304d75dc2afbab78e3e421b2b761a69b74eb6dbf |
|
MD5 | 67e03e70d36da2aa1e1e966706b7e3cf |
|
BLAKE2b-256 | 3ebf343891a4228369ae7b3c2b5788a848f49c4bbf6b471d99abe163e5514154 |