Skip to main content

SoCo (Sonos Controller) is a simple library to control Sonos speakers.

Project description

SoCo (Sonos Controller) is a Python library that allows you to control Sonos speakers programmatically. It was originally created at Music Hack Day Sydney by Rahim Sonawalla and is now developed by a team of people at its GitHub repository

For more background on the project, please see Rahim’s blog post.

Visit the SoCo documentation for a more detailed overview of the functionailty.

Join the chat at https://gitter.im/SoCo/SoCo Build Status Requirements Status Latest PyPI version

WARNING

Sonos has changed the way music service account information is available. This means that currently a group of music service will give authentication issues and cannot be used at all. Known members of this group are: Google Play Music, Apple Music, Amazon Music, Spotify and Napster.

Issue #557 is a meta issue for this problem and you can use that to track progress on solving the issues, but please refrain from posting “me too” comments in there. Also, there is no need to open any more separate issue about this.

If you have another music service that should be on the list, comment in #557

Installation

SoCo requires Python 3.5 or newer.

Use pip:

pip install soco

SoCo depends on a number of Python packages. If you use pip to install Soco, the dependencies will be installed automatically for you. If not, you can inspect the requirements in the requirements.txt file.

Basic Usage

You can interact with a Sonos Zone Player through a SoCo object. If you know the IP address of a Zone Player, you can create a SoCo object directly:

>>> from soco import SoCo
>>> my_zone = SoCo('192.168.1.101')
>>> my_zone.player_name
Kitchen
>>> my_zone.status_light = True
>>> my_zone.volume = 6

But perhaps the easiest way is to use the module-level discover function. This will find all the Zone Players on your network, and return a python set containing them:

>>> import soco
>>> for zone in soco.discover():
...        print zone.player_name
Living Room
Kitchen

If you prefer a list to a set:

>>> zone_list = list(soco.discover())
>>> zone_list
[SoCo("192.168.1.101"), SoCo("192.168.1.102")]
>>> zone_list[0].mute = True

Of course, you can also play music!

#!/usr/bin/env python
from soco import SoCo

if __name__ == '__main__':
    sonos = SoCo('192.168.1.102') # Pass in the IP of your Sonos speaker
    # You could use the discover function instead, if you don't know the IP

    # Pass in a URI to a media file to have it streamed through the Sonos
    # speaker
    sonos.play_uri(
        'http://ia801402.us.archive.org/20/items/TenD2005-07-16.flac16/TenD2005-07-16t10Wonderboy.mp3')

    track = sonos.get_current_track_info()

    print track['title']

    sonos.pause()

    # Play a stopped or paused track
    sonos.play()

Support

If you need support for SoCo, feel free to post your question in the SoCo Gitter Room.

Example Applications

To show off what can be made with SoCo, a simple web application is included in the examples folder.

Screenshot of web app

Screenshot of web app

Features

SoCo supports the following controls amongst others:

  • Play, Pause, Stop

  • Next track, Previous track

  • Volume get and set

  • Mute (or unmute)

  • Get current transport information (if speaker is playing, paused or stopped)

  • Get information about the currently playing track

    • Track title

    • Artist

    • Album

    • Album Art (if available)

    • Track length

    • Duration played (for example, 30 seconds into a 3 minute song)

    • Playlist position (for example, item 5 in the playlist)

    • Track URI

  • Receive events when the player state changes

  • Search for and play music items:

    • Local music library

    • Webradio via TuneIn and music services (still unstable)

    • Saved Sonos favorites, favorite radio stations and shows

  • Switch the speaker’s source to line-in or TV input (if the Zone Player supports it)

  • Manage the Sonos queue:

    • Get the items in the queue

    • Add items to the queue

    • Clear the queue

    • Play a specific song from the queue

  • Join or unjoin speakers from a group

  • Put all Sonos speakers in a network into “party mode”.

  • Get or set alarms

  • Get or set sleep timers

  • Enable or disable surround speakers or subwoofer

  • Get information regarding a home theater setup:

    • If surround speakers or a subwoofer are paired

    • Which audio channel a given speaker handles

  • Get or set the speaker’s bass and treble EQ

  • Toggle the speaker’s loudness compensation, night mode and dialog mode

  • Toggle the white status light on the unit

  • Get the speaker’s information

    • Zone Name

    • Zone Icon

    • UID (usually something like RINCON_XXXXXXXXXXXXXXXXX)

    • Serial Number

    • Software version

    • Hardware version

    • MAC Address

  • Set the speaker’s Zone Name

  • Start a music library update and determine if one is in progress

SoCo also supports lower level access from Python to all Sonos services (e.g. ContentDirectory or RenderingControl).

SoCo Gitter Room

There is a SoCo Gitter discussion room. Feel free to drop by for support, ideas or casual conversation related to SoCo.

License

SoCo is released under the MIT license.

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

soco-0.25.1.tar.gz (719.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

soco-0.25.1-py2.py3-none-any.whl (152.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file soco-0.25.1.tar.gz.

File metadata

  • Download URL: soco-0.25.1.tar.gz
  • Upload date:
  • Size: 719.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for soco-0.25.1.tar.gz
Algorithm Hash digest
SHA256 a62049e5da0ca9b14ebcdd0b065ccf501ae86aed1b8a6eaf387a2bd0d2d2bec9
MD5 2aef167030efa7b766d1ebb3ff3467db
BLAKE2b-256 c1cb138c31711301f34a0acf97801202b66bbcb01ea0bf97419c80e63474d403

See more details on using hashes here.

File details

Details for the file soco-0.25.1-py2.py3-none-any.whl.

File metadata

  • Download URL: soco-0.25.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 152.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for soco-0.25.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 42d9825865f17dfe7b9180b83486140c47f2604077e8ae758526a9a95d40d026
MD5 e6adea30c64e0a15dc541a0173c45cc5
BLAKE2b-256 efe58c186c517fe82987be1a70505a5431907671e949be00f5c9dc62d3e5052d

See more details on using hashes here.

Supported by

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