Update plex_allow_sync.py

This commit is contained in:
blacktwin 2017-09-18 17:34:50 -04:00 committed by GitHub
parent b8ffc9ca6c
commit 2d3e257613

View File

@ -12,6 +12,9 @@ plex = PlexServer(PLEX_URL, PLEX_TOKEN)
USER_IGNORE = ['username']
headers = {'X-Plex-Token': PLEX_TOKEN}
payload = {'allowSync': 1} # 1 = Allow, 0 = Not Allow
for user in plex.myPlexAccount().users():
if user.title not in USER_IGNORE:
r = requests.put('http://plex.tv/api/friends/{}'.format(user.id), headers=headers, params=payload)