Kometa-Team / Kometa

Python script to update metadata information for items in plex as well as automatically build collections and playlists. The Wiki Documentation is linked below.
https://kometa.wiki
MIT License
2.51k stars 306 forks source link

KeyError: 'title' in mdblist.py #1879

Closed ostrolucky closed 7 months ago

ostrolucky commented 8 months ago

Version Number

1.20.0

What branch are you on?

master

Describe the Bug

With this config

mdblist:
  apikey: foo

plex-meta-manager exits early with following error

|                                                                                                    |
| Processing: 2/6 Chernobyl                                                                          |
| Traceback (most recent call last):                                                                 |
|   File "//plex_meta_manager.py", line 692, in run_libraries                                        |
|     library_status[library.name]["Library Operations"] = library.Operations.run_operations()       |
|                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^       |
|   File "/modules/operations.py", line 241, in run_operations                                       |
|     mdb_item = self.config.Mdblist.get_series(tvdb_id)                                             |
|                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                             |
|   File "/modules/mdblist.py", line 132, in get_series                                              |
|     return self._request(tvdb_id=tvdb_id, is_movie=False)                                          |
|            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                          |
|   File "/modules/mdblist.py", line 123, in _request                                                |
|     mdb = MDbObj(response)                                                                         |
|           ^^^^^^^^^^^^^^^^                                                                         |
|   File "/modules/mdblist.py", line 24, in __init__                                                 |
|     self.title = data["title"]                                                                     |
|                  ~~~~^^^^^^^^^                                                                     |
| KeyError: 'title'                                                                                  |
|                                                                                                    |
| 'title'

As soon as I remove this configuration, plex-meta-manager works fine

Relevant Collection/Overlay/Playlist Definition

No response

Logs

No response

jaytrickett1 commented 8 months ago

I have the same issue. I receive the identical error while processing Movies -- this case, when I hit Puss in Boots. Here's the log:

[2024-02-14 16:42:10,614] [plex_meta_manager.py:698] [DEBUG] Traceback (most recent call last): File "//./plex_meta_manager.py", line 692, in run_libraries library_status[library.name]["Library Operations"] = library.Operations.run_operations() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/operations.py", line 249, in run_operations mdb_item = self.config.Mdblist.get_movie(tmdb_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 135, in get_movie return self._request(tmdb_id=tmdb_id, is_movie=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 123, in _request mdb = MDbObj(response) ^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 24, in init self.title = data["title"] ~~~~^^^^^^^^^ KeyError: 'title'
[2024-02-14 16:42:10,617] [plex_meta_manager.py:699] [CRITICAL] 'title'
austensmith commented 8 months ago

Hi all, yes, I am seeing the same error. Again, it works fine when I remove the mdb link. It doesn't seem to matter which title is gets to as it has happened on different items each time.

Traceback (most recent call last):
  File "//plex_meta_manager.py", line 692, in run_libraries
    library_status[library.name]["Library Operations"] = library.Operations.run_operations()
                                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/modules/operations.py", line 249, in run_operations
    mdb_item = self.config.Mdblist.get_movie(tmdb_id)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/modules/mdblist.py", line 135, in get_movie
    return self._request(tmdb_id=tmdb_id, is_movie=True)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/modules/mdblist.py", line 123, in _request
    mdb = MDbObj(response)
          ^^^^^^^^^^^^^^^^
  File "/modules/mdblist.py", line 24, in __init__
    self.title = data["title"]
                 ~~~~^^^^^^^^^
KeyError: 'title'                                                            
'title'
YozoraXCII commented 8 months ago

Can you provide the log file for this please

