refresh.py 193 B

123456789101112
  1. import time
  2. from mpd import MPDClient
  3. client = MPDClient()
  4. client.timeout = 60
  5. client.connect("localhost", 6600)
  6. song = client.status()["song"]
  7. client.stop()
  8. time.sleep(1)
  9. client.play(song)