update to Description

This commit is contained in:
blacktwin 2020-05-19 18:10:18 -04:00
parent bf624c6d7b
commit 56e2239c5a

View File

@ -5,6 +5,8 @@
Description: Manage Plex media. Description: Manage Plex media.
Show, delete, archive, optimize, or move media based on whether it was Show, delete, archive, optimize, or move media based on whether it was
watched, unwatched, transcoded often, or file size is greater than X watched, unwatched, transcoded often, or file size is greater than X
*Tautulli data to command Plex
Author: Blacktwin Author: Blacktwin
Requires: requests, plexapi, argparse Requires: requests, plexapi, argparse
@ -93,6 +95,7 @@ class Library(object):
d = data or {} d = data or {}
self.title = d['section_name'] self.title = d['section_name']
self.key = d['section_id'] self.key = d['section_id']
self.type = d['section_type']
class Metadata(object): class Metadata(object):