ostrolucky commented 8 months ago
[2024-02-20 23:38:08,997] [plex_meta_manager.py:226]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:08,997] [plex_meta_manager.py:227]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:08,997] [plex_meta_manager.py:228]  [INFO]     |        ____  _             __  __      _          __  __                                           |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:229]  [INFO]     |       |  _ \| | _____  __ |  \/  | ___| |_ __ _  |  \/  | __ _ _ __   __ _  __ _  ___ _ __         |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:230]  [INFO]     |       | |_) | |/ _ \ \/ / | |\/| |/ _ \ __/ _` | | |\/| |/ _` | '_ \ / _` |/ _` |/ _ \ '__|        |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:231]  [INFO]     |       |  __/| |  __/>  <  | |  | |  __/ || (_| | | |  | | (_| | | | | (_| | (_| |  __/ |           |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:232]  [INFO]     |       |_|   |_|\___/_/\_\ |_|  |_|\___|\__\__,_| |_|  |_|\__,_|_| |_|\__,_|\__, |\___|_|           |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:233]  [INFO]     |                                                                            |___/                   |
[2024-02-20 23:38:08,998] [plex_meta_manager.py:235]  [INFO]     |     Version: 1.20.0 (Docker)                                                                       |
[2024-02-20 23:38:09,265] [plex_meta_manager.py:247]  [INFO]     |     PlexAPI Version: 4.15.7                                                                        |
[2024-02-20 23:38:09,265] [plex_meta_manager.py:250]  [INFO]     |     Platform: Linux-6.1.75-x86_64-with-glibc2.28                                                   |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:251]  [INFO]     |     Memory: 8 GB                                                                                   |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:275]  [DEBUG]    |====================================================================================================|
[2024-02-20 23:38:09,266] [plex_meta_manager.py:276]  [DEBUG]    | Run Command: plex_meta_manager.py --run                                                            |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --config (PMM_CONFIG): None                                                                        |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --times (PMM_TIMES): "05:00"                                                                       |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --run (PMM_RUN): True                                                                              |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --tests (PMM_TESTS): False                                                                         |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --debug (PMM_DEBUG): False                                                                         |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --trace (PMM_TRACE): False                                                                         |
[2024-02-20 23:38:09,266] [plex_meta_manager.py:280]  [DEBUG]    | --log-requests (PMM_LOG-REQUESTS): False                                                           |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --timeout (PMM_TIMEOUT): 180                                                                       |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --collections-only (PMM_COLLECTIONS-ONLY): False                                                   |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --metadata-only (PMM_METADATA-ONLY): False                                                         |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --playlists-only (PMM_PLAYLISTS-ONLY): False                                                       |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --operations-only (PMM_OPERATIONS-ONLY): False                                                     |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --overlays-only (PMM_OVERLAYS-ONLY): False                                                         |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --run-collections (PMM_RUN-COLLECTIONS): None                                                      |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --run-libraries (PMM_RUN-LIBRARIES): None                                                          |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --run-files (PMM_RUN-FILES): None                                                                  |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --ignore-schedules (PMM_IGNORE-SCHEDULES): False                                                   |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --ignore-ghost (PMM_IGNORE-GHOST): False                                                           |
[2024-02-20 23:38:09,267] [plex_meta_manager.py:280]  [DEBUG]    | --delete-collections (PMM_DELETE-COLLECTIONS): False                                               |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --delete-labels (PMM_DELETE-LABELS): False                                                         |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --resume (PMM_RESUME): None                                                                        |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --no-countdown (PMM_NO-COUNTDOWN): False                                                           |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --no-missing (PMM_NO-MISSING): False                                                               |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --no-report (PMM_NO-REPORT): False                                                                 |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --read-only-config (PMM_READ-ONLY-CONFIG): False                                                   |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --divider (PMM_DIVIDER): "="                                                                       |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:280]  [DEBUG]    | --width (PMM_WIDTH): 100                                                                           |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:281]  [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:287]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,268] [plex_meta_manager.py:287]  [INFO]     |                                            Starting Run                                            |
[2024-02-20 23:38:09,268] [plex_meta_manager.py:287]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,269] [config.py:122]             [INFO]     | Locating config...                                                                                 |
[2024-02-20 23:38:09,269] [config.py:128]             [INFO]     | Using //config/config.yml as config                                                                |
[2024-02-20 23:38:09,270] [config.py:169]             [DEBUG]    |========================================= Redacted Config ==========================================|
[2024-02-20 23:38:09,271] [config.py:171]             [DEBUG]    | {libraries: {Movies: {operations: {mass_content_rating_update: mdb, mass_user_rating_update: imdb}, overlay_files: [pmm: content_rating_uk, {pmm: languages, template_variables: {font_size: 100, languages: [ar, cs, da, de, en, es, fr, it, ja, ko, pt, ru, sk, tr, zh]}}, {pmm: ratings, template_variables: {rating1: user, rating1_image: imdb}}]}, TV Shows: {collection_files: [file: config/shows.yml], operations: {mass_content_rating_update: mdb, mass_user_rating_update: imdb}, overlay_files: [pmm: content_rating_uk, {pmm: languages, template_variables: {font_size: 100, languages: [ar, cs, da, de, en, es, fr, it, ja, ko, pt, ru, sk, tr, zh]}}, {operations: {mass_episode_user_rating_update: imdb, operations: {mass_content_rating_update: mdb, mass_user_rating_update: imdb}, overlay_files: [pmm: content_rating_uk, {pmm: languages, template_variables: {font_size: 100, languages: [ar, cs, da, de, en, es, fr, it, ja, ko, pt, ru, sk, tr, zh]}}]}, pmm: ratings, template_variables: {builder_level: episode, rating1: user, rating1_image: imdb}}]}}, mdblist: {apikey: (redacted) |
[2024-02-20 23:38:09,271] [config.py:172]             [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:09,290] [config.py:503]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,294] [cache.py:17]               [INFO]     | Initializing cache database at //config/config.cache                                               |
[2024-02-20 23:38:09,713] [config.py:509]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,713] [config.py:524]             [INFO]     | notifiarr attribute not found                                                                      |
[2024-02-20 23:38:09,713] [config.py:544]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,714] [config.py:549]             [INFO]     | Connecting to TMDb...                                                                              |
[2024-02-20 23:38:09,997] [config.py:558]             [INFO]     | TMDb Connection Successful                                                                         |
[2024-02-20 23:38:09,997] [config.py:562]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,997] [config.py:579]             [INFO]     | omdb attribute not found                                                                           |
[2024-02-20 23:38:09,997] [config.py:581]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:09,997] [config.py:585]             [INFO]     | Connecting to Mdblist...                                                                           |
[2024-02-20 23:38:10,325] [config.py:591]             [INFO]     | Mdblist Connection Successful                                                                      |
[2024-02-20 23:38:10,325] [config.py:601]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,325] [config.py:621]             [INFO]     | trakt attribute not found                                                                          |
[2024-02-20 23:38:10,325] [config.py:623]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,325] [config.py:644]             [INFO]     | mal attribute not found                                                                            |
[2024-02-20 23:38:10,325] [config.py:674]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,326] [config.py:702]             [INFO]     | playlist_files attribute not found                                                                 |
[2024-02-20 23:38:10,534] [config.py:714]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,534] [config.py:716]             [INFO]     | Connecting to Plex Libraries...                                                                    |
[2024-02-20 23:38:10,535] [config.py:778]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,535] [config.py:778]             [INFO]     |                                        Movies Configuration                                        |
[2024-02-20 23:38:10,535] [config.py:778]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:10,535] [config.py:779]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,536] [config.py:780]             [INFO]     | Connecting to Movies Library...                                                                    |
[2024-02-20 23:38:10,536] [config.py:821]             [INFO]     |===================================== Operation Configuration ======================================|
[2024-02-20 23:38:10,536] [config.py:825]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,536] [config.py:826]             [INFO]     | Operation 1/1                                                                                      |
[2024-02-20 23:38:10,536] [config.py:828]             [INFO]     |     mass_content_rating_update: mdb                                                                |
[2024-02-20 23:38:10,536] [config.py:828]             [INFO]     |     mass_user_rating_update: imdb                                                                  |
[2024-02-20 23:38:10,537] [config.py:977]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,537] [config.py:978]             [INFO]     | Reading in Overlay Files                                                                           |
[2024-02-20 23:38:10,537] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,537] [util.py:426]               [INFO]     | Reading pmm: content_rating_uk                                                                     |
[2024-02-20 23:38:10,537] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,537] [util.py:426]               [INFO]     | Reading pmm: languages                                                                             |
[2024-02-20 23:38:10,537] [util.py:464]               [INFO]     | Template Variables: {'font_size': 100, 'languages': ['ar', 'cs', 'da', 'de', 'en', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'ru', 'sk', 'tr', 'zh']} |
[2024-02-20 23:38:10,537] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,538] [util.py:426]               [INFO]     | Reading pmm: ratings                                                                               |
[2024-02-20 23:38:10,538] [util.py:464]               [INFO]     | Template Variables: {'rating1': 'user', 'rating1_image': 'imdb'}                                   |
[2024-02-20 23:38:10,538] [config.py:1068]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,538] [config.py:1069]            [INFO]     |======================================== Plex Configuration ========================================|
[2024-02-20 23:38:10,643] [plex.py:446]               [INFO]     | Connected to server Kaby-Lake version 1.32.8.7639-fb6452ebf                                        |
[2024-02-20 23:38:10,643] [plex.py:447]               [INFO]     | Running on Linux version 6.1.75 (#1-NixOS SMP PREEMPT_DYNAMIC Thu Jan 25 23:27:52 UTC 2024)        |
[2024-02-20 23:38:10,665] [plex.py:451]               [INFO]     | Plex DB cache setting: 40 MB                                                                       |
[2024-02-20 23:38:10,665] [plex.py:468]               [INFO]     | PlexPass: False on Public update channel.                                                          |
[2024-02-20 23:38:10,665] [plex.py:470]               [INFO]     | Scheduled maintenance running between 2:00 and 5:00                                                |
[2024-02-20 23:38:10,697] [plex.py:518]               [INFO]     | Connected to library Movies                                                                        |
[2024-02-20 23:38:10,697] [plex.py:519]               [INFO]     | Type: Movie                                                                                        |
[2024-02-20 23:38:10,697] [plex.py:520]               [INFO]     | Agent: tv.plex.agents.movie                                                                        |
[2024-02-20 23:38:10,697] [plex.py:521]               [INFO]     | Scanner: Plex Movie                                                                                |
[2024-02-20 23:38:10,698] [plex.py:522]               [INFO]     | Ratings Source: IMDb                                                                               |
[2024-02-20 23:38:10,698] [config.py:1084]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,698] [config.py:1085]            [INFO]     | Movies Library Connection Successful                                                               |
[2024-02-20 23:38:10,698] [config.py:1086]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,698] [config.py:1087]            [INFO]     |========================================== Scanning Files ==========================================|
[2024-02-20 23:38:10,698] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,698] [meta.py:2193]              [INFO]     | Loading Overlay 0 PMM Default: content_rating_uk                                                   |
[2024-02-20 23:38:10,698] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,713] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/content_rating_uk.yml                                         |
[2024-02-20 23:38:10,713] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,713] [util.py:426]               [INFO]     | Reading pmm: templates                                                                             |
[2024-02-20 23:38:10,713] [util.py:464]               [INFO]     | Template Variables: {'default': {'key': '<<overlay_name>>'}, 'horizontal_offset': 15, 'horizontal_align': 'left', 'vertical_offset': 270, 'vertical_align': 'bottom', 'back_width': 305, 'back_height': 105, 'back_radius': 30, 'back_color': '#00000099', 'conditionals': {'inside_color': {'default': 'c', 'conditions': [{'color': False, 'value': ''}]}, 'pmm': {'conditions': [{'file.exists': False, 'file_<<key>>.exists': False, 'url.exists': False, 'url_<<key>>.exists': False, 'git.exists': False, 'git_<<key>>.exists': False, 'repo.exists': False, 'repo_<<key>>.exists': False, 'value': 'cr/uk<<overlay_name>><<inside_color>>'}]}}} |
[2024-02-20 23:38:10,727] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/templates.yml                                                 |
[2024-02-20 23:38:10,727] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:10,727] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,727] [meta.py:2193]              [INFO]     | Loading Overlay 1 PMM Default: languages                                                           |
[2024-02-20 23:38:10,728] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,926] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/languages.yml                                                 |
[2024-02-20 23:38:10,926] [meta.py:2264]              [DEBUG]    | Condition 1 Failed: use_subtitles is not a variable provided or a default variable                 |
[2024-02-20 23:38:10,926] [meta.py:2264]              [DEBUG]    | Condition 1 Failed: builder_level is not a variable provided or a default variable                 |
[2024-02-20 23:38:10,927] [meta.py:2264]              [DEBUG]    | Condition 2 Failed: overlay_level is not a variable provided or a default variable                 |
[2024-02-20 23:38:10,927] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,927] [util.py:426]               [INFO]     | Reading pmm: templates                                                                             |
[2024-02-20 23:38:10,927] [util.py:464]               [INFO]     | Template Variables: {'conditionals': {'final_align': {'default': 'left', 'conditions': [{'flag_alignment': 'right', 'value': 'right'}, {'use_subtitles': True, 'value': 'right'}]}, 'final_text': {'default': '<<text>>', 'conditions': [{'use_lowercase': True, 'value': '<<key>>'}]}, 'final_style': {'default': 'round', 'conditions': [{'style': ['square', 'half'], 'value': 'square'}]}, 'back_radius': {'conditions': [{'style': ['round', 'half'], 'value': 26}, {'style': 'square', 'value': None}]}, 'pmm_<<key>>': {'conditions': [{'file.exists': False, 'url.exists': False, 'git.exists': False, 'repo.exists': False, 'value': 'flag/<<final_style>>/<<country_<<key>>>>'}]}}, 'default': {'style': 'round', 'country': '<<key>>', 'country_<<key>>': '<<country>>', 'offset': 10, 'width': 190}, 'queue': 'flags', 'addon_position': '<<final_align>>', 'addon_offset': '<<offset>>', 'back_color': '#00000099', 'back_width': '<<width>>', 'back_align': '<<final_align>>', 'font': 'fonts/Inter-Bold.ttf', 'font_size': 50, 'final_name': 'text(<<final_text>>)'} |
[2024-02-20 23:38:10,940] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/templates.yml                                                 |
[2024-02-20 23:38:10,940] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:10,940] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:10,940] [meta.py:2193]              [INFO]     | Loading Overlay 2 PMM Default: ratings                                                             |
[2024-02-20 23:38:10,941] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,016] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/ratings.yml                                                   |
[2024-02-20 23:38:11,016] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:11,016] [config.py:1179]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,017] [config.py:778]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,017] [config.py:778]             [INFO]     |                                       TV Shows Configuration                                       |
[2024-02-20 23:38:11,017] [config.py:778]             [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,017] [config.py:779]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,017] [config.py:780]             [INFO]     | Connecting to TV Shows Library...                                                                  |
[2024-02-20 23:38:11,017] [config.py:821]             [INFO]     |===================================== Operation Configuration ======================================|
[2024-02-20 23:38:11,017] [config.py:825]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,018] [config.py:826]             [INFO]     | Operation 1/1                                                                                      |
[2024-02-20 23:38:11,018] [config.py:828]             [INFO]     |     mass_content_rating_update: mdb                                                                |
[2024-02-20 23:38:11,018] [config.py:828]             [INFO]     |     mass_user_rating_update: imdb                                                                  |
[2024-02-20 23:38:11,018] [config.py:930]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,018] [config.py:931]             [INFO]     | Reading in Collection Files                                                                        |
[2024-02-20 23:38:11,018] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,018] [util.py:426]               [INFO]     | Reading file: config/shows.yml                                                                     |
[2024-02-20 23:38:11,018] [config.py:977]             [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,019] [config.py:978]             [INFO]     | Reading in Overlay Files                                                                           |
[2024-02-20 23:38:11,019] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,019] [util.py:426]               [INFO]     | Reading pmm: content_rating_uk                                                                     |
[2024-02-20 23:38:11,019] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,019] [util.py:426]               [INFO]     | Reading pmm: languages                                                                             |
[2024-02-20 23:38:11,019] [util.py:464]               [INFO]     | Template Variables: {'font_size': 100, 'languages': ['ar', 'cs', 'da', 'de', 'en', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'ru', 'sk', 'tr', 'zh']} |
[2024-02-20 23:38:11,019] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,019] [util.py:426]               [INFO]     | Reading pmm: ratings                                                                               |
[2024-02-20 23:38:11,019] [util.py:464]               [INFO]     | Template Variables: {'builder_level': 'episode', 'rating1': 'user', 'rating1_image': 'imdb'}       |
[2024-02-20 23:38:11,019] [config.py:1068]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,020] [config.py:1069]            [INFO]     |======================================== Plex Configuration ========================================|
[2024-02-20 23:38:11,036] [plex.py:446]               [INFO]     | Connected to server Kaby-Lake version 1.32.8.7639-fb6452ebf                                        |
[2024-02-20 23:38:11,036] [plex.py:447]               [INFO]     | Running on Linux version 6.1.75 (#1-NixOS SMP PREEMPT_DYNAMIC Thu Jan 25 23:27:52 UTC 2024)        |
[2024-02-20 23:38:11,043] [plex.py:451]               [INFO]     | Plex DB cache setting: 40 MB                                                                       |
[2024-02-20 23:38:11,043] [plex.py:468]               [INFO]     | PlexPass: False on Public update channel.                                                          |
[2024-02-20 23:38:11,043] [plex.py:470]               [INFO]     | Scheduled maintenance running between 2:00 and 5:00                                                |
[2024-02-20 23:38:11,053] [plex.py:518]               [INFO]     | Connected to library TV Shows                                                                      |
[2024-02-20 23:38:11,053] [plex.py:519]               [INFO]     | Type: Show                                                                                         |
[2024-02-20 23:38:11,053] [plex.py:520]               [INFO]     | Agent: tv.plex.agents.series                                                                       |
[2024-02-20 23:38:11,054] [plex.py:521]               [INFO]     | Scanner: Plex TV Series                                                                            |
[2024-02-20 23:38:11,054] [plex.py:522]               [INFO]     | Ratings Source: N/A                                                                                |
[2024-02-20 23:38:11,054] [config.py:1084]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,054] [config.py:1085]            [INFO]     | TV Shows Library Connection Successful                                                             |
[2024-02-20 23:38:11,054] [config.py:1086]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,054] [config.py:1087]            [INFO]     |========================================== Scanning Files ==========================================|
[2024-02-20 23:38:11,055] [meta.py:757]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,055] [meta.py:758]               [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,055] [meta.py:758]               [INFO]     |                           Loading Collection File File: config/shows.yml                           |
[2024-02-20 23:38:11,055] [meta.py:758]               [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,055] [meta.py:759]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,057] [meta.py:158]               [DEBUG]    | File Loaded From: /config/shows.yml                                                                |
[2024-02-20 23:38:11,057] [meta.py:1335]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,057] [meta.py:1336]              [INFO]     | Collection File Loaded Successfully                                                                |
[2024-02-20 23:38:11,057] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,057] [meta.py:2193]              [INFO]     | Loading Overlay 0 PMM Default: content_rating_uk                                                   |
[2024-02-20 23:38:11,057] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,071] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/content_rating_uk.yml                                         |
[2024-02-20 23:38:11,071] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,071] [util.py:426]               [INFO]     | Reading pmm: templates                                                                             |
[2024-02-20 23:38:11,071] [util.py:464]               [INFO]     | Template Variables: {'default': {'key': '<<overlay_name>>'}, 'horizontal_offset': 15, 'horizontal_align': 'left', 'vertical_offset': 270, 'vertical_align': 'bottom', 'back_width': 305, 'back_height': 105, 'back_radius': 30, 'back_color': '#00000099', 'conditionals': {'inside_color': {'default': 'c', 'conditions': [{'color': False, 'value': ''}]}, 'pmm': {'conditions': [{'file.exists': False, 'file_<<key>>.exists': False, 'url.exists': False, 'url_<<key>>.exists': False, 'git.exists': False, 'git_<<key>>.exists': False, 'repo.exists': False, 'repo_<<key>>.exists': False, 'value': 'cr/uk<<overlay_name>><<inside_color>>'}]}}} |
[2024-02-20 23:38:11,083] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/templates.yml                                                 |
[2024-02-20 23:38:11,084] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:11,084] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,084] [meta.py:2193]              [INFO]     | Loading Overlay 1 PMM Default: languages                                                           |
[2024-02-20 23:38:11,084] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,275] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/languages.yml                                                 |
[2024-02-20 23:38:11,276] [meta.py:2264]              [DEBUG]    | Condition 1 Failed: use_subtitles is not a variable provided or a default variable                 |
[2024-02-20 23:38:11,276] [meta.py:2264]              [DEBUG]    | Condition 1 Failed: builder_level is not a variable provided or a default variable                 |
[2024-02-20 23:38:11,276] [meta.py:2264]              [DEBUG]    | Condition 2 Failed: overlay_level is not a variable provided or a default variable                 |
[2024-02-20 23:38:11,276] [util.py:421]               [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,276] [util.py:426]               [INFO]     | Reading pmm: templates                                                                             |
[2024-02-20 23:38:11,276] [util.py:464]               [INFO]     | Template Variables: {'conditionals': {'final_align': {'default': 'left', 'conditions': [{'flag_alignment': 'right', 'value': 'right'}, {'use_subtitles': True, 'value': 'right'}]}, 'final_text': {'default': '<<text>>', 'conditions': [{'use_lowercase': True, 'value': '<<key>>'}]}, 'final_style': {'default': 'round', 'conditions': [{'style': ['square', 'half'], 'value': 'square'}]}, 'back_radius': {'conditions': [{'style': ['round', 'half'], 'value': 26}, {'style': 'square', 'value': None}]}, 'pmm_<<key>>': {'conditions': [{'file.exists': False, 'url.exists': False, 'git.exists': False, 'repo.exists': False, 'value': 'flag/<<final_style>>/<<country_<<key>>>>'}]}}, 'default': {'style': 'round', 'country': '<<key>>', 'country_<<key>>': '<<country>>', 'offset': 10, 'width': 190}, 'queue': 'flags', 'addon_position': '<<final_align>>', 'addon_offset': '<<offset>>', 'back_color': '#00000099', 'back_width': '<<width>>', 'back_align': '<<final_align>>', 'font': 'fonts/Inter-Bold.ttf', 'font_size': 50, 'final_name': 'text(<<final_text>>)'} |
[2024-02-20 23:38:11,289] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/templates.yml                                                 |
[2024-02-20 23:38:11,289] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:11,290] [meta.py:2192]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,290] [meta.py:2193]              [INFO]     | Loading Overlay 2 PMM Default: ratings                                                             |
[2024-02-20 23:38:11,290] [meta.py:2194]              [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,373] [meta.py:158]               [DEBUG]    | File Loaded From: /defaults/overlays/ratings.yml                                                   |
[2024-02-20 23:38:11,373] [meta.py:2318]              [INFO]     | Overlay File Loaded Successfully                                                                   |
[2024-02-20 23:38:11,373] [config.py:1179]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,373] [config.py:1182]            [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,373] [config.py:1187]            [INFO]     | 2 Plex Library Connections Successful                                                              |
[2024-02-20 23:38:11,374] [config.py:1191]            [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,374] [plex_meta_manager.py:549]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:550]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,374] [plex_meta_manager.py:550]  [INFO]     |                                           Movies Library                                           |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:550]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:11,374] [plex_meta_manager.py:552]  [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:553]  [DEBUG]    | Library Name: Movies                                                                               |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:554]  [DEBUG]    | Run Order: operations, metadata, collections, overlays                                             |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:555]  [DEBUG]    | Folder Name: Movies                                                                                |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:558]  [DEBUG]    | Asset Folders: True                                                                                |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:559]  [DEBUG]    | Create Asset Folders: False                                                                        |
[2024-02-20 23:38:11,374] [plex_meta_manager.py:560]  [DEBUG]    | Download URL Assets: False                                                                         |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:561]  [DEBUG]    | Sync Mode: append                                                                                  |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:562]  [DEBUG]    | Minimum Items: 1                                                                                   |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:563]  [DEBUG]    | Delete Below Minimum: False                                                                        |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:564]  [DEBUG]    | Delete Not Scheduled: False                                                                        |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:565]  [DEBUG]    | Default Collection Order: None                                                                     |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:566]  [DEBUG]    | Missing Only Released: False                                                                       |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:567]  [DEBUG]    | Only Filter Missing: False                                                                         |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:568]  [DEBUG]    | Show Unmanaged: True                                                                               |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:569]  [DEBUG]    | Show Filtered: False                                                                               |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:570]  [DEBUG]    | Show Missing: True                                                                                 |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:571]  [DEBUG]    | Show Missing Assets: True                                                                          |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:572]  [DEBUG]    | Save Report: False                                                                                 |
[2024-02-20 23:38:11,375] [plex_meta_manager.py:573]  [DEBUG]    | Report Path: //config/Movies_report.yml                                                            |
[2024-02-20 23:38:11,376] [plex_meta_manager.py:574]  [DEBUG]    | Clean Bundles: False                                                                               |
[2024-02-20 23:38:11,376] [plex_meta_manager.py:575]  [DEBUG]    | Empty Trash: False                                                                                 |
[2024-02-20 23:38:11,376] [plex_meta_manager.py:576]  [DEBUG]    | Optimize: False                                                                                    |
[2024-02-20 23:38:11,376] [plex_meta_manager.py:577]  [DEBUG]    | Timeout: 60                                                                                        |
[2024-02-20 23:38:11,376] [library.py:355]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,377] [library.py:356]            [INFO]     |=================================== Caching Movies Library Items ===================================|
[2024-02-20 23:38:11,377] [library.py:357]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,377] [plex.py:585]               [INFO]     | Loading All Movies from Library: Movies                                                            |
[2024-02-20 23:38:11,627] [plex.py:605]               [INFO]     | Loaded 61 Movies                                                                                   |
[2024-02-20 23:38:11,627] [plex_meta_manager.py:623]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,627] [plex_meta_manager.py:624]  [INFO]     |====================================== Mapping Movies Library ======================================|
[2024-02-20 23:38:11,627] [plex_meta_manager.py:625]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:11,628] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/60e81f76766ab2002cc4952a          | TMDb ID: 848981  | IMDb ID: tt15010478 | 9/11: Inside the President's War Room |
[2024-02-20 23:38:11,649] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/62d28ca89b19c3824a4fac7d          | TMDb ID: 994108  | IMDb ID: tt21192142 | All of Us Strangers |
[2024-02-20 23:38:11,665] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5e918407ce88f10042aa58ed          | TMDb ID: 682587  | IMDb ID: tt11790780 | The Alpinist |
[2024-02-20 23:38:11,674] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/636ff7029cfc5f11985d7e6c          | TMDb ID: 1056360 | IMDb ID: tt23561236 | American Fiction |
[2024-02-20 23:38:11,695] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/61e52548f569e6b1cf81e1b1          | TMDb ID: 915935  | IMDb ID: tt17009710 | Anatomy of a Fall |
[2024-02-20 23:38:11,711] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/613c7a4bc87f250197d890e4          | TMDb ID: 714888  | IMDb ID: tt15301048 | Argentina, 1985 |
[2024-02-20 23:38:11,721] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d77704b35102a0020ed64ed          | TMDb ID: 522924  | IMDb ID: tt1478839  | The Art of Racing in the Rain |
[2024-02-20 23:38:11,742] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5e91841ee72911003f7e29e4          | TMDb ID: 684700  | IMDb ID: tt11905462 | Athlete A |
[2024-02-20 23:38:11,757] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776d25fb0d55001f598b37          | TMDb ID: 455714  | IMDb ID: tt6788942  | Bad Genius |
[2024-02-20 23:38:11,767] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/63b6e0ebc538b40147a6a9aa          | TMDb ID: 1070032 | IMDb ID: tt25470468 | Beyond Utopia |
[2024-02-20 23:38:11,793] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776b1796b655001fe03ef8          | TMDb ID: 289510  | IMDb ID: tt3461252  | The Blue Elephant |
[2024-02-20 23:38:11,814] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7770dead5437001f82cbb9          | TMDb ID: 599672  | IMDb ID: tt10515086 | The Blue Elephant 2 |
[2024-02-20 23:38:11,825] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5e162562b6f1fe003e442fab          | TMDb ID: 653723  | IMDb ID: tt11095742 | Boys State |
[2024-02-20 23:38:11,834] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f409df6cae2c60042028749          | TMDb ID: 801965  | IMDb ID: tt12311620 | Breaking |
[2024-02-20 23:38:11,843] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776a53ad5437001f77a12b          | TMDb ID: 220289  | IMDb ID: tt2866360  | Coherence |
[2024-02-20 23:38:11,853] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d77704996b655001fe92893          | TMDb ID: 522241  | IMDb ID: tt8368512  | The Courier |
[2024-02-20 23:38:11,862] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c5a47dd6e001f6e9ff4          | TMDb ID: 407448  | IMDb ID: tt5390504  | Detroit |
[2024-02-20 23:38:11,871] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776f15f617c90020198be4          | TMDb ID: 493529  | IMDb ID: tt2906216  | Dungeons & Dragons: Honor Among Thieves |
[2024-02-20 23:38:11,881] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7768c22d18a4001ff11a04          | TMDb ID: 80274   | IMDb ID: tt1731141  | Ender's Game |
[2024-02-20 23:38:11,890] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/61ed49df9f366ee1afdb1557          | TMDb ID: 926393  | IMDb ID: tt17024450 | The Equalizer 3 |
[2024-02-20 23:38:11,899] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5eb8f26e2b82ed003e4e83e9          | TMDb ID: 697843  | IMDb ID: tt12263384 | Extraction II |
[2024-02-20 23:38:11,908] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d77704996b655001fe9290d          | TMDb ID: 522402  | IMDb ID: tt3420504  | Finch |
[2024-02-20 23:38:11,921] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d77704aad5437001f81e604          | TMDb ID: 522627  | IMDb ID: tt8367814  | The Gentlemen |
[2024-02-20 23:38:11,944] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c94fb0d55001f58bede          | TMDb ID: 429200  | IMDb ID: tt4846232  | Good Time |
[2024-02-20 23:38:11,957] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d777084fb0d55001f5f2326          | TMDb ID: 980489  | IMDb ID: tt4495098  | Gran Turismo |
[2024-02-20 23:38:11,970] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c65fb0d55001f586b80          | TMDb ID: 411054  | IMDb ID: tt5889462  | Guppy |
[2024-02-20 23:38:11,982] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7770937a53e9001e7a6381          | TMDb ID: 556574  | IMDb ID: tt8503618  | Hamilton |
[2024-02-20 23:38:11,996] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d9f3c4968e4c8001fb667ac          | TMDb ID: 269494  | IMDb ID: tt3697626  | A Hard Day |
[2024-02-20 23:38:12,008] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/619509bad7bb230db4bc11ee          | TMDb ID: 899082  | IMDb ID: tt16116174 | Harry Potter 20th Anniversary: Return to Hogwarts |
[2024-02-20 23:38:12,021] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7770829ab5440021535c57          | TMDb ID: 470044  | IMDb ID: tt5580266  | The Hate U Give |
[2024-02-20 23:38:12,033] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/60cefe587025b1002c33bbf4          | TMDb ID: 840430  | IMDb ID: tt14849194 | The Holdovers |
[2024-02-20 23:38:12,045] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c7251dd69001fe3b5a2          | TMDb ID: 416144  | IMDb ID: tt5461944  | Hotel Mumbai |
[2024-02-20 23:38:12,057] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5ec75f7705b5d5004391f170          | TMDb ID: 705861  | IMDb ID: tt8009428  | Hustle |
[2024-02-20 23:38:12,070] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d9f3c34b0262f001f6f1f6a          | TMDb ID: 260513  | IMDb ID: tt3606756  | Incredibles 2 |
[2024-02-20 23:38:12,082] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/63eaa36a9406bd723a2fa32f          | TMDb ID: 1063197 | IMDb ID: tt26693652 | Invalid |
[2024-02-20 23:38:12,094] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/62b196cf6cfb8fed62d59c79          | TMDb ID: 850165  | IMDb ID: tt21064584 | The Iron Claw |
[2024-02-20 23:38:12,107] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/613c7a8322f6fb2ff34e21e5          | TMDb ID: 872906  | IMDb ID: tt15354916 | Jawan |
[2024-02-20 23:38:12,119] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776d8e594b2b001e70c068          | TMDb ID: 463272  | IMDb ID: tt6921996  | Johnny English Strikes Again |
[2024-02-20 23:38:12,131] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d777049ad5437001f81e3ed          | TMDb ID: 522212  | IMDb ID: tt4916630  | Just Mercy |
[2024-02-20 23:38:12,144] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776efd96b655001fe7ad9e          | TMDb ID: 503919  | IMDb ID: tt7984734  | The Lighthouse |
[2024-02-20 23:38:12,156] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c359ab54400215140bc          | TMDb ID: 392982  | IMDb ID: tt5301662  | Marshall |
[2024-02-20 23:38:12,168] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/6310ea418c818cc0b48ee7a6          | TMDb ID: 1002185 | IMDb ID: tt21940010 | A Million Miles Away |
[2024-02-20 23:38:12,180] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c0951dd69001fe36edb          | TMDb ID: 376290  | IMDb ID: tt4540710  | Miss Sloane |
[2024-02-20 23:38:12,192] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f4093befea1a1003fae771e          | TMDb ID: 768362  | IMDb ID: tt10855768 | Missing |
[2024-02-20 23:38:12,205] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776af2ad5437001f78dad6          | TMDb ID: 277834  | IMDb ID: tt3521164  | Moana |
[2024-02-20 23:38:12,217] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/61e5254fdf01d30f638dc0d4          | TMDb ID: 926676  | IMDb ID: tt17041964 | Navalny |
[2024-02-20 23:38:12,232] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7768c796b655001fdc178a          | TMDb ID: 340666  | IMDb ID: tt4550098  | Nocturnal Animals |
[2024-02-20 23:38:12,245] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f40c3fccae2c600420a4621          | TMDb ID: 895549  | IMDb ID: tt5302918  | Nyad |
[2024-02-20 23:38:12,257] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776c94fb0d55001f58bee1          | TMDb ID: 429203  | IMDb ID: tt2837574  | The Old Man & the Gun |
[2024-02-20 23:38:12,269] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f646bc7993361004180bced          | TMDb ID: 760774  | IMDb ID: tt13097932 | One Life |
[2024-02-20 23:38:12,280] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f9d8a57d4c06e002dd51594          | TMDb ID: 759054  | IMDb ID: tt11242162 | Rise |
[2024-02-20 23:38:12,292] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5e162347bea6ac00412786b8          | TMDb ID: 619803  | IMDb ID: tt15838850 | The Roundup |
[2024-02-20 23:38:12,304] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7770e2ad5437001f82d167          | TMDb ID: 602063  | IMDb ID: tt11809034 | Rurouni Kenshin: The Final |
[2024-02-20 23:38:12,319] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/613c7a8b22f6fb2ff34e232f          | TMDb ID: 870518  | IMDb ID: tt15364972 | Sanctuary |
[2024-02-20 23:38:12,331] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5fb93a32e19a1d002dda206b          | TMDb ID: 766475  | IMDb ID: tt13640696 | See How They Run |
[2024-02-20 23:38:12,342] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f40d968bf3e560040d7f097          | TMDb ID: 821881  | IMDb ID: tt8745676  | The Swimmers |
[2024-02-20 23:38:12,354] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d7770c2594b2b001e75121a          | TMDb ID: 577922  | IMDb ID: tt6723592  | Tenet |
[2024-02-20 23:38:12,371] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d776831e6d55c002040c515          | TMDb ID: 8703    | IMDb ID: tt0070832  | Three Wishes for Cinderella |
[2024-02-20 23:38:12,383] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5f40c19f03883a0040ce0c8f          | TMDb ID: 854239  | IMDb ID: tt4960748  | Till |
[2024-02-20 23:38:12,395] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/61ebc3b39f366ee1afc72024          | TMDb ID: 928344  | IMDb ID: tt17076046 | Weird: The Al Yankovic Story |
[2024-02-20 23:38:12,407] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://movie/5d9f3d08d5fd3f001ee1f9a1          | TMDb ID: 408159  | IMDb ID: tt4714568  | The Young Offenders |
[2024-02-20 23:38:12,418] [library.py:388]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:12,418] [library.py:389]            [INFO]     | Processed 61 Movies                                                                                |
[2024-02-20 23:38:12,418] [operations.py:30]          [INFO]     |                                                                                                    |
[2024-02-20 23:38:12,421] [operations.py:31]          [INFO]     |====================================================================================================|
[2024-02-20 23:38:12,421] [operations.py:31]          [INFO]     |                                     Movies Library Operations                                      |
[2024-02-20 23:38:12,421] [operations.py:31]          [INFO]     |====================================================================================================|
[2024-02-20 23:38:12,421] [operations.py:32]          [INFO]     |                                                                                                    |
[2024-02-20 23:38:12,421] [operations.py:33]          [DEBUG]    | Assets For All: None                                                                               |
[2024-02-20 23:38:12,421] [operations.py:34]          [DEBUG]    | Delete Collections: None                                                                           |
[2024-02-20 23:38:12,421] [operations.py:35]          [DEBUG]    | Show Unmanaged Collections: True                                                                   |
[2024-02-20 23:38:12,421] [operations.py:36]          [DEBUG]    | Show Unconfigured Collections: True                                                                |
[2024-02-20 23:38:12,421] [operations.py:37]          [DEBUG]    | Mass Genre Update: None                                                                            |
[2024-02-20 23:38:12,421] [operations.py:38]          [DEBUG]    | Mass Audience Rating Update: None                                                                  |
[2024-02-20 23:38:12,421] [operations.py:39]          [DEBUG]    | Mass Critic Rating Update: None                                                                    |
[2024-02-20 23:38:12,422] [operations.py:40]          [DEBUG]    | Mass User Rating Update: imdb                                                                      |
[2024-02-20 23:38:12,422] [operations.py:41]          [DEBUG]    | Mass Episode Audience Rating Update: None                                                          |
[2024-02-20 23:38:12,422] [operations.py:42]          [DEBUG]    | Mass Episode Critic Rating Update: None                                                            |
[2024-02-20 23:38:12,422] [operations.py:43]          [DEBUG]    | Mass Episode User Rating Update: None                                                              |
[2024-02-20 23:38:12,422] [operations.py:44]          [DEBUG]    | Mass Content Rating Update: mdb                                                                    |
[2024-02-20 23:38:12,422] [operations.py:45]          [DEBUG]    | Mass Original Title Update: None                                                                   |
[2024-02-20 23:38:12,422] [operations.py:46]          [DEBUG]    | Mass Originally Available Update: None                                                             |
[2024-02-20 23:38:12,422] [operations.py:47]          [DEBUG]    | Mass IMDb Parental Labels: None                                                                    |
[2024-02-20 23:38:12,422] [operations.py:48]          [DEBUG]    | Mass Poster Update: None                                                                           |
[2024-02-20 23:38:12,422] [operations.py:49]          [DEBUG]    | Mass Background Update: None                                                                       |
[2024-02-20 23:38:12,422] [operations.py:50]          [DEBUG]    | Mass Collection Mode Update: None                                                                  |
[2024-02-20 23:38:12,422] [operations.py:51]          [DEBUG]    | Split Duplicates: None                                                                             |
[2024-02-20 23:38:12,422] [operations.py:52]          [DEBUG]    | Radarr Add All Existing: None                                                                      |
[2024-02-20 23:38:12,423] [operations.py:53]          [DEBUG]    | Radarr Remove by Tag: None                                                                         |
[2024-02-20 23:38:12,423] [operations.py:54]          [DEBUG]    | Sonarr Add All Existing: None                                                                      |
[2024-02-20 23:38:12,423] [operations.py:55]          [DEBUG]    | Sonarr Remove by Tag: None                                                                         |
[2024-02-20 23:38:12,423] [operations.py:56]          [DEBUG]    | Update Blank Track Titles: None                                                                    |
[2024-02-20 23:38:12,423] [operations.py:57]          [DEBUG]    | Update Remove Title Parentheses: None                                                              |
[2024-02-20 23:38:12,423] [operations.py:58]          [DEBUG]    | Genre Mapper: None                                                                                 |
[2024-02-20 23:38:12,423] [operations.py:59]          [DEBUG]    | Content Rating Mapper: None                                                                        |
[2024-02-20 23:38:12,423] [operations.py:60]          [DEBUG]    | Metadata Backup: None                                                                              |
[2024-02-20 23:38:12,423] [operations.py:61]          [DEBUG]    | Item Operation: True                                                                               |
[2024-02-20 23:38:12,423] [operations.py:62]          [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:12,423] [plex.py:585]               [INFO]     | Loading All Movies from Library: Movies                                                            |
[2024-02-20 23:38:12,595] [plex.py:605]               [INFO]     | Loaded 61 Movies                                                                                   |
[2024-02-20 23:38:12,596] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:12,596] [operations.py:115]         [INFO]     | Processing: 1/61 9/11: Inside the President's War Room                                             |
[2024-02-20 23:38:14,712] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.5                                                                 |
[2024-02-20 23:38:14,712] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:14,712] [operations.py:115]         [INFO]     | Processing: 2/61 All of Us Strangers                                                               |
[2024-02-20 23:38:14,994] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.9                                                                 |
[2024-02-20 23:38:14,995] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:14,995] [operations.py:115]         [INFO]     | Processing: 3/61 The Alpinist                                                                      |
[2024-02-20 23:38:15,172] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.9                                                                 |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:15,172] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:15,173] [operations.py:115]         [INFO]     | Processing: 4/61 American Fiction                                                                  |
[2024-02-20 23:38:15,326] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.6                                                                 |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:15,326] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:15,326] [operations.py:115]         [INFO]     | Processing: 5/61 Anatomy of a Fall                                                                 |
[2024-02-20 23:38:15,490] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:15,491] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:15,491] [operations.py:115]         [INFO]     | Processing: 6/61 Argentina, 1985                                                                   |
[2024-02-20 23:38:15,694] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:15,694] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:15,694] [operations.py:115]         [INFO]     | Processing: 7/61 The Art of Racing in the Rain                                                     |
[2024-02-20 23:38:15,868] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:15,868] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:15,869] [operations.py:115]         [INFO]     | Processing: 8/61 Athlete A                                                                         |
[2024-02-20 23:38:16,027] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:16,027] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,027] [operations.py:115]         [INFO]     | Processing: 9/61 Bad Genius                                                                        |
[2024-02-20 23:38:16,180] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:16,180] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,180] [operations.py:115]         [INFO]     | Processing: 10/61 Beyond Utopia                                                                    |
[2024-02-20 23:38:16,327] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 8.0                                                                 |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:16,327] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,327] [operations.py:115]         [INFO]     | Processing: 11/61 The Blue Elephant                                                                |
[2024-02-20 23:38:16,469] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | NR                                                               |
[2024-02-20 23:38:16,469] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,469] [operations.py:115]         [INFO]     | Processing: 12/61 The Blue Elephant 2                                                              |
[2024-02-20 23:38:16,622] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | NR                                                               |
[2024-02-20 23:38:16,623] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,623] [operations.py:115]         [INFO]     | Processing: 13/61 Boys State                                                                       |
[2024-02-20 23:38:16,774] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.6                                                                 |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:16,775] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,775] [operations.py:115]         [INFO]     | Processing: 14/61 Breaking                                                                         |
[2024-02-20 23:38:16,930] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 6.2                                                                 |
[2024-02-20 23:38:16,930] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:16,930] [operations.py:115]         [INFO]     | Processing: 15/61 Coherence                                                                        |
[2024-02-20 23:38:17,184] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:17,185] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,185] [operations.py:115]         [INFO]     | Processing: 16/61 The Courier                                                                      |
[2024-02-20 23:38:17,330] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:17,330] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,330] [operations.py:115]         [INFO]     | Processing: 17/61 Detroit                                                                          |
[2024-02-20 23:38:17,478] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:17,478] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,478] [operations.py:115]         [INFO]     | Processing: 18/61 Dungeons & Dragons: Honor Among Thieves                                          |
[2024-02-20 23:38:17,673] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:17,673] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,673] [operations.py:115]         [INFO]     | Processing: 19/61 Ender's Game                                                                     |
[2024-02-20 23:38:17,830] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:17,830] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,830] [operations.py:115]         [INFO]     | Processing: 20/61 The Equalizer 3                                                                  |
[2024-02-20 23:38:17,985] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:17,985] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:17,985] [operations.py:115]         [INFO]     | Processing: 21/61 Extraction II                                                                    |
[2024-02-20 23:38:18,173] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:18,173] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,173] [operations.py:115]         [INFO]     | Processing: 22/61 Finch                                                                            |
[2024-02-20 23:38:18,325] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:18,325] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,325] [operations.py:115]         [INFO]     | Processing: 23/61 The Gentlemen                                                                    |
[2024-02-20 23:38:18,502] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:18,502] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,502] [operations.py:115]         [INFO]     | Processing: 24/61 Good Time                                                                        |
[2024-02-20 23:38:18,673] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:18,673] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,673] [operations.py:115]         [INFO]     | Processing: 25/61 Gran Turismo                                                                     |
[2024-02-20 23:38:18,831] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:18,831] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,831] [operations.py:115]         [INFO]     | Processing: 26/61 Guppy                                                                            |
[2024-02-20 23:38:18,975] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 8.1                                                                 |
                                                                 | Update Content Rating (Batched) | NR                                                               |
