diff --git a/tmdb3/tmdb_api.py b/tmdb3/tmdb_api.py index a28fda8..8c130b4 100644 --- a/tmdb3/tmdb_api.py +++ b/tmdb3/tmdb_api.py @@ -908,3 +908,14 @@ def _populate_external_ids(self): freebase_mid = Datapoint('freebase_mid', poller=_populate_external_ids) tvdb_id = Datapoint('tvdb_id', poller=_populate_external_ids) tvrage_id = Datapoint('tvrage_id', poller=_populate_external_ids) + + def getSimilar(self): + return self.similar + + @property + def similar(self): + res = SeriesSearchResult(Request( + 'tv/{0}/similar'.format(self.id)), + locale=self._locale) + res._name = 'Similar to {0.name}'.format(self) + return res