From fdf61e7430838436c41f56741c47eb07e97e2eb7 Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 13 Jan 2018 17:12:07 +0100 Subject: [PATCH] Add PlaylistManager instance to SoCo --- soco/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/soco/core.py b/soco/core.py index 98e725cd1..c27f7ead2 100755 --- a/soco/core.py +++ b/soco/core.py @@ -27,6 +27,7 @@ ) from .groups import ZoneGroup from .music_library import MusicLibrary +from .playlists import PlaylistManager from .services import ( DeviceProperties, ContentDirectory, RenderingControl, AVTransport, ZoneGroupTopology, AlarmClock, SystemProperties, MusicServices, @@ -211,6 +212,7 @@ def __init__(self, ip_address): self.musicServices = MusicServices(self) self.music_library = MusicLibrary(self) + self.playlists = PlaylistManager(self) # Some private attributes self._all_zones = set()