[2024-02-20 23:38:18,976] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:18,976] [operations.py:115]         [INFO]     | Processing: 27/61 Hamilton                                                                         |
[2024-02-20 23:38:19,161] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:19,161] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:19,161] [operations.py:115]         [INFO]     | Processing: 28/61 A Hard Day                                                                       |
[2024-02-20 23:38:19,305] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:19,306] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:19,306] [operations.py:115]         [INFO]     | Processing: 29/61 Harry Potter 20th Anniversary: Return to Hogwarts                                |
[2024-02-20 23:38:19,582] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:19,582] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:19,583] [operations.py:115]         [INFO]     | Processing: 30/61 The Hate U Give                                                                  |
[2024-02-20 23:38:19,727] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:19,727] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:19,727] [operations.py:115]         [INFO]     | Processing: 31/61 The Holdovers                                                                    |
[2024-02-20 23:38:19,901] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:19,901] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:19,901] [operations.py:115]         [INFO]     | Processing: 32/61 Hotel Mumbai                                                                     |
[2024-02-20 23:38:20,088] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:20,088] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,089] [operations.py:115]         [INFO]     | Processing: 33/61 Hustle                                                                           |
[2024-02-20 23:38:20,253] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:20,253] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,253] [operations.py:115]         [INFO]     | Processing: 34/61 Incredibles 2                                                                    |
[2024-02-20 23:38:20,403] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.5                                                                 |
[2024-02-20 23:38:20,404] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,404] [operations.py:115]         [INFO]     | Processing: 35/61 Invalid                                                                          |
[2024-02-20 23:38:20,548] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:20,548] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,548] [operations.py:115]         [INFO]     | Processing: 36/61 The Iron Claw                                                                    |
[2024-02-20 23:38:20,692] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update User Rating (Batched) | 7.9                                                                 |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:20,693] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,693] [operations.py:115]         [INFO]     | Processing: 37/61 Jawan                                                                            |
[2024-02-20 23:38:20,870] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:20,870] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:20,871] [operations.py:115]         [INFO]     | Processing: 38/61 Johnny English Strikes Again                                                     |
[2024-02-20 23:38:21,021] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:21,021] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,021] [operations.py:115]         [INFO]     | Processing: 39/61 Just Mercy                                                                       |
[2024-02-20 23:38:21,168] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:21,168] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,168] [operations.py:115]         [INFO]     | Processing: 40/61 The Lighthouse                                                                   |
[2024-02-20 23:38:21,320] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:21,320] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,320] [operations.py:115]         [INFO]     | Processing: 41/61 Marshall                                                                         |
[2024-02-20 23:38:21,465] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:21,465] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,465] [operations.py:115]         [INFO]     | Processing: 42/61 A Million Miles Away                                                             |
[2024-02-20 23:38:21,620] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:21,620] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,620] [operations.py:115]         [INFO]     | Processing: 43/61 Miss Sloane                                                                      |
[2024-02-20 23:38:21,795] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | R                                                                |
[2024-02-20 23:38:21,795] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,795] [operations.py:115]         [INFO]     | Processing: 44/61 Missing                                                                          |
[2024-02-20 23:38:21,945] [operations.py:617]         [INFO]     | Item Edits                                                                                         |
                                                                 | Update Content Rating (Batched) | PG-13                                                            |
