Provides a python interface to interact with Roon
Project description
python-roon
python library to interface with the Roon API (www.roonlabs.com)
Full documentation will follow asap See the tests folder for some more code examples.
Some example code:
from roonapi import RoonApi
appinfo = {
"extension_id": "python_roon_test",
"display_name": "Python library for Roon",
"display_version": "1.0.0",
"publisher": "marcelveldt",
"email": "mygreat@emailaddress.com"
}
# host can be None if you want to use discovery - but this sometimes returns the local machine, not the real roon server
host = "192.168.1.x"
# Can be None if you don't yet have a token
token = open('mytokenfile').read()
roonapi = RoonApi(appinfo, token)
# get all zones (as dict)
print(roonapi.zones)
# get all outputs (as dict)
print(roonapi.outputs)
# receive state updates in your callback
roonapi.register_state_callback(my_state_callback)
# 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.24.tar.gz
(18.1 kB
view details)
Built Distribution
roonapi-0.0.24-py3-none-any.whl
(19.2 kB
view details)
File details
Details for the file roonapi-0.0.24.tar.gz
.
File metadata
- Download URL: roonapi-0.0.24.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04c9ccb01c7ccba8348582e51444f254164633d03c06812e61a50c10ef2bc161 |
|
MD5 | d6183f28c5025b3cea01d81198139bd9 |
|
BLAKE2b-256 | dace56f01d0f987059ab9d885e4cf738b1f6434e5312af7573338806fa0eb125 |
File details
Details for the file roonapi-0.0.24-py3-none-any.whl
.
File metadata
- Download URL: roonapi-0.0.24-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c30acd2ba18f534985d50a017a18bc74f4cf04379da7619ab2fd8646f5c69232 |
|
MD5 | a7ca42373b9d6ba9715037fdf65fd61f |
|
BLAKE2b-256 | 2181b5afe099dbedb65fb063b5f0fed50edd9005c36bd614eacc1de27fa79503 |