I'm using mpd and a python wrapper. When I use status() I get this it starts with the ___ bracket. I'm trying to retrieve this data to find out if it is playing or not.
>>> data
{'songid': '28', 'playlistlength': '1', 'playlist': '32', 'repeat': '0', 'consume': '0', 'mixrampdb': '0.000000', 'random': '0', 'state': 'play', 'xfade': '0', 'volume': '-1', 'single': '1', 'mixrampdelay': 'nan', 'time': '228:429', 'song': '0', 'elapsed': '228.473', 'bitrate': '128', 'audio': '44100:24:2'}
My current workaround is turning it into a string and using the split(',') to retrieve my information.