[2024-02-20 23:38:21,945] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:21,945] [operations.py:115]         [INFO]     | Processing: 45/61 Moana                                                                            |
[2024-02-20 23:38:22,102] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:22,102] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,102] [operations.py:115]         [INFO]     | Processing: 46/61 Navalny                                                                          |
[2024-02-20 23:38:22,246] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:22,246] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,246] [operations.py:115]         [INFO]     | Processing: 47/61 Nocturnal Animals                                                                |
[2024-02-20 23:38:22,341] [plex_meta_manager.py:698]  [DEBUG]    | Traceback (most recent call last):                                                                 |
                                                                 |   File "//plex_meta_manager.py", line 692, in run_libraries                                        |
                                                                 |     library_status[library.name]["Library Operations"] = library.Operations.run_operations()       |
                                                                 |                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^       |
                                                                 |   File "/modules/operations.py", line 249, in run_operations                                       |
                                                                 |     mdb_item = self.config.Mdblist.get_movie(tmdb_id)                                              |
                                                                 |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                              |
                                                                 |   File "/modules/mdblist.py", line 135, in get_movie                                               |
                                                                 |     return self._request(tmdb_id=tmdb_id, is_movie=True)                                           |
                                                                 |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                           |
                                                                 |   File "/modules/mdblist.py", line 123, in _request                                                |
                                                                 |     mdb = MDbObj(response)                                                                         |
                                                                 |           ^^^^^^^^^^^^^^^^                                                                         |
                                                                 |   File "/modules/mdblist.py", line 24, in __init__                                                 |
                                                                 |     self.title = data["title"]                                                                     |
                                                                 |                  ~~~~^^^^^^^^^                                                                     |
                                                                 | KeyError: 'title'                                                                                  |
                                                                 |                                                                                                    |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:699]  [CRITICAL] | 'title'                                                                                            |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:549]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:550]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,343] [plex_meta_manager.py:550]  [INFO]     |                                          TV Shows Library                                          |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:550]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,343] [plex_meta_manager.py:552]  [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:553]  [DEBUG]    | Library Name: TV Shows                                                                             |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:554]  [DEBUG]    | Run Order: operations, metadata, collections, overlays                                             |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:555]  [DEBUG]    | Folder Name: TV Shows                                                                              |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:558]  [DEBUG]    | Asset Folders: True                                                                                |
