From 1fd392233c0d3484ff388dd5b5e686ad5a624ac4 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Mon, 15 Mar 2021 01:28:26 -0400 Subject: [PATCH] v1.5.0 --- README.md | 2 +- modules/config.py | 1 - plex_meta_manager.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5608bfbf..bc9a0d0e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Plex Meta Manager -#### Version 1.4.0 +#### Version 1.5.0 The original concept for Plex Meta Manager is [Plex Auto Collections](https://github.com/mza921/Plex-Auto-Collections), but this is rewritten from the ground up to be able to include a scheduler, metadata edits, multiple libraries, and logging. Plex Meta Manager is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki. Some collection examples that the script can automatically build and update daily include Plex Based Searches like actor, genre, or studio collections or Collections based on TMDb, IMDb, Trakt, TVDb, AniDB, or MyAnimeList lists and various other services. diff --git a/modules/config.py b/modules/config.py index 49c1892c..45aea8cd 100644 --- a/modules/config.py +++ b/modules/config.py @@ -18,7 +18,6 @@ from modules.trakttv import TraktAPI from modules.tvdb import TVDbAPI from modules.util import Failed from plexapi.exceptions import BadRequest -from plexapi.media import Guid from ruamel import yaml logger = logging.getLogger("Plex Meta Manager") diff --git a/plex_meta_manager.py b/plex_meta_manager.py index 522e56d2..bf8b1918 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -65,7 +65,7 @@ logger.info(util.get_centered_text("| |_) | |/ _ \\ \\/ / | |\\/| |/ _ \\ __/ _` logger.info(util.get_centered_text("| __/| | __/> < | | | | __/ || (_| | | | | | (_| | | | | (_| | (_| | __/ | ")) logger.info(util.get_centered_text("|_| |_|\\___/_/\\_\\ |_| |_|\\___|\\__\\__,_| |_| |_|\\__,_|_| |_|\\__,_|\\__, |\\___|_| ")) logger.info(util.get_centered_text(" |___/ ")) -logger.info(util.get_centered_text(" Version: 1.4.0 ")) +logger.info(util.get_centered_text(" Version: 1.5.0 ")) util.separator() if args.tests: