Skip to content

Instantly share code, notes, and snippets.

@ozcan
Created January 6, 2015 22:56
Show Gist options
  • Select an option

  • Save ozcan/1dd0d81aef92526dadc6 to your computer and use it in GitHub Desktop.

Select an option

Save ozcan/1dd0d81aef92526dadc6 to your computer and use it in GitHub Desktop.
spotify play song with dbus
import dbus
bus = dbus.SessionBus()
spotify = bus.get_object('com.spotify.qt', '/')
player = dbus.Interface(spotify, 'org.freedesktop.MediaPlayer2')
player.OpenUri('spotify:track:1inG2cgfeGVBsTCcmMIv0e')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment