Merge branch 'master' into style-cleanup

This commit is contained in:
blacktwin 2019-06-25 14:37:47 -04:00 committed by GitHub
commit 60772450a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,28 +3,15 @@
"""Delete all playlists from Plex.
https://github.com/mjs7231/python-plexapi
"""
from plexapi.server import PlexServer
import requests
baseurl = 'http://localhost:32400'
token = 'XXXXXXXX'
plex = PlexServer(baseurl, token)
tmp_lst = []
for playlist in plex.playlists():
tmp = playlist.key
split = tmp.split('/playlists/')
tmp_lst += [split[1]]
for i in tmp_lst:
try:
r = requests.delete('{}/playlists/{}?X-Plex-Token={}'.format(baseurl, i, token))
print(r)
except Exception as e:
print(e)
playlist.delete()