feature: IMDB movie/TV extractor #30
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Mort integrates with TMDB for movie data. An IMDB extractor would provide complementary data (user ratings, box office, trivia) and could power mortbux prediction markets on movie scores or box office performance.
Proposed API
URL Patterns
https://www.imdb.com/title/{id}/https://www.imdb.com/find/?q={query}Benefits
.imdbcommand for quick movie lookupsImplemented in PR #49. Added
sites/imdbpackage withGetMovie()(by IMDB ID) andSearch()(by query). Extracts title, year, rating, votes, runtime, genres, director, cast, plot, poster, and box office. Uses JSON-LD parsing for Movie/TVSeries/TVMiniSeries types with DOM fallback. Full mock-based test coverage.