Skip to main content

Provides a python interface to interact with Roon

Project description

pyRoon Build status PyPi version PyPi downloads

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


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.6.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

roonapi-0.1.6-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file roonapi-0.1.6.tar.gz.

File metadata

  • Download URL: roonapi-0.1.6.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.7.17 Linux/6.2.0-1018-azure

File hashes

Hashes for roonapi-0.1.6.tar.gz
Algorithm Hash digest
SHA256 2980258dbf8d0a6a436cf2bc51759a4c4af8b120b6280ba2b42ce9a197a592a4
MD5 e871de55877414ade601c184399eb7bd
BLAKE2b-256 93d297cf824aeb208f9d084544ef489cff08b66cd5714e303490e43121f2a6fc

See more details on using hashes here.

File details

Details for the file roonapi-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: roonapi-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.7.17 Linux/6.2.0-1018-azure

File hashes

Hashes for roonapi-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 811197037679ca834883a761e5e89e82fe0e6ae890d0009a4a6f0adf3eaf18e1
MD5 235a1f71823071d7eb4b7505b0d3c2aa
BLAKE2b-256 1745328ff43f50b6ee77be71540a93707134997cad6ae43d40ef73fad1962ace

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page