mirror of
https://github.com/blacktwin/JBOPS.git
synced 2025-12-11 19:37:18 +00:00
16 lines
241 B
Python
16 lines
241 B
Python
"""
|
|
Delete all playlists from Plex using PlexAPI
|
|
|
|
|
|
"""
|
|
|
|
from plexapi.server import PlexServer
|
|
|
|
baseurl = 'http://localhost:32400'
|
|
token = 'XXXXXXXX'
|
|
plex = PlexServer(baseurl, token)
|
|
|
|
|
|
for playlist in plex.playlists():
|
|
playlist.delete()
|