You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
themoviedb.org is a free and open movie database. It's completely user driven by people like you. TMDb is currently used by millions of people every month and with their powerful API, it is also used by many popular media centers like Kodi to retrieve Movie Metadata, Posters and Fanart to enrich the user's experience.
This PR adds version 3.2.0 with keyart artwork support, a whitelist option for "keywords as tags," and fixes empty uniqueID values.
Reviewed: core logic, docs
Strengths
✅ The fix for empty uniqueID values uses a proper null-check pattern (movie.get('imdb_id')) at metadata.themoviedb.org.python/python/lib/tmdbscraper/tmdb.py:169, preventing empty strings from being saved
✅ Keyart artwork feature is implemented consistently for both movies and collections with parallel structure to existing landscape/fanart handling
Observations
Impact
[MAJOR] metadata.themoviedb.org.python/python/scraper_config.py (86-90): KeyError when tags disabled with whitelist enabled
Line 87 deletes the 'tag' key when add_tags is False, then line 90 accesses it when enable_tag_whitelist is True, causing a crash since both conditions can be true simultaneously.
Verdict
🔴 Address before merging -- 1 blocking issue(s) found
Review Details
Files reviewed: 83
Lines changed: +754 -58
Profile: minimal (auto, lines changed: 812)
Author: newcomer (adapted tone)
Findings: 0 critical, 1 major, 0 medium, 0 minor (includes 1 from summary observations)
Review completed: 2026-03-08T15:47:59.081Z
Review scope: Reviewed 50/83 files, prioritized by risk
Full review: 30 files | Abbreviated review: 20 files | Not reviewed: 33 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add-on details:
General
Code location
themoviedb.org is a free and open movie database. It's completely user driven by people like you. TMDb is currently used by millions of people every month and with their powerful API, it is also used by many popular media centers like Kodi to retrieve Movie Metadata, Posters and Fanart to enrich the user's experience.
Description of changes:
v3.2.0 (2026-03-08)
v3.0.0 (2024-04-17)
Checklist: