== Stored Playlist Commands
listplaylist <str> -> getlist
listplaylistinfo <str> -> getsongs
+listplaylists -> getplaylists
load <str> -> getnone
playlistadd <str> <str> -> getnone
playlistclear <str> -> getnone
# Stored Playlist Commands
"listplaylist": self._getlist,
"listplaylistinfo": self._getsongs,
+ "listplaylists": self._getplaylists,
"load": self._getnone,
"playlistadd": self._getnone,
"playlistclear": self._getnone,
def _getsongs(self):
return self._getobjects(["file"])
+ def _getplaylists(self):
+ return self._getobjects(["playlist"])
+
def _getdatabase(self):
return self._getobjects(["file", "directory", "playlist"])