[2024-02-20 23:38:22,343] [plex_meta_manager.py:559]  [DEBUG]    | Create Asset Folders: False                                                                        |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:560]  [DEBUG]    | Download URL Assets: False                                                                         |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:561]  [DEBUG]    | Sync Mode: append                                                                                  |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:562]  [DEBUG]    | Minimum Items: 1                                                                                   |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:563]  [DEBUG]    | Delete Below Minimum: False                                                                        |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:564]  [DEBUG]    | Delete Not Scheduled: False                                                                        |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:565]  [DEBUG]    | Default Collection Order: None                                                                     |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:566]  [DEBUG]    | Missing Only Released: False                                                                       |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:567]  [DEBUG]    | Only Filter Missing: False                                                                         |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:568]  [DEBUG]    | Show Unmanaged: True                                                                               |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:569]  [DEBUG]    | Show Filtered: False                                                                               |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:570]  [DEBUG]    | Show Missing: True                                                                                 |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:571]  [DEBUG]    | Show Missing Assets: True                                                                          |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:572]  [DEBUG]    | Save Report: False                                                                                 |
[2024-02-20 23:38:22,344] [plex_meta_manager.py:573]  [DEBUG]    | Report Path: //config/TV Shows_report.yml                                                          |
[2024-02-20 23:38:22,345] [plex_meta_manager.py:574]  [DEBUG]    | Clean Bundles: False                                                                               |
[2024-02-20 23:38:22,345] [plex_meta_manager.py:575]  [DEBUG]    | Empty Trash: False                                                                                 |
[2024-02-20 23:38:22,345] [plex_meta_manager.py:576]  [DEBUG]    | Optimize: False                                                                                    |
[2024-02-20 23:38:22,345] [plex_meta_manager.py:577]  [DEBUG]    | Timeout: 60                                                                                        |
[2024-02-20 23:38:22,345] [library.py:355]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,345] [library.py:356]            [INFO]     |================================== Caching TV Shows Library Items ==================================|
[2024-02-20 23:38:22,346] [library.py:357]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,346] [plex.py:585]               [INFO]     | Loading All Shows from Library: TV Shows                                                           |
[2024-02-20 23:38:22,394] [plex.py:605]               [INFO]     | Loaded 7 Shows                                                                                     |
[2024-02-20 23:38:22,394] [plex_meta_manager.py:623]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,394] [plex_meta_manager.py:624]  [INFO]     |===================================== Mapping TV Shows Library =====================================|
[2024-02-20 23:38:22,394] [plex_meta_manager.py:625]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,395] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c086c02391c001f5891cf           | TVDb ID: 257655  | IMDb ID: tt2193021  | Arrow |
[2024-02-20 23:38:22,412] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c08f708fddd001f2a4fa8           | TVDb ID: 360893  | IMDb ID: tt7366338  | Chernobyl |
[2024-02-20 23:38:22,425] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c086c46115600200aa2f2           | TVDb ID: 72023   | IMDb ID: tt0348914  | Deadwood |
[2024-02-20 23:38:22,446] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c086b02391c001f588f11           | TVDb ID: 79481   | IMDb ID: tt0877057  | Death Note |
[2024-02-20 23:38:22,461] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c086ae98e47001eb0ef9d           | TVDb ID: 79689   | IMDb ID: tt0826760  | The Killing |
[2024-02-20 23:38:22,471] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c08534eefaa001f5da8c0           | TVDb ID: 346312  | IMDb ID: tt2768802  | Mickey Mouse |
[2024-02-20 23:38:22,492] [convert.py:336]            [INFO]     |  Cache  |  +  | plex://show/5d9c08d56c3e37001ecda3c4           | TVDb ID: 323325  | IMDb ID: tt6554974  | Za sklom |
[2024-02-20 23:38:22,507] [library.py:388]            [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,507] [library.py:389]            [INFO]     | Processed 7 Shows                                                                                  |
[2024-02-20 23:38:22,507] [operations.py:30]          [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,508] [operations.py:31]          [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,508] [operations.py:31]          [INFO]     |                                    TV Shows Library Operations                                     |
[2024-02-20 23:38:22,508] [operations.py:31]          [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,508] [operations.py:32]          [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,508] [operations.py:33]          [DEBUG]    | Assets For All: None                                                                               |
[2024-02-20 23:38:22,508] [operations.py:34]          [DEBUG]    | Delete Collections: None                                                                           |
[2024-02-20 23:38:22,508] [operations.py:35]          [DEBUG]    | Show Unmanaged Collections: True                                                                   |
[2024-02-20 23:38:22,508] [operations.py:36]          [DEBUG]    | Show Unconfigured Collections: True                                                                |
[2024-02-20 23:38:22,508] [operations.py:37]          [DEBUG]    | Mass Genre Update: None                                                                            |
[2024-02-20 23:38:22,508] [operations.py:38]          [DEBUG]    | Mass Audience Rating Update: None                                                                  |
[2024-02-20 23:38:22,508] [operations.py:39]          [DEBUG]    | Mass Critic Rating Update: None                                                                    |
[2024-02-20 23:38:22,509] [operations.py:40]          [DEBUG]    | Mass User Rating Update: imdb                                                                      |
[2024-02-20 23:38:22,509] [operations.py:41]          [DEBUG]    | Mass Episode Audience Rating Update: None                                                          |
[2024-02-20 23:38:22,509] [operations.py:42]          [DEBUG]    | Mass Episode Critic Rating Update: None                                                            |
[2024-02-20 23:38:22,509] [operations.py:43]          [DEBUG]    | Mass Episode User Rating Update: None                                                              |
[2024-02-20 23:38:22,509] [operations.py:44]          [DEBUG]    | Mass Content Rating Update: mdb                                                                    |
[2024-02-20 23:38:22,509] [operations.py:45]          [DEBUG]    | Mass Original Title Update: None                                                                   |
[2024-02-20 23:38:22,509] [operations.py:46]          [DEBUG]    | Mass Originally Available Update: None                                                             |
[2024-02-20 23:38:22,509] [operations.py:47]          [DEBUG]    | Mass IMDb Parental Labels: None                                                                    |
[2024-02-20 23:38:22,509] [operations.py:48]          [DEBUG]    | Mass Poster Update: None                                                                           |
[2024-02-20 23:38:22,509] [operations.py:49]          [DEBUG]    | Mass Background Update: None                                                                       |
[2024-02-20 23:38:22,509] [operations.py:50]          [DEBUG]    | Mass Collection Mode Update: None                                                                  |
[2024-02-20 23:38:22,510] [operations.py:51]          [DEBUG]    | Split Duplicates: None                                                                             |
[2024-02-20 23:38:22,510] [operations.py:52]          [DEBUG]    | Radarr Add All Existing: None                                                                      |
[2024-02-20 23:38:22,510] [operations.py:53]          [DEBUG]    | Radarr Remove by Tag: None                                                                         |
[2024-02-20 23:38:22,510] [operations.py:54]          [DEBUG]    | Sonarr Add All Existing: None                                                                      |
[2024-02-20 23:38:22,510] [operations.py:55]          [DEBUG]    | Sonarr Remove by Tag: None                                                                         |
[2024-02-20 23:38:22,510] [operations.py:56]          [DEBUG]    | Update Blank Track Titles: None                                                                    |
[2024-02-20 23:38:22,510] [operations.py:57]          [DEBUG]    | Update Remove Title Parentheses: None                                                              |
[2024-02-20 23:38:22,510] [operations.py:58]          [DEBUG]    | Genre Mapper: None                                                                                 |
[2024-02-20 23:38:22,510] [operations.py:59]          [DEBUG]    | Content Rating Mapper: None                                                                        |
[2024-02-20 23:38:22,510] [operations.py:60]          [DEBUG]    | Metadata Backup: None                                                                              |
[2024-02-20 23:38:22,510] [operations.py:61]          [DEBUG]    | Item Operation: True                                                                               |
[2024-02-20 23:38:22,510] [operations.py:62]          [DEBUG]    |                                                                                                    |
[2024-02-20 23:38:22,511] [plex.py:585]               [INFO]     | Loading All Shows from Library: TV Shows                                                           |
[2024-02-20 23:38:22,525] [plex.py:605]               [INFO]     | Loaded 7 Shows                                                                                     |
[2024-02-20 23:38:22,525] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,525] [operations.py:115]         [INFO]     | Processing: 1/7 Arrow                                                                              |
[2024-02-20 23:38:22,689] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:22,689] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,689] [operations.py:115]         [INFO]     | Processing: 2/7 Chernobyl                                                                          |
[2024-02-20 23:38:22,866] [operations.py:619]         [INFO]     | No Item Edits                                                                                      |
[2024-02-20 23:38:22,866] [operations.py:114]         [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,866] [operations.py:115]         [INFO]     | Processing: 3/7 Deadwood                                                                           |
[2024-02-20 23:38:22,966] [plex_meta_manager.py:698]  [DEBUG]    | Traceback (most recent call last):                                                                 |
                                                                 |   File "//plex_meta_manager.py", line 692, in run_libraries                                        |
                                                                 |     library_status[library.name]["Library Operations"] = library.Operations.run_operations()       |
                                                                 |                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^       |
                                                                 |   File "/modules/operations.py", line 241, in run_operations                                       |
                                                                 |     mdb_item = self.config.Mdblist.get_series(tvdb_id)                                             |
                                                                 |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                             |
                                                                 |   File "/modules/mdblist.py", line 132, in get_series                                              |
                                                                 |     return self._request(tvdb_id=tvdb_id, is_movie=False)                                          |
                                                                 |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                          |
                                                                 |   File "/modules/mdblist.py", line 123, in _request                                                |
                                                                 |     mdb = MDbObj(response)                                                                         |
                                                                 |           ^^^^^^^^^^^^^^^^                                                                         |
                                                                 |   File "/modules/mdblist.py", line 24, in __init__                                                 |
                                                                 |     self.title = data["title"]                                                                     |
                                                                 |                  ~~~~^^^^^^^^^                                                                     |
                                                                 | KeyError: 'title'                                                                                  |
                                                                 |                                                                                                    |
