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.
else:logger.warning(f"Collection Warning: {parent}{method} attribute {data_in[method]} invalid must an integer <= {maximum} using {default} as default")
else:logger.warning(f"Collection Warning: {parent}{method} attribute {data_in[method]} invalid must an integer >= {minimum} using {default} as default")
else:logger.warning(f"Collection Warning: {parent}{method} attribute {data_in[method]} invalid must an integer <= {maximum} using {default_in} as default")
else:logger.warning(f"Collection Warning: {parent}{method} attribute {data_in[method]} invalid must an integer >= {minimum} using {default_in} as default")
parser.add_argument("-t","--time",dest="time",help="Time to update each day use format HH:MM (Default: 03:00)",default="03:00",type=str)
parser.add_argument("-r","--run",dest="run",help="Run without the scheduler",action="store_true",default=False)
parser.add_argument("-rt","--test","--tests","--run-test","--run-tests",dest="test",help="Run in debug mode with only collections that have test: true",action="store_true",default=False)
parser.add_argument("-cl","--collection","--collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str, default="")
parser.add_argument("-cl","--collection","--collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str)
parser.add_argument("-d","--divider",dest="divider",help="Character that divides the sections (Default: '=')",default="=",type=str)