New method for grandparent ratingKey
This commit is contained in:
parent
d4b5dc99a1
commit
faacbc6108
1 changed files with 7 additions and 0 deletions
|
@ -542,6 +542,13 @@ class API(object):
|
||||||
"""
|
"""
|
||||||
return self.item.get('parentRatingKey')
|
return self.item.get('parentRatingKey')
|
||||||
|
|
||||||
|
def grandparent_id(self):
|
||||||
|
"""
|
||||||
|
Returns the ratingKey for the corresponding grandparent, e.g. a TV show
|
||||||
|
for episodes, or None
|
||||||
|
"""
|
||||||
|
return self.item.get('grandparentRatingKey')
|
||||||
|
|
||||||
def episode_data(self):
|
def episode_data(self):
|
||||||
"""
|
"""
|
||||||
Call on a single episode.
|
Call on a single episode.
|
||||||
|
|
Loading…
Reference in a new issue