---------------------------
* Use setuptools
+* Add sphinx documentation
* Add sensible defaults and honor environment variables
Use MPD_HOST/MPD_PORT (honor password setting in MPD_HOST)
If MPD_HOST is not set, tries to find a socket in
#
import os
import sys
-# sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('../../'))
from musicpd import VERSION
__author__ = 'kaliko'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = 'alabaster'
html_theme = 'classic'
#html_theme = "sphinx_rtd_theme"
#html_theme = 'bootstrap'
* ``master`` branch holds latest stable|release code
* ``dev`` branch holds current development code
* Work on a dedicated branch starting off ``dev``
-* I like fast forward merges, **please rebase on** ``dev`` **branch**
+* I like fast forward merges, **please rebase on** ``dev`` branch before submitting changes
* Advertise your work (cf. Note)
.. NOTE::
**Git merge Workflow** |br|
I currently don't care about a specific workflow concerning changes submission. |br|
- gitlab merge request, gh pull request, plain email pointing out a repo/ref. All we need is a public git repo and a ref to fetch from as long you rebased on ``dev`` branch.
+ Don't bother with gitlab merge request or gh pull request. |br|
+ All we need is a public git repo and a ref to fetch from as long you rebased on ``dev`` branch.
Coding
-------
raise ConnectionError("Not connected")
class MPDClient:
- """MPDClient instance will look for ``MPD_HOST``/``MPD_PORT`` environment
+ """MPDClient instance will look for ``MPD_HOST``/``MPD_PORT``/``XDG_RUNTIME_DIR`` environment
variables and set instance attribute ``host``, ``port`` and ``password``
accordingly.
+
+ Then :py:obj:`musicpd.MPDClient.connect` will use ``host`` and ``port`` as defaults if not provided as args.
+
+ Cf. :py:obj:`musicpd.MPDClient.connect` for details.
+
+ >>> from os inport environ
+ >>> environ['MPD_HOST'] = 'pass@mpdhost'
+ >>> cli = musicpd.MPDClient()
+ >>> cli.password == environ['MPD_HOST'].split('@')[0]
+ True
+ >>> cli.host == environ['MPD_HOST'].split('@')[1]
+ True
+ >>> # cli.connect() will use host/port as set in MPD_HOST/MPD_PORT
"""
def __init__(self):
.. note:: Default host/port
If host evaluate to :py:obj:`False`
- * if ``MPD_HOST`` env. var. is set, use it for host
+ * use ``MPD_HOST`` env. var. if set, extract password if present,
* else looks for a existing file in ``${XDG_RUNTIME_DIR:-/run/}/mpd/socket``
- * finally set host to ``localhost``
+ * else set host to ``localhost``
If port evaluate to :py:obj:`False`
* if ``MPD_PORT`` env. var. is set, use it for port
def disconnect(self):
"""Closes the MPD connection.
- The client closes the actual socket and not using the
- 'close' request from MPD protocol as suggested in documentation.
+ The client closes the actual socket, it does not use the
+ 'close' request from MPD protocol (as suggested in documentation).
"""
if hasattr(self._rfile, 'close'):
self._rfile.close()