/usr/share/doc/python-mpd-doc/README.rst is in python-mpd-doc 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | python-mpd2
===========
.. image:: https://travis-ci.org/Mic92/python-mpd2.png?branch=master
:target: http://travis-ci.org/Mic92/python-mpd2
:alt: Build Status
*python-mpd2* is a Python library which provides a client interface for
the `Music Player Daemon <http://musicpd.org>`__.
Difference with python-mpd
--------------------------
python-mpd2 is a fork of `python-mpd`_. While 0.4.x was backwards compatible
with python-mpd, starting with 0.5 provides enhanced features which are *NOT*
backward compatibles with the original `python-mpd`_ package. (see PORTING.txt
for more information)
The following features were added:
- Python 3 support (but you need at least Python 2.6)
- asyncio/twisted support
- support for the client-to-client protocol
- support for new commands from MPD (seekcur, prio, prioid,
config, searchadd, searchaddpl, listfiles, rangeid, addtagid, cleartagid,
mount, umount, listmounts, listneighbors)
- remove deprecated commands (volume)
- explicitly declared MPD commands (which is handy when using for
example `IPython <http://ipython.org>`__)
- a test suite
- API documentation to add new commands (see `Future Compatible <https://python-mpd2.readthedocs.io/en/latest/topics/advanced.html#future-compatible>`__)
- support for Unicode strings in all commands (optionally in python2,
default in python3 - see `Unicode Handling <https://python-mpd2.readthedocs.io/en/latest/topics/advanced.html#unicode-handling>`__)
- configureable timeouts
- support for `logging <https://python-mpd2.readthedocs.io/en/latest/topics/logging.html>`__
- improved support for sticker
- improved support for ranges
Getting the latest source code
------------------------------
If you would like to use the latest source code, you can grab a
copy of the development version from Git by running the command::
$ git clone https://github.com/Mic92/python-mpd2.git
Getting the latest release
--------------------------
The latest stable release of *python-mpd2* can be found on
`PyPI <http://pypi.python.org/pypi?:action=display&name=python-mpd2>`__
PyPI:
~~~~~
::
$ pip install python-mpd2
Installation in Linux/BSD distributions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Until Linux distributions adapt this package, here are some ready to use
packages to test your applications:
See `INSTALL.rst <INSTALL.rst>`__
Installing from source
----------------------
To install *python-mpd2* from source, simply run the command::
$ python setup.py install
You can use the *--help* switch to *setup.py* for a complete list of commands
and their options. See the `Installing Python Modules <http://docs.python.org/inst/inst.html>`__ document for more details.
Documentation
-------------
`Documentation <https://python-mpd2.readthedocs.io/en/latest/>`__
`Getting Started <https://python-mpd2.readthedocs.io/en/latest/topics/getting-started.html>`__
`Command Reference <https://python-mpd2.readthedocs.io/en/latest/topics/commands.html>`__
`Examples <examples>`__
Testing
-------
Just run::
$ python setup.py test
This will install `Tox <http://tox.testrun.org/>`__. Tox will take care of
testing against all the supported Python versions (at least available) on our
computer, with the required dependencies
Building Documentation
----------------------
Install Sphinx::
$ easy_install -U Sphinx
Change to the source directory an run::
$ python ./setup.py build_sphinx
The command reference is generated from the official mpd protocol documentation.
In order to update it, install python-lxml and run the following command::
$ python ./doc/generate_command_reference.py > ./doc/topics/commands.rst
Contacting the author
---------------------
Just contact me (Mic92) on Github or via email (joerg@thalheim.io).
.. |Build Status| image:: https://travis-ci.org/Mic92/python-mpd2.png
.. _python-mpd: https://pypi.python.org/pypi/python-mpd/
|