[2024-02-20 23:38:22,968] [plex_meta_manager.py:699]  [CRITICAL] | 'title'                                                                                            |
[2024-02-20 23:38:22,968] [plex_meta_manager.py:407]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:22,968] [plex_meta_manager.py:408]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,968] [plex_meta_manager.py:408]  [INFO]     |                                     Kaby-Lake Playlist Report                                      |
[2024-02-20 23:38:22,968] [plex_meta_manager.py:408]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:22,968] [plex_meta_manager.py:409]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,750] [plex_meta_manager.py:415]  [INFO]     | Playlist Title | Users                                                                             |
[2024-02-20 23:38:24,750] [plex_meta_manager.py:416]  [INFO]     |==|=================================================================================================|
[2024-02-20 23:38:24,750] [plex_meta_manager.py:495]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,750] [plex_meta_manager.py:496]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:24,750] [plex_meta_manager.py:496]  [INFO]     |                                              Summary                                               |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:496]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:24,751] [plex_meta_manager.py:498]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:499]  [INFO]     |========================================== Movies Summary ==========================================|
[2024-02-20 23:38:24,751] [plex_meta_manager.py:500]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:501]  [INFO]     | Title                       | Run Time |                                                           |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:502]  [INFO]     | =========================== | ======== |                                                           |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:505]  [INFO]     | Library Loading and Mapping |  0:00:01 |                                                           |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:506]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:485]  [INFO]     |        Title         |   +   |   =   |   -   | Run Time | Status                                   |
[2024-02-20 23:38:24,751] [plex_meta_manager.py:487]  [INFO]     |======================|=======|=======|=======|==========|==========================================|
[2024-02-20 23:38:24,751] [plex_meta_manager.py:498]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:499]  [INFO]     |========================================= TV Shows Summary =========================================|
[2024-02-20 23:38:24,752] [plex_meta_manager.py:500]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:501]  [INFO]     | Title                       | Run Time |                                                           |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:502]  [INFO]     | =========================== | ======== |                                                           |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:505]  [INFO]     | Library Loading and Mapping |  0:00:00 |                                                           |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:506]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:485]  [INFO]     |        Title         |   +   |   =   |   -   | Run Time | Status                                   |
[2024-02-20 23:38:24,752] [plex_meta_manager.py:487]  [INFO]     |======================|=======|=======|=======|==========|==========================================|
[2024-02-20 23:38:24,752] [plex_meta_manager.py:302]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,753] [plex_meta_manager.py:377]  [INFO]     |========================================= Critical Summary =========================================|
[2024-02-20 23:38:24,753] [plex_meta_manager.py:379]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,753] [plex_meta_manager.py:380]  [INFO]     | Count | Message                                                                                    |
[2024-02-20 23:38:24,753] [plex_meta_manager.py:381]  [INFO]     |=======|============================================================================================|
[2024-02-20 23:38:24,754] [plex_meta_manager.py:383]  [INFO]     |     2 | 'title'                                                                                    |
[2024-02-20 23:38:24,754] [plex_meta_manager.py:384]  [INFO]     |                                                                                                    |
[2024-02-20 23:38:24,754] [plex_meta_manager.py:389]  [INFO]     |====================================================================================================|
[2024-02-20 23:38:24,754] [plex_meta_manager.py:389]  [INFO]     |                                            Finished Run                                            |
[2024-02-20 23:38:24,754] [plex_meta_manager.py:389]  [INFO]     |                                          Version: 1.20.0                                           |
[2024-02-20 23:38:24,754] [plex_meta_manager.py:389]  [INFO]     |                          Finished: 23:38:24 2024-02-20 Run Time: 0:00:15                           |
[2024-02-20 23:38:24,754] [plex_meta_manager.py:389]  [INFO]     |====================================================================================================|
dube920 commented 8 months ago

