]> kaliko git repositories - python-musicpd.git/commitdiff
Fixed documentation
authorKaliko Jack <kaliko@azylum.org>
Fri, 15 Nov 2013 19:28:47 +0000 (20:28 +0100)
committerKaliko Jack <kaliko@azylum.org>
Fri, 15 Nov 2013 19:28:47 +0000 (20:28 +0100)
MANIFEST.in
README.rst [moved from README.txt with 71% similarity]
setup.py

index 066ee11af14b99c14763feb1ef43b3f0065ad109..3305050b9b15d9117e10e9bd29fdf69fe5d91255 100644 (file)
@@ -1,3 +1,3 @@
 exclude setup.cfg
-include *.txt
+include *.txt README.rst
 recursive-include doc *.txt
similarity index 71%
rename from README.txt
rename to README.rst
index e6a2e31e9dea3baf2b3da0773fc22eba88b55145..a926514908ef9fe257a906815416c673f3f870c1 100644 (file)
@@ -34,12 +34,12 @@ Using the client library
 
 The client library can be used as follows::
 
->>> client = mpd.MPDClient()           # create client object
->>> client.connect("localhost", 6600)  # connect to localhost:6600
->>> print client.mpd_version           # print the mpd version
->>> print client.cmd("one", 2)         # print result of the command "cmd one 2"
->>> client.close()                     # send the close command
->>> client.disconnect()                # disconnect from the server
+    client = musicpd.MPDClient()       # create client object
+    client.connect('localhost', 6600)  # connect to localhost:6600
+    print client.mpd_version           # print the mpd version
+    print client.cmd('one', 2)         # print result of the command "cmd one 2"
+    client.close()                     # send the close command
+    client.disconnect()                # disconnect from the server
 
 A list of supported commands, their arguments (as MPD currently understands
 them), and the functions used to parse their responses can be found in
@@ -49,18 +49,18 @@ details.
 Command lists are also supported using `command_list_ok_begin()` and
 `command_list_end()` ::
 
->>> client.command_list_ok_begin()       # start a command list
->>> client.update()                      # insert the update command into the list
->>> client.status()                      # insert the status command into the list
->>> results = client.command_list_end()  # results will be a list with the results
+    client.command_list_ok_begin()       # start a command list
+    client.update()                      # insert the update command into the list
+    client.status()                      # insert the status command into the list
+    results = client.command_list_end()  # results will be a list with the results
 
 
 Commands may also return iterators instead of lists if `iterate` is set to
 `True`::
 
->>> client.iterate = True
->>> for song in client.playlistinfo():
->>>     print song["file"]
+    client.iterate = True
+    for song in client.playlistinfo():
+        print song['file']
 
 
 Contacting authors
index 81c1276a03afb5f7f6aeef3380f4c9c786ad3dc8..18e00077babaa124e9ef20512e12d92b901e3540 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ An MPD (Music Player Daemon) client library written in pure Python.\
 """
 
 
-with open('README.txt') as file:
+with open('README.rst') as file:
     LONG_DESCRIPTION = file.read()
 
 CLASSIFIERS = [