"""TMDB API client.""" from .client import TMDBClient from .dto import MediaResult, ExternalIds from .exceptions import ( TMDBError, TMDBConfigurationError, TMDBAPIError, TMDBNotFoundError, ) # Global TMDB client instance (singleton) tmdb_client = TMDBClient() __all__ = [ "TMDBClient", "MediaResult", "ExternalIds", "TMDBError", "TMDBConfigurationError", "TMDBAPIError", "TMDBNotFoundError", "tmdb_client", ]