mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[31] Merge remote-tracking branch 'yozora/plexapi-check' into nightly
This commit is contained in:
commit
28ee98d7be
1 changed files with 14 additions and 1 deletions
|
@ -237,7 +237,20 @@ def start(attrs):
|
|||
new_version = latest_version[0] if latest_version and (version[1] != latest_version[1] or (version[2] and version[2] < latest_version[2])) else None
|
||||
if new_version:
|
||||
logger.info(f" Newest Version: {new_version}")
|
||||
logger.info(f" PlexAPI library version: {plexapi.VERSION}")
|
||||
def get_required_plexapi_version():
|
||||
with open('requirements.txt', 'r') as file:
|
||||
lines = file.readlines()
|
||||
for line in lines:
|
||||
if line.strip().startswith('PlexAPI=='):
|
||||
return line.strip().split('==')[1]
|
||||
return None
|
||||
|
||||
required_version = get_required_plexapi_version()
|
||||
|
||||
if required_version == plexapi.VERSION:
|
||||
logger.info(f" PlexAPI library version: {plexapi.VERSION}")
|
||||
else:
|
||||
logger.info(f" PlexAPI library version: {plexapi.VERSION} (Required Version: {required_version})")
|
||||
logger.info(f" Platform: {platform.platform()}")
|
||||
logger.info(f" Memory: {round(psutil.virtual_memory().total / (1024.0 ** 3))} GB")
|
||||
if "time" in attrs and attrs["time"]: start_type = f"{attrs['time']} "
|
||||
|
|
Loading…
Reference in a new issue