Also getting the same error lately, always seems to fail on random items. Haven't seen it fail on the same one twice yet, at least. It seems once it fails on one item, it skips the entire rest of the associated library and moves on. No changes made to the rest of that library, even though hundreds of items were successful before the error. My full log is too big to attach here, but here's snippets of a couple recent failures:

[2024-02-21 06:35:52,668] [operations.py:114] [INFO] [2024-02-21 06:35:52,668] [operations.py:115] [INFO] Processing: 360/441 Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn't Exist [2024-02-21 06:35:53,372] [plex_meta_manager.py:698] [DEBUG] Traceback (most recent call last): File "//plex_meta_manager.py", line 692, in run_libraries library_status[library.name]["Library Operations"] = library.Operations.run_operations() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/operations.py", line 241, in run_operations mdb_item = self.config.Mdblist.get_series(tvdb_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 132, in get_series return self._request(tvdb_id=tvdb_id, is_movie=False) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 123, in _request mdb = MDbObj(response) ^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 24, in init self.title = data["title"] ~~~~^^^^^^^^^ KeyError: 'title'
[2024-02-21 06:35:53,375] [plex_meta_manager.py:699] [CRITICAL] 'title'
[2024-02-20 06:26:19,401] [operations.py:114] [INFO] [2024-02-20 06:26:19,401] [operations.py:115] [INFO] Processing: 291/440 Ninja Kamui [2024-02-20 06:26:19,592] [operations.py:350] [INFO] No User Rating Found [2024-02-20 06:26:19,592] [operations.py:617] [INFO] Item Edits Update Audience Rating (Batched) 9.0 Update Critic Rating (Batched) 9.1 [2024-02-20 06:26:19,593] [operations.py:114] [INFO] [2024-02-20 06:26:19,593] [operations.py:115] [INFO] Processing: 292/440 No Game No Life [2024-02-20 06:26:21,260] [plex_meta_manager.py:698] [DEBUG] Traceback (most recent call last): File "//plex_meta_manager.py", line 692, in run_libraries library_status[library.name]["Library Operations"] = library.Operations.run_operations() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/operations.py", line 241, in run_operations mdb_item = self.config.Mdblist.get_series(tvdb_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 132, in get_series return self._request(tvdb_id=tvdb_id, is_movie=False) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 123, in _request mdb = MDbObj(response) ^^^^^^^^^^^^^^^^ File "/modules/mdblist.py", line 24, in init self.title = data["title"] ~~~~^^^^^^^^^ KeyError: 'title'
[2024-02-20 06:26:21,264] [plex_meta_manager.py:699] [CRITICAL] 'title'
[2024-02-20 06:26:21,264] [plex_meta_manager.py:549] [INFO]
[2024-02-20 06:26:21,264] [plex_meta_manager.py:550] [INFO] ====================================================================================================
[2024-02-20 06:26:21,264] [plex_meta_manager.py:550] [INFO] Kids - Movies Library
[2024-02-20 06:26:21,264] [plex_meta_manager.py:550] [INFO] ====================================================================================================
YozoraXCII commented 8 months ago

