File: logger.py

package info (click to toggle)
python-mpd 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 472 kB
  • sloc: python: 3,148; makefile: 201; sh: 9
file content (7 lines) | stat: -rw-r--r-- 155 bytes parent folder | download
1
2
3
4
5
6
7
import logging
import mpd

logging.basicConfig(level=logging.DEBUG)
client = mpd.MPDClient()
client.connect("localhost", 6600)
client.find("any", "house")