Skip to content

Instantly share code, notes, and snippets.

@JonnyWong16
Last active May 15, 2019 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonnyWong16/6a6ea845a735c2f7a7cd4ab3c462af97 to your computer and use it in GitHub Desktop.
Save JonnyWong16/6a6ea845a735c2f7a7cd4ab3c462af97 to your computer and use it in GitHub Desktop.
Automatically add a movie to a collection based on release date.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Description: Automatically add a movie to a collection based on release date.
# Author: /u/SwiftPanda16
# Requires: plexapi
# Tautulli script trigger:
# * Notify on recently added
# Tautulli script conditions:
# * Filter which media to add to collection.
# [ Media Type | is | movie ]
# [ Library Name | is | Movies ]
# Tautulli script arguments:
# * Recently Added:
# --rating_key {rating_key} --collection "New Releases" --days 180
import argparse
import os
from datetime import datetime, timedelta
from plexapi.server import PlexServer
PLEX_URL = ''
PLEX_TOKEN = ''
# Environmental Variables
PLEX_URL = os.getenv('PLEX_URL', PLEX_URL)
PLEX_TOKEN = os.getenv('PLEX_TOKEN', PLEX_TOKEN)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--rating_key', required=True, type=int)
parser.add_argument('--collection', required=True)
parser.add_argument('--days', required=True, type=int)
opts = parser.parse_args()
threshold_date = datetime.now() - timedelta(days=opts.days)
plex = PlexServer(PLEX_URL, PLEX_TOKEN)
movie = plex.fetchItem(opts.rating_key)
if movie.originallyAvailableAt >= threshold_date:
movie.addCollection(opts.collection)
print("Added collection '{}' to '{}'.".format(opts.collection, movie.title.encode('UTF-8')))
for m in movie.section().search(collection=opts.collection):
if m.originallyAvailableAt < threshold_date:
m.removeCollection(opts.collection)
print("Removed collection '{}' from '{}'.".format(opts.collection, m.title.encode('UTF-8')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment