]> kaliko git repositories - python-musicpd.git/commitdiff
Improved documentation
authorKaliko Jack <kaliko@azylum.org>
Fri, 8 May 2020 12:15:37 +0000 (14:15 +0200)
committerKaliko Jack <kaliko@azylum.org>
Fri, 8 May 2020 12:15:37 +0000 (14:15 +0200)
doc/source/doc.rst
musicpd.py

index f0205c507a8763bfac8dd3e7a051e459c177a19f..60ae4faf9e9b903f5e104a59e26a2e4df2d88294 100644 (file)
@@ -1,10 +1,10 @@
 MPD client class
 =================
 
+.. autodata:: musicpd.CONNECTION_TIMEOUT
+
 .. autoclass:: musicpd.MPDClient
     :members:
-    :noindex:
-
 
 
 .. vim: spell spelllang=en
index 58edf56227afc9e1d4c26aef0fc75ff2941c2faa..8c5bfc32c155e7cd1b8179ecdca217185239f591 100644 (file)
@@ -30,7 +30,8 @@ ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
 VERSION = '0.4.5'
-CONNECTION_TIMEOUT = 5  # seconds before a tcp connection attempt times out
+#: seconds before a tcp connection attempt times out
+CONNECTION_TIMEOUT = 5
 
 
 def iterator_wrapper(func):
@@ -134,7 +135,11 @@ class MPDClient:
     True
     >>> cli.host == environ['MPD_HOST'].split('@')[1]
     True
-    >>> # cli.connect() will use host/port as set in MPD_HOST/MPD_PORT
+    >>> cli.connect() # will use host/port as set in MPD_HOST/MPD_PORT
+
+    :ivar str host: host used with the current connection
+    :ivar str,int port: port used with the current connection
+    :ivar str pwd: password detected in ``MPD_HOST`` environment variable
 
     .. warning:: Instance attribute host/port/pwd