Python MusicPlayerDaemon client module¶
An MPD (Music Player Daemon) client library written in pure Python.
Documentation: | https://kaliko.gitlab.io/python-musicpd |
---|---|
MPD Protocol: | https://www.musicpd.org/doc/html/protocol.html |
Code: | https://gitlab.com/kaliko/python-musicpd |
Dependencies: | None |
Compatibility: | Python 3.4+ |
Licence: | GNU LGPLv3 |
Installation¶
Latest stable release from PyPi:
pip install python-musicpd
Latest development version using pip + git:
pip install git+https://gitlab.com/kaliko/python-musicpd.git
Build documentation¶
# Get the source
git clone https://gitlab.com/kaliko/python-musicpd.git && cd python-musicpd
# Installs sphinx if needed
python3 -m venv venv && . ./venv/bin/activate
pip install sphinx
# And build
python3 setup.py build_sphinx
# Or call sphinx
sphinx-build -d ./doc/build/doctrees doc/source -b html ./doc/build/html