]> kaliko git repositories - python-musicpd.git/commitdiff
Documentation more explicit (closes #6)
authorKaliko Jack <kaliko@azylum.org>
Thu, 8 Oct 2020 06:53:43 +0000 (08:53 +0200)
committerKaliko Jack <kaliko@azylum.org>
Thu, 8 Oct 2020 06:53:43 +0000 (08:53 +0200)
doc/source/use.rst

index d8e46e7e7c216143d980d72bd4f3b3628c428683..18fdd2968ffce751c39d05d4c1435c968f47d76f 100644 (file)
@@ -11,10 +11,12 @@ The client library can be used as follows:
                                        #   fallback to localhost:6600
                                        # connect support host/port argument as well
     print(client.mpd_version)          # print the mpd protocol version
-    print(client.cmd('one', 2))        # print result of the command "cmd one 2"
+    print(client.cmd('foo', 42))       # print result of the request "cmd foo 42"
+                                       # (nb. for actual command, see link to the protocol below)
     client.disconnect()                # disconnect from the server
 
-For a list of supported commands, their arguments (as MPD currently understands
+In the example above `cmd` in not an actual MPD command, for a list of
+supported commands, their arguments (as MPD currently understands
 them), and the functions used to parse their responses see :ref:`commands`.
 
 See the `MPD protocol documentation`_ for more details.