main.py 373 B

1234567891011121314151617181920
  1. import time
  2. from mpd import MPDClient
  3. client = MPDClient()
  4. client.timeout = 60
  5. client.connect("localhost", 6600)
  6. title = ""
  7. station = ""
  8. while(True):
  9. info = client.currentsong()
  10. if station != info["name"]:
  11. station = info["name"]
  12. print(station)
  13. if title != info["title"]:
  14. title = info["title"]
  15. print(title)
  16. time.sleep(10)