breily / pympd
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Brian Reily (author)
Fri Jan 30 21:16:09 -0800 2009
pympd /
README
PyMPD - A MPD Library
=====================
* by: brian reily
* url: http://brianreily.com/projects/pympd
status
------
* PyMPD was written a while ago and is no longer being
actively maintained/developed. No efforts will be made
to keep up with changes/additions to MPD's protocol. It
works at the moment, though.
usage
-----
>>> import mpd
>>> m = mpd.MPD() # or m = mpd.MPD(host='127.0.0.1', port=6600)
>>> m.status()
...data sent back...
>>> m.find('artist Disturbed')
...data sent back...

