mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
#315 arrapi 1.0.2 fixes the issue
This commit is contained in:
parent
803b191d8b
commit
190b26988f
4 changed files with 7 additions and 7 deletions
|
@ -5,6 +5,7 @@
|
|||
[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/meisnate12/plex-meta-manager?label=docker&sort=semver&style=plastic)](https://hub.docker.com/r/meisnate12/plex-meta-manager)
|
||||
[![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/meisnate12/plex-meta-manager?style=plastic)](https://hub.docker.com/r/meisnate12/plex-meta-manager)
|
||||
[![Discord](https://img.shields.io/discord/822460010649878528?label=Discord&style=plastic)](https://discord.gg/TsdpsFYqqm)
|
||||
[![Sponsor or Donate](https://img.shields.io/badge/-Sponsor_or_Donate-blueviolet?style=plastic)](https://github.com/sponsors/meisnate12)
|
||||
|
||||
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.
|
||||
|
||||
|
@ -12,8 +13,6 @@ The script can update many metadata fields for movies, shows, collections, seaso
|
|||
|
||||
The script is designed to work with most Metadata agents including the new Plex Movie Agent, New Plex TV Agent, [Hama Anime Agent](https://github.com/ZeroQI/Hama.bundle), and [MyAnimeList Anime Agent](https://github.com/Fribb/MyAnimeList.bundle).
|
||||
|
||||
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/donate?business=JTK3CVKF3ZHP2&item_name=Plex+Meta+Manager¤cy_code=USD)
|
||||
|
||||
## Getting Started
|
||||
|
||||
1. Install Plex Meta Manager either by installing Python3 and following the [Local Installation Guide](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Local-Installation)
|
||||
|
|
|
@ -1325,11 +1325,11 @@ class CollectionBuilder:
|
|||
return util.get_list(data)
|
||||
elif attribute == "history":
|
||||
try:
|
||||
return util.check_number(data, final, minimum=0, maximum=30)
|
||||
return util.check_number(data, final, minimum=1, maximum=30)
|
||||
except Failed:
|
||||
if str(data).lower() in ["day", "month"]:
|
||||
return data.lower()
|
||||
raise Failed(f"Collection Error: history attribute invalid: {data} must be a number between 0-30, day, or month")
|
||||
raise Failed(f"Collection Error: history attribute invalid: {data} must be a number between 1-30, day, or month")
|
||||
elif attribute in plex.tags and modifier in ["", ".not"]:
|
||||
if attribute in plex.tmdb_attributes:
|
||||
final_values = []
|
||||
|
|
|
@ -287,8 +287,9 @@ def unix_input(prompt, timeout=60):
|
|||
prompt = f"| {prompt}: "
|
||||
signal.signal(signal.SIGALRM, alarm_handler)
|
||||
signal.alarm(timeout)
|
||||
try: return input(prompt)
|
||||
finally: signal.alarm(0)
|
||||
try: return input(prompt)
|
||||
except EOFError: raise Failed("Input Failed")
|
||||
finally: signal.alarm(0)
|
||||
|
||||
def old_windows_input(prompt, timeout=60, timer=time.monotonic):
|
||||
prompt = f"| {prompt}: "
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
PlexAPI==4.6.1
|
||||
tmdbv3api==1.7.5
|
||||
trakt.py==4.3.0
|
||||
arrapi==1.0.1
|
||||
arrapi==1.0.2
|
||||
# More common, flexible
|
||||
lxml
|
||||
requests>=2.4.2
|
||||
|
|
Loading…
Reference in a new issue