For those with the error, can I ask if you're using the free or premium version of mdblist?

jaytrickett1 commented 8 months ago

I’m using the free version. Sent from my iPhoneOn Feb 21, 2024, at 10:43 AM, YozoraXCII @.***> wrote: For those with the error, can I ask if you're using the free or premium version of mdblist?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you commented.Message ID: @.***>

ostrolucky commented 8 months ago

Also free

dube920 commented 8 months ago

For those with the error, can I ask if you're using the free or premium version of mdblist?

free

YozoraXCII commented 8 months ago

Thanks all - so when using the free version of mdblist, the API is limited to 1 request per second. We introduced a pause between each update to try and cater for this, and my guess is that it isn't quite long enough and you are being rate limited by mdblist.

Leave it with us, we'll do some more digging and hopefully you'll see a fix in the nightly branch soon.

YozoraXCII commented 8 months ago

Little update - I looked back and realized that the fix for this is already in nightly and develop, it will be published with the next release of PMM to the master branch.

You're welcome to switch to the develop branch for now.

ostrolucky commented 8 months ago

I can confirm that with meisnate12/plex-meta-manager:nightly or meisnate12/plex-meta-manager:develop, this error is gone. Out of interest, which commit fixes this?

dube920 commented 8 months ago

Also confirming that develop build fixed this issue for me- running in a docker on Unraid

meisnate12 commented 8 months ago

I can confirm that with meisnate12/plex-meta-manager:nightly or meisnate12/plex-meta-manager:develop, this error is gone. Out of interest, which commit fixes this?

the first three currently in develop/nightly